:root {
  --dl-bg: #000;
  --dl-text: #f5f5f7;
  --dl-sub: rgba(245, 245, 247, .72);
  --dl-line: rgba(255, 255, 255, .12);

  --bg-page: #17171a;

  --dl-card-bg: #111214;
  --dl-card-bd: rgba(255, 255, 255, .08);

  --dl-cardW: 100%;
  --dl-radius: 28px;
  --dl-ease: cubic-bezier(.23, 1, .32, 1);

  --grobal-section-on-padding: 96px;
  --grobal-section-padding: 136px;


  --grobal-content-width: 87.5%;
  --grobal-content-max-width: 420px;

  --grobal-section-on-padding: 96px;
  --grobal-section-padding: 136px;

  --fz-hero: clamp(34px, 6vw, 64px);
  /* 一番大きいヒーロー */
  --fz-section-title: clamp(24px, 3vw, 40px);
  /* セクションタイトル */
  --fz-feature-title: clamp(20px, 2.4vw, 28px);
  /* カードなどの見出し */
  --fz-lead: clamp(18px, 2vw, 22px);
  /* リード文 */
  --fz-body: 16px;
  /* 基本本文 */
  --fz-caption: 13px;

  /* PC stage sizes (match screenshot feel) */
  --dl-winA-w: 300px;
  --dl-winA-h: 220px;
  --dl-winB-w: 600px;
  --dl-winB-h: 330px;
  --dl-winC-w: 300px;
  --dl-winC-h: 220px;

  --dl-side-offset: 120px;
  /* push side windows outward */

  /* overlay panel */
  --dl-panel-w: 340px;
  --dl-panel-pad: 22px;
  --dl-panel-offset-x: -92px;
  --dl-panel-offset-y: -60px;

  --grid-size: 520px;
  /* 3x3 の外枠サイズ */
  --cell-gap: 16px;


  --card-radius: 18px;
  --slide-side-pad: max(0px,
      calc((100vw - min(var(--grobal-content-max-width), var(--grobal-content-width))) / 2));
  /* other (gallery) padding: match .other-slide-header gutter */
  --other-inner-max: var(--grobal-content-max-width);
  --other-side-pad: max(0px,
      calc((100vw - min(var(--other-inner-max), var(--grobal-content-width))) / 2));
  --nav-size: 44px;
  --nav-gap: 10px;
  --nav-bg: rgba(255, 255, 255, .08);
  --nav-bd: rgba(255, 255, 255, .12);

  /* cards */
  --r: 28px;
  --gap: 18px;
  --shadow: 0 40px 120px rgba(0, 0, 0, .55);

  /* mobile spacing system */
  --sp-card-pad: 16px;
  --sp-block-gap: 16px;
  --sp-rail-pad-top: 10px;
  --sp-rail-pad-bottom: 36px;

}

.dl-top-custom-page {
  background: var(--dl-bg);
  color: var(--dl-text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", system-ui, "Hiragino Sans", "Noto Sans JP", sans-serif;
}

.dl-top-custom-page,
.dl-top-custom-page *,
.dl-top-custom-page *::before,
.dl-top-custom-page *::after {
  box-sizing: border-box;
}

.dl-top-custom-page * {
  margin: 0;
  padding: 0;
}

.dl-top-custom-page img,
.dl-top-custom-page video,
.dl-top-custom-page svg,
.dl-top-custom-page canvas {
  display: block;
  max-width: 100%;
}

.dl-top-custom-page ul,
.dl-top-custom-page ol {
  list-style: none;
}

.dl-top-custom-page a {
  text-decoration: none;
}

.dl-top-custom-page input,
.dl-top-custom-page textarea,
.dl-top-custom-page select {
  font: inherit;
  color: inherit;
}

#content.l-content {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#content.l-content>*:not(.dl-top-custom-page) {
  display: none;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  background: var(--dl-bg);
  color: var(--dl-text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", system-ui, "Hiragino Sans", "Noto Sans JP", sans-serif;
}



/* ===== オーバーレイ ===== */
.dl-hero-video__overlay {
  position: absolute;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: clamp(24px, 5vw, 56px);
  pointer-events: none;
}

@media(min-width: 769px) {
  .dl-hero-video__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: clamp(24px, 5vw, 56px);
    pointer-events: none;
  }
}

/* ===== タイトル ===== */
.dl-hero-video__title {
  font-size: var(--fz-hero);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}

/* ===== 右下テキスト ===== */

.dl-hero-video__lead {
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  white-space: nowrap;
}

@media (max-width: 768px) {
  :root {
    --swl-mv-height: 100svh;
  }

  #main_visual,
  #main_visual.p-mainVisual,
  #main_visual .p-mainVisual,
  #main_visual .p-mainVisual__imgLayer,
  #main_visual .p-mainVisual__slide,
  #main_visual .p-mainVisual__imgLayer video,
  #main_visual .p-mainVisual__imgLayer img {
    height: 100svh !important;
    min-height: 100svh !important;
  }

  #main_visual .p-mainVisual__imgLayer video,
  #main_visual .p-mainVisual__imgLayer img {
    width: 100%;
    object-fit: cover;
  }
}


/* ===== Section ===== */
.dl-personalized {
  position: relative;
  padding-top: var(--grobal-section-on-padding);
  padding-top: 242px;
  justify-content: center;
  background: var(--bg-page);

}

.dl-personalized-bg {
  background: var(--bg-page);
}

/* ===== Hero (silhouette + rainbow arc) ===== */
.dl-personalized__hero {
  width: var(--grobal-content-width);
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  padding-bottom: 48px;
}


/* rainbow arcs (bottom) */
.dl-personalized__arc {
  position: relative;
  width: 100%;
  overflow: hidden;

}

.dl-personalized__arc img {
  width: 100%;
  height: auto;
  scale: 1.8;
}

.dl-personalized__arc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(23, 23, 26, 0) 0%,
      rgba(23, 23, 26, 0.4) 40%,
      rgba(23, 23, 26, 0.875) 70%,
      #17171a 100%);
  pointer-events: none;
}


/* ===== Text overlay (top center) ===== */
.dl-personalized__copy {
  text-align: center;
  z-index: 2;
}

.dl-section-header-a {
  text-align: center;
  max-width: var(--grobal-content-max-width);
  width: var(--grobal-content-width);
  margin-inline-start: auto;
  margin-inline-end: auto;

  display: grid;
  gap: 10px;
}

.dl-section-header-headline-eyebrow {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(245, 245, 247, .55);
}

.dl-personalized__title {
  margin: 0 0 10px;
  font-weight: 900;
}

.dl-section-header-headline-a {
  font-size: var(--fz-section-title);
  font-weight: 700;
  margin-bottom: 10px;
}

.dl-header-lead-a {
  font-size: 12px;
}

.dl-header-lead {
  color: var(--dl-sub);
}

/* ===== Feature list (bottom) ===== */


.dl-personalized__features {
  position: relative;
  top: -136px;
  display: grid;
  gap: 36px;
  max-width: var(--grobal-content-max-width);
  width: var(--grobal-content-width);
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.dl-personalizedFeature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: flex-start;
}

.dl-personalizedFeature__ico {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: rgba(245, 245, 247, .85);
}

.dl-personalizedFeature__title {
  margin: 0 0 6px;
  font-size: var(--fz-body);
  font-weight: 700;
}

.dl-personalizedFeature__text {
  margin: 0;
  font-size: var(--fz-caption);
  color: var(--dl-sub);
}









/* =========================================================
   Product Stories (Apple-like)
   ========================================================= */
.dl-section-product-stories {
  padding-top: var(--grobal-section-on-padding);
  padding-bottom: var(--grobal-section-padding);
  /* no-pad-top / no-pad-bottom */
}

.dl-section-product-stories__inner {
  width: var(--grobal-content-width);
  max-width: var(--grobal-content-max-width);
  margin: 0 auto;
  padding: var(--sp-section-y-tight) 0 var(--sp-section-y);
  display: grid;
  gap: var(--sp-block-gap);
}

.dl-product-stories__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}

.dl-product-stories__headContent {
  display: grid;
  gap: 10px;
  padding-bottom: 20px;
}

.dl-product-stories__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .92;
}

@media (min-width: 769px) {
  .dl-product-stories__eyebrow {
    font-size: var(--fz-body);
  }
}

.dl-product-stories__title {
  margin: 0;
  font-size: clamp(22px, 4.6vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.dl-product-stories__lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--dl-sub);
}

@media (min-width: 769px) {
  .dl-product-stories__lead {
    font-size: var(--fz-body);
  }
}

.dl-product-stories__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2997ff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
}

.dl-product-stories__link::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.dl-product-stories__rail {
  position: relative;
  margin-top: 6px;
}

/* Mobile: horizontal scroll + snap */
.dl-product-stories__scroller {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  padding: var(--sp-rail-pad-top) 0 var(--sp-rail-pad-bottom);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.dl-product-stories__scroller::-webkit-scrollbar {
  height: 6px;
}

.dl-product-stories__scroller::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .18);
  border-radius: 999px;
}

.dl-product-stories__scroller::-webkit-scrollbar-track {
  background: transparent;
}

.dl-story {
  scroll-snap-align: start;
  flex: 0 0 92%;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .12);
  background: #0b0b0c;

  transform: translateY(8px);
  opacity: 0;
  transition: transform var(--dur) var(--dl-ease), opacity var(--dur) var(--dl-ease);
  will-change: transform, opacity;
}

.dl-story.is-in {
  transform: translateY(0);
  opacity: 1;
}

.dl-story__media {
  aspect-ratio: 16 / 13;
  background: #0b0b0c;
  position: relative;
  overflow: hidden;
}

.dl-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.dl-story__body {
  padding: 24px 14px 30px;
  display: grid;
  gap: 8px;
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, 0) 60%),
    #0b0b0c;
}

.dl-story__kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}

.dl-story__headline {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.dl-story__desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--dl-sub);
}

.dl-product-stories__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
}

.dl-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.dl-dot[aria-current="true"] {
  width: 18px;
  background: rgba(255, 255, 255, .75);
}

@media (min-width: 769px) {
  .dl-section-product-stories__inner {
    max-width: 1060px;
  }

  .dl-product-stories__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
  }

  .dl-product-stories__head>div:first-child {
    max-width: 560px;
  }

  .dl-product-stories__scroller {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--gap);
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .dl-story {
    flex: unset;
    opacity: 1;
    transform: none;
  }

  .dl-story--big {
    grid-row: 1 / span 2;
  }
  .dl-story--big .dl-story__media {
    aspect-ratio: 16 / 12;
  }

  .dl-story__media {
    aspect-ratio: 16 / 9;
  }

  .dl-product-stories__dots {
    display: none;
  }
}




/* =========================================================
   Message (dl-message)
   ========================================================= */
.dl-message {
  padding-top: var(--grobal-section-on-padding);
  padding-bottom: var(--grobal-section-padding);
  background: var(--bg);
}

.dl-message__inner {
  width: var(--grobal-content-width);
  max-width: var(--grobal-content-max-width);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.dl-message__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245, 245, 247, .72);
}

@media (min-width: 769px) {
  .dl-message__eyebrow {
    font-size: var(--fz-body);
  }
}

.dl-message__title {
  margin: 0;
  font-size: clamp(20px, 4.6vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.dl-message__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--sub);
}

.dl-message__panel {
  /* カード見えをやめる */
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  display: block;

  margin-top: 10px;

}

.dl-message__layout {
  /* mobile: 縦積み */
  display: grid;
  gap: 16px;

}

.dl-message__media {
  /* mobile: 画像だけ“フルブリード”（左右余白なし） */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  background: #0b0b0c;
  aspect-ratio: 16 / 9;
  position: relative;
}

/* Splide (dl-message media) */
.dl-message__media .splide,
.dl-message__media .splide__track,
.dl-message__media .splide__list,
.dl-message__media .splide__slide {
  width: 100%;
  height: 100%;
}

.dl-message__media .splide__track {
  height: 100%;
  overflow: hidden;
}

.dl-message__media .splide__list {
  height: 100%;
  display: flex;
  /* ✅ 横並び（重なり防止） */
  transition-timing-function: linear !important;
}

.dl-message__media .splide__slide {
  height: 100%;
  flex: 0 0 100%;
  /* mobile: 1枚表示 */
}

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

.dl-message__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, .18) 45%,
      rgba(0, 0, 0, .45) 100%);
  pointer-events: none;
}

.dl-message__brand {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245, 245, 247, .86);
}

.dl-message__note {
  font-size: 12px;
  color: rgba(245, 245, 247, .58);
}

@media (min-width: 769px) {
  .dl-message__inner {
    max-width: 1060px;
    gap: 22px;
  }

  .dl-message__layout {
    /* PCもモバイル同様：1カラム */
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dl-message__media {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    /* 高さ上限（端末差はclampで吸収） */
    height: clamp(240px, 40vh, 420px);
    aspect-ratio: auto;
  }

  .dl-message__media .splide__slide {
    flex: 0 0 calc(100% / 3);
    /* PC: 3枚表示 */
  }

  .dl-message__content {
    padding-right: 14%;
  }

  .dl-message__text {
    font-size: 16px;
  }
}








.dl-servicesMedia {
  width: 100%;
  background: var(--dl-bg);
  color: var(--dl-text);
  padding-top: var(--grobal-section-on-padding);
  padding-bottom: var(--grobal-section-padding);
  position: relative;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .dl-servicesMedia {
    overflow-x: hidden;
  }
}

.dl-servicesMedia__inner {
  width: var(--grobal-content-width);
  max-width: min(var(--grobal-content-max-width), 100vw);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dl-servicesMedia__title {
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

.dl-services__lead {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dl-sub);
}

@media (min-width: 769px) {
  .dl-services__lead {
    font-size: var(--fz-body);
  }
}

/* ===== Mobile: single Splide (original) ===== */
.dl-splide {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.dl-splide .splide__track {
  overflow: hidden !important;
  max-width: 100%;
  border-radius: var(--dl-radius);
}

.dl-splide .splide__list {
  align-items: stretch;
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100%;
}

.dl-splide .splide__slide {
  width: 100% !important;
  max-width: 100%;
  flex: 0 0 100%;
  padding: 0;
}

.dl-mediaCard {
  width: 100%;
  background: #111214;
  border-radius: var(--dl-radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .65), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.dl-mediaCard__media {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #0b0b0c;
}

.dl-mediaCard__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dl-mediaCard__body {
  background: #111214;
  padding: 18px 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.dl-mediaCard__cardHead {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.dl-mediaCard__meta {
  font-size: 12px;
  color: rgba(245, 245, 247, .62);
  letter-spacing: .02em;
}

.dl-mediaCard__cardTag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  color: rgba(245, 245, 247, .9);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}

.dl-mediaCard__headline {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--dl-text);
  letter-spacing: .12em;
}

.dl-mediaCard__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: var(--dl-text);
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
}

.dl-mediaCard__linkRow {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dl-mediaCard__iconLink {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--dl-text);
  font-size: 16px;
}

.dl-mediaCard__url {
  color: rgba(245, 245, 247, .72);
  font-size: 12px;
  text-decoration: none;
  word-break: break-all;
}

.dl-splide .splide__arrows,
.dl-splide .splide__pagination {
  display: none;
}

/* mobile: show slider, hide fixed stage */
.dl-stage {
  display: none;
}

/* ===== Controls row (tabs) ===== */
.dl-logoRow {
  width: 100%;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
}

.dl-logoRow__item {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(245, 245, 247, .42);
  padding: 18px 10px;
  position: relative;
  transition: flex-grow 520ms var(--dl-ease), color 220ms var(--dl-ease), background-color 520ms var(--dl-ease);
}

.dl-logoRow__item.is-active {
  flex-grow: 2.2;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  outline: 1px solid rgba(10, 132, 255, .9);
}

.dl-logoRow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 14px;
  width: 1px;
  height: calc(100% - 28px);
  background: rgba(255, 255, 255, .12);
}

/* ===== Fixed 3-window stage (mobile: use only center window stacked) ===== */
.dl-stage {
  position: relative;
  width: 100%;
}

.dl-win {
  border-radius: var(--dl-radius);
  background: #0b0b0c;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .65), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

/* Splide internal only */
.dl-win .splide,
.dl-win .splide__track,
.dl-win .splide__list,
.dl-win .splide__slide {
  width: 100%;
  height: 100%;
}

.dl-win .splide__slide > div,
.dl-win .dl-win__media {
  width: 100%;
  height: 100%;
}

.dl-win .splide__arrows,
.dl-win .splide__pagination {
  display: none !important;
}

.dl-win__media {
  position: relative;
  width: 100%;
  height: 100%;
}

.dl-win__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  max-width: none;
}

/* Center overlay panel (fixed) */
.dl-panel {
  position: absolute;
  right: var(--dl-panel-offset-x);
  bottom: var(--dl-panel-offset-y);
  width: var(--dl-panel-w);
  background: #f5f5f7;
  color: #111;
  border: 1px solid rgba(0, 0, 0, .12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
  padding: var(--dl-panel-pad);
  z-index: 5;
}

.dl-panel__meta {
  font-size: 11px;
  color: rgba(17, 17, 17, .65);
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.dl-panel__headline {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.dl-panel__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .14);
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.dl-panel__linkRow {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dl-panel__iconLink {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .14);
  background: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #111;
  font-size: 16px;
}

.dl-panel__url {
  color: rgba(17, 17, 17, .72);
  font-size: 12px;
  text-decoration: none;
  word-break: break-all;
}

/* panel text slider (internal) */
.dl-panel .splide__track {
  overflow: hidden !important;
}

.dl-panel .splide__slide {
  width: 100% !important;
}

/* Mobile: only center window */
.dl-stage__grid {
  display: grid;
  gap: 18px;
}

.dl-win--B {
  width: 100%;
  height: 320px;
}

.dl-win--A,
.dl-win--C {
  display: none;
}

.dl-panel {
  position: static;
  width: 100%;
  margin-top: 12px;
}







.dl-works {
  padding-top: var(--grobal-section-on-padding);
  padding-bottom: var(--grobal-section-padding);
}

/* ===== header ===== */
.dl-works__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.dl-works__inner {
  width: var(--grobal-content-width);
  max-width: var(--grobal-content-max-width);
  margin: 0 auto;
  gap: var(--sp-block-gap);
}

.dl-section-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.dl-section-header-headline {
  position: relative;
  display: flex;
  gap: 10px;
  font-weight: 700;
  font-size: var(--fz-section-title);
  text-wrap: nowrap;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.dl-section-header-headline::after {
  content: "";
  position: relative;
  align-self: center;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.dl-header-lead {
  margin: 0;
  font-size: var(--fz-body);
  line-height: 1.7;
  color: #fff;
}

.dl-action__lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--dl-sub);
}

@media (min-width: 769px) {
  .dl-action__lead {
    font-size: var(--fz-body);
  }
}

.dl-works__actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.dl-btn__action {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.dl-works__btn {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
}

.dl-works__btn:hover {
  background: rgba(255, 255, 255, .08);
}

/* ===== grid ===== */
.dl-works__gridWrap {
  display: flex;
  justify-content: center;
  padding-top: 36px;

  max-width: var(--grobal-content-max-width);
  width: var(--grobal-content-width);
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.dl-worksGrid {
  width: min(var(--grid-size), 92vw);
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--cell-gap);
}

.dl-worksCell {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .08);

}

.dl-worksCell img,
.dl-worksCell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1 / 1;
}

.dl-worksCell--insta {
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 35%, #d6249f 60%, #285AEB 100%);
  color: #fff;
}

.dl-worksCell__instaLink {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
  transition: opacity .3s ease;
}

.dl-worksCell__instaInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.dl-worksCell__instaText {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dl-worksCell__instaLink:hover {
  opacity: .7;
}

@media (max-width: 680px) {
  :root {
    --page-pad: 22px;
    --cell-gap: 12px;
  }

  .dl-works__top {
    gap: 16px;
  }
}

.dl-other {
  background: var(--bg-page);
  padding-top: var(--grobal-section-on-padding);
  padding-bottom: var(--grobal-section-padding);
  margin: 0 auto;
}

.dl-other-title {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}


.dl-other__top {
  padding-bottom: 0;
}

.dl-other-image {
  width: 100%;
  height: 480px;
  margin: 38px auto 28px;
  border-radius: 18px;
}

.dl-other-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dl-other-lead {
  width: var(--grobal-content-width);
  margin: 0 auto;
}

.dl-other-rail {
  width: 100%;
  margin-top: 120px;

}

.dl-other-rail2 {
  margin-top: 96px;
}

.dl-other-slide-header {
  display: flex;
  width: var(--grobal-content-width);
  max-width: var(--grobal-content-max-width);
  margin: 0 auto;
  margin-bottom: 18px;

}

.dl-other-slide-title {
  font-weight: 700;
  font-size: var(--fz-lead);
  text-wrap: nowrap;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.dl-other-wrap {
  overflow: hidden;
}


/* header */

.dl-other-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2997ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.dl-other-link::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

/* rail */
.dl-other-gallery-rail {
  position: relative;

}

/* ===== splide track にすべての余白を集約 ===== */
#otherGallery .splide__track,
#otherGallery2 .splide__track {
  overflow: hidden;
  touch-action: pan-x;
  padding-left: var(--other-side-pad) !important;
  padding-right: var(--other-side-pad) !important;
}


#otherGallery .splide__list {
  user-select: none;
  -webkit-user-select: none;
}

/* slide */
.dl-other-slide {
  /* 少し大きめに調整 */
  width: min(380px, 70vw);
}

.dl-other-card {
  overflow: hidden;
}

.dl-other-media {
  aspect-ratio: 1 / 1;
}

.dl-other-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--card-radius);
}

.dl-other-body {
  padding: 16px 18px 20px;
}

.dl-other-body h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}

.dl-other-body p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--dl-sub);
}

/* controls */
.dl-other-controls {
  position: relative;
  width: 87.5%;
  margin: 0 auto;
  display: flex;
  justify-content: end;
  padding-top: 50px;
  gap: var(--nav-gap);
  z-index: 2;
}

.dl-other-btn {
  width: var(--nav-size);
  height: var(--nav-size);
  border-radius: 999px;
  border: 1px solid var(--nav-bd);
  background: var(--nav-bg);
  color: rgba(245, 245, 247, .92);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dl-other-btn:disabled {
  opacity: .35;
  cursor: default;
}

.dl-other-gallery .splide__arrows,
.dl-other-gallery .splide__pagination {
  display: none;
}


/* =========================================================
   Services Navigation (dl-servicesNav)
   ========================================================= */
.dl-servicesNav {
  padding-bottom: var(--grobal-section-padding);
}

.dl-servicesNav__inner {
  width: var(--grobal-content-width);
  max-width: var(--grobal-content-max-width);
  margin: 0 auto;
  padding: 52px 0 70px;
  display: grid;
  gap: var(--sp-block-gap);
}

.dl-servicesNav__head {
  display: grid;
  gap: 12px;
}

.dl-servicesNav__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .92;
}

.dl-servicesNav__title {
  margin: 0;
  font-size: clamp(20px, 4.6vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.dl-servicesNav__lead {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--sub);
}

.dl-servicesNav__layout {
  display: grid;
  gap: 14px;
  margin-top: 6px;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.dl-servicesNav__layout>* {
  min-width: 0;
}

.dl-servicesNav__media {
  width: 100%;
  height: 100%;
}

.dl-servicesNav__content {
  width: 100%;
  min-width: 0;
}

.dl-pl-mediaFrame {
  width: 100%;
  height: 100%;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow);
  background: #0b0b0c;
  aspect-ratio: 16 / 11;
  position: relative;
}

.dl-pl-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);

  transition:
    opacity 320ms var(--ease),
    transform 520ms var(--ease),
    visibility 0s linear 320ms;
}

.dl-pl-media.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition:
    opacity 320ms var(--ease),
    transform 520ms var(--ease),
    visibility 0s;
}

.dl-pl-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 6px 0;
  max-width: 100%;
}

.dl-pl-tabs::-webkit-scrollbar {
  height: 0;
}

.dl-pl-tab {
  flex: 0 0 auto;
  width: min(280px, 78vw);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: rgba(245, 245, 247, .92);
  padding: 14px 16px;
  cursor: pointer;
  display: grid;
  gap: 10px;
  text-align: left;
  white-space: normal;
}

.dl-pl-tab.is-active {
  border-color: #0a84ff;
  background: rgba(10, 132, 255, .14);
}

.dl-pl-tabHead {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.dl-pl-tabKicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245, 245, 247, .92);
}

.dl-pl-tabTag {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: rgba(245, 245, 247, .96);
}

.dl-pl-tabTitle {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.dl-pl-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
  color: #2997ff;
  letter-spacing: .02em;
  text-decoration: none;
  width: fit-content;
}

.dl-pl-cta::after {
  content: "›";
  font-size: 16px;
  transform: translateY(-1px);
}

@media (hover:hover) {
  .dl-pl-tab:hover {
    transform: translateY(-2px);
  }
}

.dl-pl-panels {
  padding-top: 10px;
  max-width: 100%;
}

.dl-pl-panel {
  transform: translateY(8px);
  opacity: 0;
  transition: transform 420ms var(--ease), opacity 420ms var(--ease);
  max-width: 100%;
}

.dl-pl-panel.is-active {
  transform: translateY(0);
  opacity: 1;
}

.dl-pl-panel__title {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 850;
}

.dl-pl-panel__text {
  margin: 0 0 10px;
  font-size: 12.8px;
  line-height: 1.8;
  color: var(--sub);
}

@media (min-width: 769px) {
  .dl-servicesNav__inner {
    max-width: 1060px;
    padding: 72px 0 88px;
  }

  .dl-servicesNav__layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 22px;
  }

  .dl-pl-mediaFrame {
    aspect-ratio: 16 / 10;
  }

  .dl-pl-tabs {
    flex-direction: column;
    overflow: visible;
    padding: 0;
  }

  .dl-pl-tab {
    width: 100%;
    border-radius: 18px;
    text-align: left;
    padding: 14px 16px;
  }
}

@media (max-width:560px) {
  :root {
    --peek: 80px;
    --controls-gutter: calc(var(--nav-size) * 2 + var(--nav-gap) + 14px);
  }
}

.dl-other__br {
  display: none;
}

@media (min-width: 769px) {

  .dl-section-header {
    display: block;
  }

  .dl-section-header-a {
    max-width: 1060px;

  }

  .dl-personalized {
    position: relative;
    padding-top: 232px;
    gap: 48px;

  }

  .dl-personalized-bg {
    background: var(--bg-page);
  }

  /* ===== Hero (silhouette + rainbow arc) ===== */
  .dl-personalized__hero {
    padding-bottom: 94px;
  }

  .dl-section-header-headline-eyebrow {
    font-size: 16px;
  }

  .dl-section-header-headline-a {
    margin-bottom: 24px;
  }

  .dl-header-lead-a {
    font-size: 16px;
  }

  .dl-header-lead {
    color: var(--dl-sub);
  }


  /* rainbow arcs (bottom) */
  .dl-personalized__arc {
    position: relative;
    width: 100%;
    max-height: 1480px;
    overflow: hidden;

  }

  .dl-personalized__arc img {
    width: 100%;
    height: auto;
    scale: 1;
  }

  .dl-personalized__arc::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(23, 23, 26, 0) 0%,
        rgba(23, 23, 26, 0.547) 40%,
        rgba(20, 19, 19, 0.927) 70%,
        #17171a 100%);
    pointer-events: none;
  }

  .dl-personalized__features {
    top: -156px;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1060px;
  }

  .dl-personalizedFeature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dl-personalizedFeature__ico {
    width: 38px;
    height: 38px;
    font-size: 28px;
    color: rgba(245, 245, 247, .85);
  }

  /* PC: show fixed stage, hide mobile slider */
  #dlServicesSplide {
    display: none;
  }

  .dl-stage {
    display: block;
  }

  .dl-servicesMedia {
    padding: 164px 0 56px;
  }

  .dl-servicesMedia__inner {
    width: min(92vw, 1280px);
    max-width: 1060px;
    gap: 128px;
  }

  .dl-stage {
    height: var(--dl-winB-h);
    min-height: var(--dl-winB-h);
  }

  .dl-stage__grid {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }

  .dl-win--B {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--dl-winB-w);
    height: var(--dl-winB-h);
    transform: translate(-50%, -50%);
    z-index: 3;
  }

  .dl-win--A {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--dl-winA-w);
    height: var(--dl-winA-h);
    /* A の右端と B の左端がぴったり接する（余白なし） */
    transform: translate(calc(-50% - ((var(--dl-winB-w) + var(--dl-winA-w)) / 2)),
        -50%);
    z-index: 2;
    opacity: .95;
  }

  .dl-win--C {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--dl-winC-w);
    height: var(--dl-winC-h);
    /* C の左端と B の右端がぴったり接する（余白なし） */
    transform: translate(calc(-50% + ((var(--dl-winB-w) + var(--dl-winC-w)) / 2)),
        -50%);
    z-index: 2;
    opacity: .95;
  }

  /* keep panel over the center window */
  .dl-panel {
    position: absolute;
    width: var(--dl-panel-w);
    right: -84px;
    z-index: 5;
  }


  /* logo row matches screenshot */
  .dl-logoRow {
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 0;
    justify-content: center;
    overflow: hidden;
    max-width: 1060px;
    margin: 15px auto 0;
  }

  .dl-logoRow__item {
    flex: 0 0 auto;
    padding: 22px 120px;
    color: rgba(245, 245, 247, .38);
    background: transparent;
    outline: none;
    flex: 0 0 auto;
  }

  /* active width: slightly smaller */
  .dl-logoRow__item.is-active {
    padding: 22px 0px;
    background: rgba(255, 255, 255, .06);
    ;
    color: rgba(245, 245, 247, .92);
    flex: 0 0 auto;
    flex: auto;
  }

  .dl-logoRow__item:not(:last-child)::after {
    top: 18px;
    height: calc(100% - 36px);
    background: rgba(255, 255, 255, .24);
  }

  .dl-works {
    padding-top: 160px;
  }

  .dl-works__inner {
    width: min(92vw, 1280px);
    max-width: 1060px;
  }

  .dl-works__top {
    max-width: 100%;
    width: auto;
  }

  .dl-works__top {
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
  }

  .dl-works__actions {
    width: 100%;
    justify-content: space-between;
    padding-top: 0;
  }

  .dl-works__left {
    max-width: 520px;
  }

  .dl-worksGrid {
    width: 780px;
  }

  .dl-works__gridWrap {
    max-width: 1060px;
    padding-top: 120px;
  }

  .dl-other__top {
    max-width: 1060px;
    margin: 0 auto;
    padding-bottom: 64px;
  }

  .dl-other .dl-header-lead {
    width: 580px;
    margin: 0 auto;
  }

  .dl-other-image {
    height: 580px;
    margin-top: 64px;
    margin-bottom: 48px;
    max-width: 1060px;
    margin: 64px auto 48px;
    overflow: hidden;
  }

  .dl-other-slide-header {
    max-width: 1060px;
  }


  /* PC: align gallery padding with the same max-width as .dl-other-slide-header */
  :root {
    --other-inner-max: 1060px;
  }

  /* PC only: change width only (do NOT affect height) */
  #otherGallery .splide__slide:first-child .dl-other-slide {
    width: 670px;
  }

  #otherGallery2 .splide__slide:nth-child(3) .dl-other-slide {
    width: 670px;
  }

  /* PC: keep card HEIGHT constant even when a single slide becomes wider */
  :root {
    --other-media-h: 380px;
    /* was square via aspect-ratio (380px wide) */
  }

  .dl-other-media {
    height: var(--other-media-h);
    aspect-ratio: auto;
    /* decouple height from width */
  }

  .dl-other-media img {
    height: 100%;
  }
}