.dcp-mobile-nav-shim {
  display: none !important;
}

.dcp-page {
  color: #172033;
  background: #f7f8fb;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  line-height: 1.8;
}

.dcp-page a {
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, opacity 160ms ease;
}

.dcp-band {
  width: 100%;
}

.dcp-container {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}

.dcp-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
}

.dcp-logo {
  color: inherit;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.dcp-logo--image {
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.dcp-logo--image img {
  display: block;
  width: 156px;
  height: auto;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.86))
    drop-shadow(0 2px 8px rgba(255, 255, 255, 0.46))
    drop-shadow(0 10px 18px rgba(15, 23, 42, 0.34));
  transition: filter 160ms ease, opacity 160ms ease;
}

.dcp-nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.dcp-nav__links a {
  color: inherit;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.dcp-logo--image:hover img,
.dcp-logo--image:focus-visible img {
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.96))
    drop-shadow(0 2px 10px rgba(255, 255, 255, 0.62))
    drop-shadow(0 12px 22px rgba(15, 23, 42, 0.42));
  opacity: 0.92;
}

.dcp-nav__links a:hover,
.dcp-nav__links a:focus-visible {
  border-color: currentColor;
  opacity: 0.78;
}

.dcp-mobile-menu-toggle,
.dcp-mobile-menu {
  display: none;
}

.dcp-mobile-menu-toggle {
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(8, 13, 24, 0.34);
  color: #fff;
  padding: 0 13px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.dcp-mobile-menu-toggle__icon {
  display: grid;
  gap: 5px;
  width: 18px;
}

.dcp-mobile-menu-toggle__icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.dcp-mobile-menu-toggle[aria-expanded="true"] .dcp-mobile-menu-toggle__icon span:first-child {
  transform: translateY(3.5px) rotate(42deg);
}

.dcp-mobile-menu-toggle[aria-expanded="true"] .dcp-mobile-menu-toggle__icon span:last-child {
  transform: translateY(-3.5px) rotate(-42deg);
}

.dcp-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}

.dcp-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 13, 24, 0);
  padding: 0;
  transition: background-color 220ms ease;
}

.dcp-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: min(86vw, 360px);
  min-height: 100%;
  align-content: start;
  gap: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 250, 0.92)),
    #fff;
  box-shadow: -28px 0 70px rgba(8, 13, 24, 0.24);
  padding: 24px;
  transform: translateX(104%);
  transition: transform 240ms ease;
}

.dcp-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #172033;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dcp-mobile-menu__close {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid #c8ced6;
  border-radius: 999px;
  background: #fff;
}

.dcp-mobile-menu__close::before,
.dcp-mobile-menu__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #172033;
  content: "";
}

.dcp-mobile-menu__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.dcp-mobile-menu__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.dcp-mobile-menu__links {
  display: grid;
  gap: 8px;
}

.dcp-mobile-menu__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(137, 150, 168, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #172033;
  padding: 14px 15px;
  font-size: 15px;
  font-weight: 900;
}

.dcp-mobile-menu__links a::after {
  color: #8b96a5;
  content: ">";
}

.dcp-mobile-menu__cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #172033;
  color: #fff;
  padding: 0 18px;
  font-weight: 900;
}

.dcp-visual-header.is-menu-open .dcp-mobile-menu {
  pointer-events: auto;
}

.dcp-visual-header.is-menu-open .dcp-mobile-menu__backdrop {
  background: rgba(8, 13, 24, 0.42);
}

.dcp-visual-header.is-menu-open .dcp-mobile-menu__panel {
  transform: translateX(0);
}

body.dcp-menu-lock {
  overflow: hidden;
}

.dcp-hero,
.dcp-section {
  padding: 78px 0;
}

.dcp-hero__grid,
.dcp-conv-grid,
.dcp-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 56px;
}

.dcp-hero h1,
.dcp-info-hero h1,
.dcp-visual-copy h1,
.dcp-simple-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.dcp-hero p,
.dcp-info-hero p,
.dcp-visual-copy p,
.dcp-simple-hero p {
  max-width: 680px;
  margin-top: 22px;
  font-size: 17px;
}

.dcp-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dcp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.dcp-btn,
.dcp-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 3px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.dcp-btn:hover,
.dcp-link-btn:hover {
  transform: translateY(-1px);
}

.dcp-link-btn {
  border: 1px solid currentColor;
  color: inherit;
  background: rgba(255, 255, 255, 0.7);
}

.dcp-hero__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.dcp-section__head {
  margin-bottom: 34px;
}

.dcp-section__head p {
  margin: 0 0 8px;
  color: #64748b;
  font-weight: 900;
}

.dcp-section__head h2,
.dcp-two-col h2,
.dcp-final-cta h2,
.dcp-info-content h2,
.dcp-visual-gallery h2 {
  margin: 0;
  font-size: clamp(24px, 2.35vw, 34px);
  font-weight: 900;
  line-height: 1.25;
}

.dcp-card-grid,
.dcp-case-grid,
.dcp-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.dcp-card,
.dcp-case,
.dcp-step-grid > div,
.dcp-mini-form {
  border-radius: 3px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.dcp-card h3,
.dcp-case h3,
.dcp-step-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 900;
}

.dcp-card p,
.dcp-case p,
.dcp-step-grid p {
  margin: 0;
}

.dcp-case span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.dcp-muted {
  background: #eef2f7;
}

.dcp-check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dcp-check-list li {
  border-left: 4px solid currentColor;
  background: rgba(255, 255, 255, 0.76);
  padding: 14px 18px;
  font-weight: 700;
}

.dcp-proof {
  background: #172033;
  color: #fff;
}

.dcp-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.dcp-proof__grid > div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.dcp-proof strong {
  display: block;
  font-size: 34px;
  line-height: 1.1;
}

.dcp-news {
  display: grid;
  gap: 12px;
}

.dcp-news a {
  display: flex;
  gap: 18px;
  border-radius: 3px;
  background: #fff;
  padding: 18px 22px;
  color: inherit;
  font-weight: 700;
}

.dcp-news time {
  color: #64748b;
  white-space: nowrap;
}

.dcp-faq {
  display: grid;
  gap: 12px;
}

.dcp-faq details {
  border-radius: 3px;
  background: #fff;
  padding: 18px 22px;
}

.dcp-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.dcp-faq p {
  margin: 12px 0 0;
}

.dcp-final-cta {
  padding: 72px 0;
  text-align: center;
}

.dcp-final-cta p {
  margin: 16px auto 28px;
  max-width: 680px;
}

.dcp-final-cta__title span + span::before {
  content: "、";
}

.dcp-footer {
  padding: 58px 0 24px;
  background:
    linear-gradient(135deg, rgba(22, 30, 43, 0.98), rgba(47, 59, 77, 0.98)),
    #2f3b4d;
  color: #d9e2ee;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 14px;
}

.dcp-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.4fr);
  gap: 54px;
  align-items: start;
}

.dcp-footer__brand {
  display: grid;
  gap: 20px;
}

.dcp-footer__logo {
  display: inline-flex;
  width: fit-content;
}

.dcp-footer__logo img {
  display: block;
  width: 168px;
  height: auto;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.82))
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.dcp-footer__brand p {
  max-width: 420px;
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.9;
}

.dcp-footer__consult {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0 18px;
  color: #fff;
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.dcp-footer__consult:hover,
.dcp-footer__consult:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.dcp-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.dcp-footer__nav h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dcp-footer__nav ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dcp-footer__nav a {
  color: rgba(226, 232, 240, 0.78);
  font-weight: 700;
}

.dcp-footer__nav a:hover,
.dcp-footer__nav a:focus-visible {
  color: #fff;
}

.dcp-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
  color: rgba(226, 232, 240, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.dcp-footer__bottom p {
  margin: 0;
}

.dcp-btn--trust {
  background: #1d4f73;
  color: #fff;
  box-shadow: 0 12px 26px rgba(29, 79, 115, 0.24);
}

.dcp-trust-header,
.dcp-trust-hero {
  background: #f4f7f9;
}

.dcp-trust-hero {
  color: #10243a;
}

.dcp-final-cta--trust {
  background: #dfe8ee;
}

.dcp-btn--conv {
  background: #e5482f;
  color: #fff;
  box-shadow: 0 14px 28px rgba(229, 72, 47, 0.25);
}

.dcp-conv-header,
.dcp-conv-hero {
  background: #fff7ed;
}

.dcp-conv-hero h1 {
  color: #7c2d12;
}

.dcp-mini-form label {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  font-weight: 800;
}

.dcp-mini-form input,
.dcp-mini-form textarea {
  width: 100%;
  border: 1px solid #fed7aa;
  border-radius: 3px;
  padding: 12px;
  background: #fff;
  font-weight: 500;
}

.dcp-mini-form button {
  width: 100%;
  margin-top: 18px;
  border: 0;
}

.dcp-conv-services,
.dcp-final-cta--conv {
  background: #fee2e2;
}

.dcp-step-grid strong {
  color: #e5482f;
  font-size: 32px;
}

.dcp-btn--info {
  background: #2563eb;
  color: #fff;
}

.dcp-info-header,
.dcp-info-hero {
  background: #eff6ff;
}

.dcp-info-hero {
  padding: 76px 0;
}

.dcp-info-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.dcp-side-menu {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 10px;
  border-radius: 3px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.dcp-side-menu a {
  color: #1d4ed8;
  font-weight: 800;
}

.dcp-info-content {
  display: grid;
  gap: 54px;
}

.dcp-table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.dcp-table th,
.dcp-table td {
  border-bottom: 1px solid #dbeafe;
  padding: 16px;
  text-align: left;
}

.dcp-table th {
  background: #1d4ed8;
  color: #fff;
}

.dcp-final-cta--info {
  background: #dbeafe;
}

.dcp-btn--visual {
  background: #111827;
  color: #fff;
}

.dcp-visual-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(5, 10, 22, 0.54) 0%, rgba(5, 10, 22, 0.22) 44%, rgba(5, 10, 22, 0) 100%);
  color: #fff;
}

.dcp-visual-header::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 10, 22, 0.1), rgba(5, 10, 22, 0.03) 48%, rgba(5, 10, 22, 0.1));
  pointer-events: none;
}

.dcp-visual-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.dcp-visual-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1600ms ease-in-out;
}

.dcp-visual-hero__slide.is-active {
  opacity: 1;
}

.dcp-visual-hero__slide--01 {
  background-image: url("../img/hero-tokyo-living.webp");
}

.dcp-visual-hero__slide--02 {
  background-image: url("../img/hero-tokyo-living-02.webp");
}

.dcp-visual-hero__slide--04 {
  background-image: url("../img/hero-tokyo-living-04.webp");
}

.dcp-visual-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.1));
}

.dcp-visual-copy {
  position: relative;
  z-index: 1;
  padding: 120px 0 88px;
}

.dcp-visual-copy h1 {
  font-size: clamp(32px, 4.2vw, 56px);
}

.dcp-hero-controls {
  position: absolute;
  right: max(24px, calc((100vw - 1200px) / 2));
  bottom: 38px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 3px;
  background: rgba(10, 16, 28, 0.34);
  padding: 10px 12px;
  backdrop-filter: blur(12px);
}

.dcp-hero-control {
  display: block;
  width: 34px;
  height: 3px;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.42);
  padding: 0;
  cursor: pointer;
  transition: width 200ms ease, background-color 200ms ease, opacity 200ms ease;
}

.dcp-hero-control:hover,
.dcp-hero-control:focus-visible {
  background: rgba(255, 255, 255, 0.76);
  outline: none;
}

.dcp-hero-control.is-active {
  width: 54px;
  background: #fff;
}

.dcp-visual-focus {
  background: #fff;
}

.dcp-visual-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.dcp-visual-feature h2 {
  margin: 0;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 900;
  line-height: 1.22;
}

.dcp-visual-feature p {
  margin: 18px 0 0;
}

.dcp-media-placeholder--feature {
  min-height: 420px;
}

.dcp-feature-image {
  display: block;
  width: 100%;
  min-height: 420px;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  object-fit: cover;
}

.dcp-visual-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.dcp-visual-meta span {
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}

.dcp-visual-meta span:nth-child(1) {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.dcp-visual-meta span:nth-child(2) {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.dcp-visual-meta span:nth-child(3) {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #15803d;
}

.dcp-category-overview {
  background: #f5f6f8;
}

.dcp-category-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.dcp-category-overview__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  min-height: 124px;
  align-items: center;
  gap: 0;
  border: 1px solid #c8ced6;
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
  padding: 16px 8px 16px 20px;
  color: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.dcp-category-overview__item:hover,
.dcp-category-overview__item:focus-visible {
  border-color: #243041;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.dcp-category-overview__text {
  display: grid;
  gap: 14px;
}

.dcp-category-overview__text span {
  font-size: 20px;
  font-weight: 900;
}

.dcp-category-overview__text small {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.dcp-category-overview__art {
  display: block;
  justify-self: end;
  width: 156px;
  height: 118px;
  margin-left: -8px;
  margin-right: 0;
  object-fit: cover;
  object-position: right center;
  opacity: 0.96;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 16%, rgba(0, 0, 0, 0.62) 38%, #000 62%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 16%, rgba(0, 0, 0, 0.62) 38%, #000 62%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dcp-category-overview__item:hover .dcp-category-overview__art,
.dcp-category-overview__item:focus-visible .dcp-category-overview__art {
  opacity: 1;
  transform: rotate(-2deg) scale(1.04);
}

.dcp-visual-gallery {
  background: #f4efe8;
}

.dcp-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.dcp-visual-tile {
  display: grid;
  gap: 14px;
}

.dcp-area-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  object-fit: cover;
  transition: filter 180ms ease, transform 180ms ease;
}

.dcp-visual-tile h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
}

.dcp-visual-tile p {
  margin: 0;
}

.dcp-gallery img {
  width: 100%;
  height: 360px;
  border-radius: 3px;
  object-fit: cover;
}

.dcp-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.dcp-article-card {
  overflow: hidden;
  border: 1px solid #c8ced6;
  border-radius: 3px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.dcp-article-card__link {
  display: grid;
  color: inherit;
}

.dcp-article-card:hover,
.dcp-article-card:focus-within {
  border-color: #243041;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.13);
  transform: translateY(-2px);
}

.dcp-article-card:hover .dcp-article-image,
.dcp-article-card:focus-within .dcp-article-image {
  filter: saturate(1.06) contrast(1.04);
}

.dcp-article-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dcp-article-card__body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.dcp-article-card time {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.dcp-article-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.dcp-article-card p {
  margin: 0;
}

.dcp-single-page {
  background: #f5f6f8;
}

body.single-post {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

.dcp-single-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 132px 0 72px;
  background:
    linear-gradient(90deg, rgba(8, 12, 20, 0.82) 0%, rgba(8, 12, 20, 0.58) 42%, rgba(8, 12, 20, 0.1) 100%),
    url("/blog/wp-content/themes/lightning-asuxia/assets/img/hero-tokyo-living-04.webp") center / cover no-repeat;
  color: #fff;
}

.dcp-single-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 56px;
  align-items: end;
}

.dcp-single-hero__copy {
  max-width: 820px;
}

.dcp-single-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.dcp-single-categories a,
.dcp-sidebar-categories a {
  border-radius: 3px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.dcp-single-categories a {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  padding: 5px 12px;
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.dcp-single-categories a:hover,
.dcp-single-categories a:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.76);
}

.dcp-single-hero h1 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.dcp-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.dcp-single-hero__image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 3px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.dcp-single-hero__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dcp-single-body {
  padding: 72px 0 90px;
}

.dcp-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 340px);
  gap: 58px;
  align-items: start;
}

.dcp-single-content {
  color: #243044;
  font-size: 16px;
  line-height: 2.05;
}

.dcp-single-content > *:first-child {
  margin-top: 0;
}

.dcp-single-content p {
  margin: 0 0 1.45em;
}

.dcp-single-content h2,
.dcp-single-content h3,
.dcp-single-content h4 {
  color: #101827;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.dcp-single-content h2 {
  margin: 2.35em 0 0.9em;
  border-left: 4px solid #172033;
  padding-left: 16px;
  font-size: clamp(24px, 3vw, 32px);
}

.dcp-single-content h3 {
  margin: 2em 0 0.75em;
  font-size: clamp(20px, 2.4vw, 25px);
}

.dcp-single-content h4 {
  margin: 1.7em 0 0.7em;
  font-size: 18px;
}

.dcp-single-content a {
  color: #0f766e;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dcp-single-content a:hover,
.dcp-single-content a:focus-visible {
  color: #134e4a;
}

.dcp-single-content ul,
.dcp-single-content ol {
  margin: 0 0 1.55em;
  padding-left: 1.45em;
}

.dcp-single-content li + li {
  margin-top: 0.45em;
}

.dcp-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
}

.dcp-single-content figure {
  margin: 2em 0;
}

.dcp-single-content table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 14px;
}

.dcp-single-content th,
.dcp-single-content td {
  border: 1px solid #d7dce2;
  padding: 12px 14px;
  vertical-align: top;
}

.dcp-single-content th {
  background: #eef2f6;
  color: #101827;
  font-weight: 800;
}

.dcp-single-page-links {
  margin-top: 36px;
}

.dcp-single-sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 18px;
  align-content: start;
}

.dcp-sidebar-panel {
  border: 1px solid #d7dce2;
  border-radius: 3px;
  background: #fff;
  padding: 24px;
}

.dcp-sidebar-panel h2 {
  margin: 0;
  color: #111827;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.dcp-sidebar-panel p:not(.dcp-kicker) {
  margin: 12px 0 0;
  color: #536071;
  font-size: 14px;
  line-height: 1.8;
}

.dcp-sidebar-panel .dcp-btn {
  margin-top: 20px;
}

.dcp-sidebar-panel--consult {
  background: #111827;
  color: #fff;
}

.dcp-sidebar-panel--consult h2 {
  color: #fff;
}

.dcp-sidebar-panel--consult p:not(.dcp-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

.dcp-sidebar-panel--consult .dcp-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.dcp-sidebar-panel--consult .dcp-btn {
  background: #fff;
  color: #111827;
}

.dcp-sidebar-panel--consult .dcp-btn:hover,
.dcp-sidebar-panel--consult .dcp-btn:focus-visible {
  background: #e5e7eb;
}

.dcp-sidebar-categories {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.dcp-sidebar-categories a {
  display: flex;
  justify-content: space-between;
  border: 1px solid #d7dce2;
  background: #f8fafc;
  padding: 10px 12px;
  color: #172033;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.dcp-sidebar-categories a::after {
  content: ">";
  color: #94a3b8;
}

.dcp-sidebar-categories a:hover,
.dcp-sidebar-categories a:focus-visible {
  border-color: #172033;
  background: #fff;
  transform: translateX(2px);
}

.dcp-single-related {
  background: #fff;
}

.dcp-archive-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.dcp-archive-hero__image {
  position: absolute;
  inset: 0;
  background: url("../img/area-chuo.webp") center / cover no-repeat;
}

.dcp-archive-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.78), rgba(17, 24, 39, 0.18));
}

.dcp-archive-hero__content {
  position: relative;
  z-index: 1;
  padding: 130px 0 70px;
}

.dcp-archive-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.18;
}

.dcp-archive-hero p,
.dcp-archive-hero__description {
  max-width: 720px;
  margin-top: 18px;
  font-size: 17px;
}

.dcp-archive-categories {
  background: #fff;
}

.dcp-category-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dcp-category-link {
  display: grid;
  gap: 8px;
  border: 1px solid #c8ced6;
  border-radius: 3px;
  background: #fff;
  padding: 18px;
  color: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.dcp-category-link:hover,
.dcp-category-link:focus-visible {
  border-color: #243041;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.11);
  transform: translateY(-2px);
}

.dcp-category-link span {
  font-size: 18px;
  font-weight: 900;
}

.dcp-category-link small {
  color: #64748b;
  font-weight: 800;
}

.dcp-article-grid--archive {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dcp-pagination {
  margin-top: 38px;
}

.dcp-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dcp-pagination a,
.dcp-pagination span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c8ced6;
  border-radius: 3px;
  background: #fff;
  color: inherit;
  padding: 0 12px;
  font-weight: 800;
}

.dcp-pagination a:hover,
.dcp-pagination a:focus-visible {
  border-color: #243041;
  background: #243041;
  color: #fff;
}

.dcp-pagination .current {
  background: #243041;
  color: #fff;
}

.dcp-empty-state {
  border: 1px solid #c8ced6;
  border-radius: 3px;
  background: #fff;
  padding: 40px;
}

.dcp-empty-state h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
}

.dcp-empty-state p {
  margin: 12px 0 0;
}

.dcp-visual-journal {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.dcp-visual-journal a {
  display: grid;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
  color: inherit;
  transition: color 160ms ease, opacity 160ms ease;
}

.dcp-visual-journal a:hover,
.dcp-visual-journal a:focus-visible {
  color: #0f172a;
  opacity: 0.72;
}

.dcp-visual-journal .dcp-media-placeholder {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.dcp-visual-journal .dcp-media-placeholder--no-photo {
  position: relative;
  overflow: hidden;
  border-style: solid;
  background:
    linear-gradient(135deg, transparent 49%, rgba(100, 113, 134, 0.26) 50%, transparent 51%),
    linear-gradient(45deg, transparent 49%, rgba(100, 113, 134, 0.26) 50%, transparent 51%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0, rgba(255, 255, 255, 0.82) 8px, rgba(236, 241, 246, 0.82) 8px, rgba(236, 241, 246, 0.82) 16px),
    #eef2f6;
}

.dcp-visual-journal .dcp-media-placeholder--no-photo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(95, 107, 122, 0.38);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0 14px;
  color: #5f6b7a;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.dcp-visual-journal__image {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
  border-radius: 3px;
  object-fit: cover;
}

.dcp-visual-journal time {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.dcp-visual-journal strong {
  font-size: 15px;
  line-height: 1.55;
}

.dcp-final-cta--visual {
  background: #ede7de;
}

.dcp-btn--simple {
  background: #0f766e;
  color: #fff;
}

.dcp-simple-header,
.dcp-simple-hero,
.dcp-final-cta--simple {
  background: #ecfdf5;
}

.dcp-simple-stack {
  max-width: 760px;
  padding: 42px 0;
}

.dcp-page {
  color: #243041;
  background-color: #f7f7f4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)),
    url("../img/asuxia-visual-fixed-bg.png");
  background-attachment: scroll, fixed;
  background-position: center, center top;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, cover;
}

.dcp-page.dcp-single-page {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)),
    url("../img/asuxia-visual-fixed-bg.png");
}

.dcp-trust-header,
.dcp-trust-hero,
.dcp-conv-header,
.dcp-conv-hero,
.dcp-info-header,
.dcp-info-hero,
.dcp-simple-header,
.dcp-simple-hero,
.dcp-muted,
.dcp-conv-services,
.dcp-visual-gallery,
.dcp-final-cta--trust,
.dcp-final-cta--conv,
.dcp-final-cta--info,
.dcp-final-cta--visual,
.dcp-final-cta--simple {
  background: #f5f6f8;
}

.dcp-band {
  border-bottom: 1px solid #d7dce2;
}

.dcp-band.dcp-visual-header {
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(5, 10, 22, 0.54) 0%, rgba(5, 10, 22, 0.22) 44%, rgba(5, 10, 22, 0) 100%);
}

.dcp-visual-header .dcp-nav {
  border: 0;
}

.dcp-card,
.dcp-case,
.dcp-step-grid > div,
.dcp-mini-form,
.dcp-news a,
.dcp-faq details,
.dcp-side-menu,
.dcp-table,
.dcp-check-list li {
  border: 1px solid #c8ced6;
  box-shadow: none;
}

.dcp-card,
.dcp-case,
.dcp-step-grid > div,
.dcp-mini-form,
.dcp-news a,
.dcp-faq details,
.dcp-side-menu,
.dcp-table,
.dcp-check-list li {
  background: #fff;
}

.dcp-btn,
.dcp-link-btn,
.dcp-btn--trust,
.dcp-btn--conv,
.dcp-btn--info,
.dcp-btn--visual,
.dcp-btn--simple {
  border: 1px solid #5f6b7a;
  background: #eef1f4;
  color: #243041;
  box-shadow: none;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.dcp-btn:hover,
.dcp-btn:focus-visible,
.dcp-link-btn:hover,
.dcp-link-btn:focus-visible {
  border-color: #243041;
  background: #243041;
  color: #fff;
  transform: translateY(-2px);
}

.dcp-kicker,
.dcp-section__head p,
.dcp-case span,
.dcp-news time,
.dcp-step-grid strong,
.dcp-side-menu a,
.dcp-conv-hero h1 {
  color: #5f6b7a;
}

.dcp-proof,
.dcp-table th {
  background: #303946;
  color: #fff;
}

.dcp-media-placeholder {
  display: grid;
  min-height: 240px;
  place-items: center;
  border: 1px dashed #8b96a5;
  border-radius: 3px;
  background:
    linear-gradient(135deg, transparent 49%, #d3d8df 50%, transparent 51%),
    linear-gradient(45deg, transparent 49%, #d3d8df 50%, transparent 51%),
    #eef1f4;
  color: #5f6b7a;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.dcp-media-placeholder--hero {
  aspect-ratio: 4 / 3;
}

.dcp-media-placeholder--wide {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border-radius: 0;
}

.dcp-visual-hero {
  color: #fff;
}

.dcp-visual-hero::after {
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.64), rgba(17, 24, 39, 0.12) 58%, rgba(17, 24, 39, 0));
}

.dcp-pattern--visual {
  background: transparent;
}

.dcp-pattern--visual .dcp-band {
  border-bottom: 0;
}

.dcp-pattern--visual .dcp-section,
.dcp-pattern--visual .dcp-visual-focus,
.dcp-pattern--visual .dcp-category-overview,
.dcp-pattern--visual .dcp-visual-gallery,
.dcp-pattern--visual .dcp-muted,
.dcp-pattern--visual .dcp-final-cta--visual {
  background: transparent;
}

.dcp-page .dcp-section,
.dcp-page .dcp-visual-focus,
.dcp-page .dcp-category-overview,
.dcp-page .dcp-visual-gallery,
.dcp-page .dcp-muted,
.dcp-page .dcp-archive-categories,
.dcp-page .dcp-single-body,
.dcp-page .dcp-single-related,
.dcp-page .dcp-final-cta--visual {
  background: transparent;
}

.dcp-pattern--visual .dcp-section__head p,
.dcp-pattern--visual .dcp-kicker {
  color: #647186;
}

.dcp-pattern--visual .dcp-section__head h2,
.dcp-pattern--visual .dcp-visual-feature h2,
.dcp-pattern--visual .dcp-final-cta h2 {
  color: #1e2a3c;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.dcp-pattern--visual .dcp-feature-image,
.dcp-pattern--visual .dcp-area-image,
.dcp-pattern--visual .dcp-article-image {
  box-shadow: 0 20px 46px rgba(31, 43, 62, 0.14);
}

.dcp-pattern--visual .dcp-feature-image {
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.dcp-pattern--visual .dcp-category-overview__item,
.dcp-pattern--visual .dcp-article-card {
  border-color: rgba(137, 150, 168, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.74)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(31, 43, 62, 0.08);
}

.dcp-pattern--visual .dcp-category-overview__item:hover,
.dcp-pattern--visual .dcp-category-overview__item:focus-visible,
.dcp-pattern--visual .dcp-article-card:hover,
.dcp-pattern--visual .dcp-article-card:focus-within {
  border-color: rgba(54, 73, 96, 0.46);
  box-shadow: 0 22px 52px rgba(31, 43, 62, 0.14);
}

.dcp-pattern--visual .dcp-category-overview__text span,
.dcp-pattern--visual .dcp-visual-tile h3,
.dcp-pattern--visual .dcp-article-card h3,
.dcp-pattern--visual .dcp-visual-journal strong {
  color: #203047;
}

.dcp-pattern--visual .dcp-category-overview__text small,
.dcp-pattern--visual .dcp-visual-tile p,
.dcp-pattern--visual .dcp-article-card p {
  color: #526173;
}

.dcp-pattern--visual .dcp-visual-meta span {
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 20px rgba(31, 43, 62, 0.06);
}

.dcp-pattern--visual .dcp-media-placeholder {
  border-color: rgba(101, 116, 139, 0.32);
  background:
    linear-gradient(135deg, transparent 49%, rgba(148, 163, 184, 0.36) 50%, transparent 51%),
    linear-gradient(45deg, transparent 49%, rgba(148, 163, 184, 0.36) 50%, transparent 51%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(230, 237, 244, 0.42));
  color: #6a788b;
}

.dcp-pattern--visual .dcp-final-cta--visual {
  color: #203047;
  text-align: center;
}

.dcp-pattern--visual .dcp-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .dcp-page {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
      url("../img/asuxia-visual-mobile-bg.png");
    background-attachment: scroll, scroll;
    background-position: center top, center top;
    background-repeat: no-repeat, repeat-y;
    background-size: auto, 100% auto;
  }

  .dcp-page.dcp-single-page {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
      url("../img/asuxia-visual-mobile-bg.png");
  }

  .dcp-container {
    width: calc(100% - 28px);
  }

  .dcp-nav {
    align-items: center;
    flex-direction: row;
    min-height: 64px;
  }

  .dcp-nav__links {
    display: none;
  }

  .dcp-logo--image img {
    width: 126px;
  }

  .dcp-mobile-menu-toggle,
  .dcp-mobile-menu {
    display: flex;
  }

  .dcp-mobile-menu {
    display: block;
  }

  .dcp-footer {
    padding-top: 46px;
  }

  .dcp-footer__main,
  .dcp-footer__nav {
    grid-template-columns: 1fr;
  }

  .dcp-footer__main {
    gap: 34px;
  }

  .dcp-footer__nav {
    gap: 24px;
  }

  .dcp-footer__bottom {
    flex-direction: column;
    gap: 8px;
  }

  .dcp-final-cta__title span {
    display: block;
  }

  .dcp-final-cta__title span + span::before {
    content: "";
  }

  .dcp-hero,
  .dcp-section,
  .dcp-info-hero {
    padding: 54px 0;
  }

  .dcp-hero__grid,
  .dcp-conv-grid,
  .dcp-two-col,
  .dcp-info-layout,
	  .dcp-visual-feature,
	  .dcp-single-hero__grid,
	  .dcp-single-layout,
	  .dcp-card-grid,
  .dcp-case-grid,
  .dcp-step-grid,
  .dcp-proof__grid,
  .dcp-gallery,
  .dcp-article-grid,
  .dcp-category-overview__grid,
  .dcp-category-link-grid,
  .dcp-visual-journal {
    grid-template-columns: 1fr;
  }

  .dcp-side-menu {
    position: static;
  }

  .dcp-news a {
    display: grid;
    gap: 4px;
  }

  .dcp-visual-hero {
    min-height: 640px;
  }

  .dcp-visual-hero__slide--01 {
    background-image: url("../img/hero-tokyo-living-mobile.webp");
  }

  .dcp-visual-hero__slide--02 {
    background-image: url("../img/hero-tokyo-living-02-mobile.webp");
  }

  .dcp-visual-hero__slide--04 {
    background-image: url("../img/hero-tokyo-living-04-mobile.webp");
  }

  .dcp-visual-copy {
    padding-bottom: 54px;
  }

  .dcp-hero-controls {
    right: 14px;
    bottom: 18px;
    gap: 8px;
    padding: 9px 10px;
  }

  .dcp-hero-control {
    width: 24px;
  }

  .dcp-hero-control.is-active {
    width: 38px;
  }

	  .dcp-gallery img,
	  .dcp-media-placeholder {
	    height: 240px;
	  }

	  .dcp-single-hero {
	    min-height: auto;
	    padding: 214px 0 56px;
	  }

	  .dcp-single-hero__image {
	    max-width: 560px;
	  }

	  .dcp-single-sidebar {
	    position: static;
	  }
}
