:root {
  --gold-main: #907d38;
  --gold-sub: #c9c0a1;
  --red: var(--gold-main);
  --red-dark: #75652c;
  --black: #242424;
  --text: #343434;
  --muted: #767676;
  --line: #e9e9e9;
  --soft: #f7f7f7;
  --white: #ffffff;
  --container: 1120px;
  --narrow: 1280px;
  --header-height: 70px;
  --radius-xl: 54px;
  --radius-lg: 22px;
  --radius-md: 12px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

html.ct-loader-pending,
html.ct-loader-active { overflow: hidden; }
.ct-site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 24px;
  color: #36363c;
  background: #fff;
  opacity: 1;
  filter: blur(0);
  pointer-events: none;
  transition: opacity .7s ease, filter .7s ease;
}
html.ct-loader-pending .ct-site-loader { display: grid; }
.ct-site-loader__panel {
  display: grid;
  justify-items: center;
  text-align: center;
  opacity: 0;
  filter: blur(36px);
  transform: translateY(36px);
  transition: filter .55s ease, opacity .75s ease, transform 1.2s cubic-bezier(.215, .61, .355, 1);
}
.ct-site-loader.is-visible .ct-site-loader__panel {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.ct-site-loader.is-leaving .ct-site-loader__panel {
  opacity: 0;
  filter: blur(36px);
  transform: translateY(-28px);
  transition-duration: .65s, .7s, .9s;
}
.ct-site-loader.is-done { opacity: 0; filter: blur(22px); }
.ct-site-loader__mission {
  margin: 0;
  font-family: "Shippori Mincho B1", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(30px, 7.15vw, 104px);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: .014em;
  white-space: nowrap;
}
.ct-site-loader__english {
  margin: -2px 0 0;
  font-family: "Cormorant Garamond", Garamond, "Times New Roman", serif;
  font-size: clamp(22px, 2.5vw, 38px);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: .045em;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.container.narrow { width: min(calc(100% - 48px), var(--narrow)); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 28px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.creatree-design.front-page .site-header {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.creatree-design.front-page .site-header.is-scrolled,
.creatree-design.front-page .site-header.is-menu-open {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; font-weight: 750; letter-spacing: -0.02em; }
.brand-mark {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}
.brand-name { font-size: 20px; }
.global-nav { display: flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 650; }
.global-nav > a:not(.nav-download):not(.nav-contact) { position: relative; }
.global-nav > a:not(.nav-download):not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--red);
  transition: right 0.25s ease;
}
.global-nav > a:hover::after { right: 0; }
.nav-download, .nav-contact {
  width: 160px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
}
.nav-download { border: 1px solid #d8d8d8; }
.global-nav > a.nav-contact,
.global-nav > a.nav-contact:visited,
.global-nav > a.nav-contact:hover,
.global-nav > a.nav-contact:focus-visible { color: var(--white); background: var(--red); }
.ct-header-action-icon { display: inline-grid; flex: 0 0 18px; width: 18px; height: 18px; place-items: center; }
.ct-header-action-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.menu-button, .mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: max(650px, calc(100svh - var(--header-height)));
  margin-top: var(--header-height);
  overflow: hidden;
  background: #eef2f4;
}
.creatree-design.front-page .hero {
  min-height: max(650px, 100svh);
  margin-top: 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  opacity: 1;
  clip-path: inset(0);
  transform: scale(1);
  transform-origin: center;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.06), transparent 48%);
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .75s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-copy {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: min(800px, calc(100% - 300px));
  padding: 25px 34px 28px 28px;
  border-radius: 0 52px 0 0;
  background: var(--white);
  clip-path: inset(0);
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: .035em;
}
.hero-copy h1 span {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.hero-description {
  max-width: 700px;
  margin: 8px 0 0 !important;
  color: #666;
  font-size: 13px;
  line-height: 1.9;
  opacity: 1;
  transform: translateY(0);
}
.hero-actions {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 16px;
}
.hero-action {
  width: 120px;
  height: 120px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow);
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

html.ct-hero-pending .creatree-design.front-page .hero-media {
  opacity: 0;
  transform: scale(1.045);
}
html.ct-hero-pending .creatree-design.front-page .hero-copy { clip-path: inset(0 100% 0 0); }
html.ct-hero-pending .creatree-design.front-page .hero-copy h1 span,
html.ct-hero-pending .creatree-design.front-page .hero-description {
  opacity: 0;
  transform: translateY(24px);
}
html.ct-hero-pending .creatree-design.front-page .hero-action {
  opacity: 0;
  transform: translateY(24px) scale(.96);
}

.creatree-design.front-page .hero.is-hero-ready .hero-media {
  animation: ct-hero-media-in 1.65s cubic-bezier(.22, 1, .36, 1) .05s both;
}
.creatree-design.front-page .hero.is-hero-ready .hero-copy {
  animation: ct-hero-panel-in .85s cubic-bezier(.77, 0, .18, 1) .42s both;
}
.creatree-design.front-page .hero.is-hero-ready .hero-copy h1 span {
  animation: ct-hero-content-in .8s cubic-bezier(.22, 1, .36, 1) .72s both;
}
.creatree-design.front-page .hero.is-hero-ready .hero-copy h1 span:nth-child(2) { animation-delay: .84s; }
.creatree-design.front-page .hero.is-hero-ready .hero-description {
  animation: ct-hero-content-in .75s cubic-bezier(.22, 1, .36, 1) .96s both;
}
.creatree-design.front-page .hero.is-hero-ready .hero-action {
  animation: ct-hero-action-in .8s cubic-bezier(.22, 1, .36, 1) 1.02s both;
}
.creatree-design.front-page .hero.is-hero-ready .hero-action:nth-child(2) { animation-delay: 1.14s; }

.creatree-design.front-page .hero.is-hero-settled .hero-media,
.creatree-design.front-page .hero.is-hero-settled .hero-copy,
.creatree-design.front-page .hero.is-hero-settled .hero-copy h1 span,
.creatree-design.front-page .hero.is-hero-settled .hero-description,
.creatree-design.front-page .hero.is-hero-settled .hero-action {
  animation: none;
  opacity: 1;
  transform: none;
}
.creatree-design.front-page .hero.is-hero-settled .hero-copy { clip-path: inset(0); }

@keyframes ct-hero-media-in {
  from { opacity: 0; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes ct-hero-panel-in {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0); }
}
@keyframes ct-hero-content-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ct-hero-action-in {
  from { opacity: 0; transform: translateY(24px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-action-light { border-color: var(--white); background: var(--white); }
.hero-action-red { border-color: var(--red); color: var(--white); background: var(--red); }
.hero-action-light:hover,
.hero-action-light:focus-visible {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 60px rgba(144, 125, 56, .24);
}
.hero-action-red:hover,
.hero-action-red:focus-visible {
  border-color: var(--red);
  color: var(--red);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .12);
}
.hero-action:focus-visible {
  outline: 3px solid rgba(144, 125, 56, .4);
  outline-offset: 3px;
}
.action-icon { width: 31px; height: 31px; display: grid; place-items: center; }
.action-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.section { padding: 95px 0; }
.pattern-dots {
  background-color: var(--white);
  background-image: radial-gradient(#ededed 0.7px, transparent 0.7px);
  background-size: 7px 7px;
}
.section-heading { margin-bottom: 44px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(25px, 3.2vw, 38px);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 210px 1fr 48px;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.service-thumb { overflow: hidden; border-radius: var(--radius-md); }
.service-thumb img { aspect-ratio: 16 / 9; object-fit: cover; transition: transform 0.5s ease; }
.service-row:hover .service-thumb img { transform: scale(1.04); }
.service-body h3 { margin: 0 0 8px; font-size: 22px; font-weight: 500; }
.service-body p { margin: 0 0 10px; font-size: 12px; color: #555; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags span { padding: 3px 8px; background: #f2f2f2; font-size: 9px; color: #6a6a6a; }
.circle-link, .news-arrow, .contact-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.circle-link:hover, .news-row:hover .news-arrow, .news-row:focus-visible .news-arrow, .contact-card:hover .contact-arrow {
  transform: translateX(4px);
  background: var(--red-dark);
}

.client-logo-section { padding: 72px 0 78px; overflow: hidden; background: #f3f1e9; }
.client-logo-section .section-heading { margin-bottom: 30px; }
.client-logo-section .section-heading h2 { font-size: clamp(25px, 2.7vw, 34px); }
.client-logo-marquee { position: relative; overflow: hidden; border-top: 1px solid #dcd7c7; border-bottom: 1px solid #dcd7c7; mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent); }
.client-logo-marquee:focus-visible { outline: 3px solid rgba(144, 125, 56, .45); outline-offset: 4px; }
.client-logo-track { display: flex; width: max-content; animation: client-logo-marquee 58s linear infinite; will-change: transform; }
.client-logo-list { display: flex; flex: none; gap: 16px; margin: 0; padding: 16px 16px 16px 0; list-style: none; }
.client-logo-item { width: clamp(158px, 14vw, 194px); min-height: 110px; display: grid; flex: none; place-items: center; padding: 20px 18px; border: 1px solid #ded9c9; border-radius: 12px; background: rgba(255, 255, 255, .76); }
.client-logo-image { width: 100%; max-width: 148px; height: 56px; object-fit: contain; filter: none; opacity: 1; transition: transform .35s ease; }
.client-logo-item:hover .client-logo-image { transform: scale(1.04); }
@keyframes client-logo-marquee { to { transform: translateX(-50%); } }

.rounded-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.works-section { background: var(--soft); }
.heading-with-link { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.heading-with-link .section-heading { margin-bottom: 36px; }
.pill-link {
  min-width: 142px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 7px 0 22px;
  margin-bottom: 36px;
  border: 1px solid #e5e5e5;
  border-radius: 99px;
  background: var(--white);
  font-size: 10px;
  letter-spacing: 0.05em;
}
.pill-link span {
  width: 28px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
}
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card { overflow: hidden; border-radius: 8px; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,.025); }
.work-card > img { aspect-ratio: 1.55; object-fit: cover; }
.work-card-body { padding: 20px 18px 18px; }
.work-card h3 { min-height: 58px; margin: 0 0 12px; font-size: 17px; line-height: 1.55; font-weight: 500; }
.work-card p { min-height: 70px; margin: 0 0 20px; font-size: 11px; color: #666; }
.work-company { padding-top: 12px; border-top: 1px solid var(--line); font-size: 9px; color: #777; }
.mini-logo { color: #93c75c; }

.top-media-section { color: #fff; background: #292929; }
.top-media-section .section-heading h2 { color: #fff; }
.top-media-section .pill-link { border-color: #555; color: #fff; background: transparent; }
.top-content-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.top-content-row > .empty-message { grid-column: 1 / -1; min-width: 100%; margin: 0; }
.top-content-card { min-width: 0; overflow: hidden; border: 1px solid #e8e6dd; border-radius: 12px; background: #fff; box-shadow: 0 10px 36px rgba(42, 38, 24, .055); transition: border-color .3s ease, box-shadow .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1); }
.top-content-card:hover { border-color: rgba(144, 125, 56, .42); box-shadow: 0 18px 42px rgba(42, 38, 24, .11); transform: translateY(-6px); }
.top-content-card > a { display: flex; flex-direction: column; height: 100%; }
.top-content-card > a:focus-visible { outline: 3px solid rgba(144, 125, 56, .5); outline-offset: -3px; }
.top-content-card__image { overflow: hidden; background: #ecebe6; }
.top-content-card__image img { aspect-ratio: 16 / 10; object-fit: cover; transition: transform .55s cubic-bezier(.22, 1, .36, 1); }
.top-content-card:hover .top-content-card__image img { transform: scale(1.045); }
.top-content-card__body { display: flex; flex: 1; flex-direction: column; padding: 22px 22px 20px; }
.top-content-card__meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 13px; color: #898980; font-size: 10px; }
.top-content-card__meta span { padding: 2px 7px; border: 1px solid #d8d5c9; border-radius: 999px; }
.top-content-card h3 { margin: 0 0 24px; font-size: 17px; line-height: 1.65; font-weight: 600; }
.top-content-card__more { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 15px; border-top: 1px solid #e8e6dd; color: #787871; font-size: 10px; letter-spacing: .08em; }
.top-content-card__more i { display: grid; width: 28px; aspect-ratio: 1; place-items: center; border-radius: 50%; color: #fff; background: var(--red); font-style: normal; transition: transform .25s ease; }
.top-content-card:hover .top-content-card__more i { transform: translateX(3px); }
.top-media-section .top-content-card { border-color: #484848; background: #303030; box-shadow: none; }
.top-media-section .top-content-card:hover { border-color: rgba(201, 192, 161, .7); box-shadow: 0 20px 48px rgba(0, 0, 0, .22); }
.top-media-section .top-content-card__image { background: #393939; }
.top-media-section .top-content-card__meta { color: #aaa; }
.top-media-section .top-content-card__meta span { border-color: #5a5a5a; }
.top-media-section .top-content-card__more { border-color: #484848; color: #b5b5b5; }
.top-media-section .empty-message { color: #aaa; }
.top-guide-section { background-color: #fff; }

.technology-logo-section { position: relative; overflow: hidden; padding: 92px 0; color: #2e2d29; background: #f3f1e9; }
.technology-logo-section::before { content: none; }
.technology-logo-frame { position: relative; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.technology-logo-heading { max-width: 720px; margin-bottom: 38px; }
.technology-logo-heading .eyebrow { color: var(--gold-sub); opacity: 1; }
.technology-logo-heading h2 { margin: 0; color: #2e2d29; font-size: clamp(28px, 3.6vw, 46px); font-weight: 600; letter-spacing: -.02em; }
.technology-logo-heading > p:last-child { margin: 16px 0 0; color: #5f5d56; font-size: 13px; line-height: 1.9; }
.technology-logo-carousel { position: relative; }
.technology-logo-viewport { overflow: hidden; padding: 24px 16px; background: #fff; }
.technology-logo-track { display: block; }
.technology-logo-grid { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; border: 0; background: #fff; list-style: none; }
.ct-js .technology-logo-track { display: grid; }
.ct-js .technology-logo-grid { grid-area: 1 / 1; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .55s ease, visibility 0s linear .55s; will-change: opacity; }
.ct-js .technology-logo-grid[aria-hidden="false"] { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity .55s ease, visibility 0s; }
.technology-logo-item { min-width: 0; min-height: 112px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; padding: 18px 10px 14px; border: 0; border-radius: 0; color: #3d3b34; background: transparent; box-shadow: none; }
.technology-logo-item img { width: auto; max-width: min(76px, 72%); height: 44px; object-fit: contain; }
.technology-logo-item span { overflow: hidden; max-width: 100%; font-family: "Helvetica Neue", Arial, sans-serif; font-size: 9px; font-weight: 650; letter-spacing: .02em; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.technology-logo-controls { display: none; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; }
.ct-js .technology-logo-controls { display: flex; }
.technology-logo-control { width: 38px; height: 38px; display: grid; padding: 0; border: 1px solid #c9c3af; border-radius: 50%; place-items: center; color: #5a564b; background: #fff; cursor: pointer; transition: border-color .25s ease, color .25s ease, background-color .25s ease; }
.technology-logo-control:hover,
.technology-logo-control:focus-visible { border-color: var(--gold-main); color: #fff; background: var(--gold-main); }
.technology-logo-control:focus-visible { outline: 3px solid rgba(144, 125, 56, .35); outline-offset: 3px; }

.ct-top-showcase-section { background: #fff; }
.ct-top-showcase-head { align-items: flex-start; }
.heading-with-link .ct-top-showcase-heading { margin-bottom: 44px; }
.ct-top-showcase-heading__en {
  margin: 0 0 9px;
  color: var(--gold-main);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(48px, 6.6vw, 84px);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: .92;
}
.ct-top-showcase-heading h2 { margin: 0; font-size: 17px; font-weight: 650; letter-spacing: .04em; }
.ct-top-showcase-head .pill-link { margin-top: 21px; }
.ct-top-showcase-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(22px, 3vw, 42px); }
.ct-top-showcase-track > .empty-message { grid-column: 1 / -1; min-width: 100%; margin: 0; }
.ct-top-showcase-card { min-width: 0; }
.ct-top-showcase-card > a { display: flex; height: 100%; flex-direction: column; color: inherit; }
.ct-top-showcase-card > a:focus-visible { outline: 3px solid rgba(144, 125, 56, .45); outline-offset: 5px; border-radius: 12px; }
.ct-top-showcase-card__visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #ecebe6;
}
.ct-top-showcase-card__visual > img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22, 1, .36, 1); }
.ct-top-showcase-card:hover .ct-top-showcase-card__visual > img { transform: scale(1.045); }
.ct-top-showcase-card__body { display: flex; flex: 1; flex-direction: column; padding-top: 18px; }
.ct-top-showcase-card__meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 9px; margin-bottom: 11px; color: #85857e; font-size: 10px; }
.ct-top-showcase-card__meta span,
.ct-top-case-card__company span { padding: 3px 10px; border: 1px solid #d6d3c7; border-radius: 999px; font-size: 9px; }
.ct-top-showcase-card h3 { margin: 0 0 12px; font-size: 17px; font-weight: 650; line-height: 1.65; }
.ct-top-showcase-card__body > p { display: -webkit-box; margin: 0 0 17px; overflow: hidden; color: #72726c; font-size: 11px; line-height: 1.75; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.ct-top-showcase-card__more { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid #e5e3da; color: #686862; font-size: 10px; letter-spacing: .06em; }
.ct-top-showcase-card__more i { display: grid; width: 30px; aspect-ratio: 1; place-items: center; border: 1px solid var(--gold-main); border-radius: 50%; color: var(--gold-main); font-style: normal; transition: color .35s ease, background-color .35s ease; }
.ct-top-showcase-card:hover .ct-top-showcase-card__more i { color: #fff; background: var(--gold-main); }
.ct-top-case-card__visual { display: grid; place-items: center; isolation: isolate; background: linear-gradient(135deg, #edf1f2, #f8f7f2 56%, #e9e6d9); }
.ct-top-case-card__visual::before,
.ct-top-case-card__visual::after { content: ""; position: absolute; z-index: -1; border: 1px solid rgba(144, 125, 56, .2); border-radius: 50%; transition: transform .8s cubic-bezier(.22, 1, .36, 1); }
.ct-top-case-card__visual::before { width: 52%; aspect-ratio: 1; top: -24%; right: -12%; }
.ct-top-case-card__visual::after { width: 34%; aspect-ratio: 1; left: -11%; bottom: -20%; }
.ct-top-case-card:hover .ct-top-case-card__visual::before { transform: translate(-8px, 8px) scale(1.06); }
.ct-top-case-card:hover .ct-top-case-card__visual::after { transform: translate(8px, -5px) scale(1.1); }
.ct-top-case-card__visual figure { width: 38%; aspect-ratio: 1; display: grid; place-items: center; margin: 0; padding: 17px; border: 1px solid rgba(144, 125, 56, .2); border-radius: 10px; background: rgba(255, 255, 255, .92); box-shadow: 0 14px 34px rgba(42, 38, 24, .08); transition: transform .7s cubic-bezier(.22, 1, .36, 1); }
.ct-top-case-card__visual figure img { width: 100%; height: 100%; object-fit: contain; }
.ct-top-case-card:hover .ct-top-case-card__visual figure { transform: scale(1.045); }
.ct-top-case-card__number { position: absolute; top: 15px; left: 17px; color: rgba(93, 81, 36, .6); font-family: "Helvetica Neue", Arial, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.ct-top-case-card__company { min-height: 31px; display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.ct-top-case-card__company strong { min-width: 0; overflow: hidden; font-size: 13px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.ct-top-case-card__company span { flex: 0 0 auto; }

.news-section { background-color: var(--white); }
.news-list { display: grid; gap: 0; }
.news-row {
  display: grid;
  grid-template-columns: 180px 1fr 42px;
  gap: 24px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  transition: background-color .55s cubic-bezier(.22, 1, .36, 1);
}
.news-row:hover { background: #f6f4ec; }
.news-row:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; background: #f6f4ec; }
.news-image { display: block; overflow: hidden; border-radius: 6px; background: #ecebe6; }
.news-image img { aspect-ratio: 16 / 10; object-fit: cover; transition: transform .7s cubic-bezier(.22, 1, .36, 1); }
.news-row:hover .news-image img,
.news-row:focus-visible .news-image img { transform: scale(1.045); }
.news-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 5px; font-size: 9px; color: #777; }
.news-meta span { padding: 2px 8px; border: 1px solid #ddd; }
.news-body h3 { margin: 0 0 6px; font-size: 16px; font-weight: 500; }
.news-body p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #777;
  font-size: 11px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-arrow { width: 28px; font-size: 12px; pointer-events: none; }

.company-section { background: var(--soft); }
.company-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 44px;
  margin: 0 0 58px;
}
.company-table > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid #e1e1e1;
  font-size: 12px;
}
.company-table dt { color: #555; font-weight: 600; }
.company-table dd { margin: 0; color: #444; }
.company-table dd ul { margin: 0; padding-left: 1.25em; }
.company-table dd a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.company-table .company-wide { grid-column: 1 / -1; align-items: start; }
.company-table .company-wide dd ul { display: grid; row-gap: 12px; line-height: 1.8; }

.contact-section { padding: 70px 0 80px; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.contact-section .container.narrow { width: min(calc(100% - 48px), 1040px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-card {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 16px;
  min-height: 130px;
  padding: 26px 30px;
}
.contact-card + .contact-card { border-left: 1px solid var(--line); }
.contact-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--gold-main);
}
.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card h2 { margin: 0 0 4px; font-size: 23px; font-weight: 550; }
.contact-card p { margin: 0; font-size: 13px; line-height: 1.75; color: #6c6c6c; }
.contact-arrow { width: 28px; font-size: 12px; }

.site-footer {
  padding: 58px 0 26px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  color: var(--white);
  background: #262626;
}
.footer-inner { display: flex; justify-content: space-between; gap: clamp(82px, 8vw, 128px); padding-bottom: 44px; }
.footer-brand-block { flex: 0 0 238px; }
.brand-footer { color: var(--white); }
.brand-footer .brand-logo { filter: brightness(0) invert(1); }
.footer-brand-block p { margin: 28px 0 0; font-size: 11px; line-height: 1.85; color: #aaa; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, max-content);
  gap: 14px 24px;
  align-content: start;
  font-size: 10px;
}
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid #777; color: #a9a9a9; }
.footer-bottom small { font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease var(--ct-reveal-delay, 0ms), transform .65s ease var(--ct-reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.is-visible.is-reveal-settled { transition: none; opacity: 1; transform: none; }
.news-row.reveal { transition: opacity .65s ease var(--ct-reveal-delay, 0ms), transform .65s ease var(--ct-reveal-delay, 0ms), background-color .55s cubic-bezier(.22, 1, .36, 1); }

@media (max-width: 980px) {
  :root { --header-height: 64px; }
  .global-nav { display: none; }
  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: #f3f3f3;
    cursor: pointer;
  }
  .menu-button span { width: 18px; height: 1px; background: #222; transition: .25s; }
  .menu-button.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button.is-open span:nth-child(2) { opacity: 0; }
  .menu-button.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    z-index: 999;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 20px 30px rgba(0,0,0,.08);
    transition: max-height .35s ease;
  }
  .mobile-menu.is-open { max-height: calc(100dvh - var(--header-height)); overflow-y: auto; overscroll-behavior: contain; }
  .mobile-menu a { padding: 15px 28px; border-bottom: 1px solid var(--line); font-size: 13px; }
  .hero { min-height: max(610px, calc(100svh - var(--header-height))); }
  .creatree-design.front-page .hero { min-height: max(610px, 100svh); }
  .hero-copy { width: min(680px, calc(100% - 220px)); }
  .hero-actions { right: 14px; gap: 10px; }
  .hero-action { width: 90px; height: 90px; }
  .service-row { grid-template-columns: 170px 1fr 42px; gap: 18px; }
	.ct-top-showcase-track { grid-template-columns: none; grid-auto-columns: minmax(300px, 44vw); grid-auto-flow: column; overflow-x: auto; padding: 0 2px 18px; scroll-snap-type: x proximity; scrollbar-color: var(--gold-sub) transparent; scrollbar-width: thin; }
	.ct-top-showcase-card { scroll-snap-align: start; }
	.top-content-row { grid-template-columns: none; grid-auto-columns: minmax(280px, 44vw); grid-auto-flow: column; overflow-x: auto; padding: 0 2px 14px; scroll-snap-type: x proximity; scrollbar-color: var(--gold-sub) transparent; scrollbar-width: thin; }
	.top-content-card { scroll-snap-align: start; }
  .footer-nav { grid-template-columns: repeat(3, max-content); }
}

@media (max-width: 720px) {
  .container, .container.narrow { width: min(calc(100% - 32px), var(--narrow)); }
  .site-header { padding-inline: 16px; }
  .brand-name { font-size: 17px; }
  .ct-site-loader { padding-inline: 12px; }
  .ct-site-loader__mission { font-size: clamp(28px, 7.7vw, 36px); }
  .ct-site-loader__english { font-size: clamp(19px, 5.4vw, 25px); }
  .hero { min-height: 660px; }
  .hero-media { inset: 0; }
  .hero-copy {
    left: 0;
    bottom: 104px;
    width: calc(100% - 18px);
    padding: 22px 18px 15px;
    border-radius: 0 36px 0 0;
  }
  .hero-copy h1 { font-size: clamp(30px, 9vw, 40px); line-height: 1.35; }
  .hero-description { max-width: min(100%, 560px); margin-top: 8px !important; font-size: 11px; line-height: 1.75; }
  .hero-actions { right: 12px; bottom: 12px; gap: 8px; }
  .hero-action { width: 82px; height: 82px; border-radius: 14px; gap: 6px; font-size: 9px; }
  .action-icon { width: 24px; height: 24px; }
  .section { padding: 70px 0; }
	.client-logo-section { padding: 58px 0 62px; }
	.client-logo-item { width: 148px; min-height: 94px; padding: 16px 13px; }
	.client-logo-image { max-width: 116px; height: 44px; }
	.technology-logo-section { padding: 64px 0; }
	.technology-logo-frame { padding: 0; border-radius: 0; }
	.technology-logo-heading { margin-bottom: 28px; }
	.technology-logo-heading h2 { font-size: 28px; }
	.technology-logo-heading > p:last-child { font-size: 11px; }
	.technology-logo-viewport { padding: 18px 8px; }
	.technology-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
	.technology-logo-item { min-height: 94px; gap: 9px; padding: 14px 5px 11px; }
	.technology-logo-item img { height: 38px; }
	.technology-logo-controls { gap: 8px; margin-top: 15px; }
	.technology-logo-control { width: 36px; height: 36px; }
	.heading-with-link .ct-top-showcase-heading { margin-bottom: 34px; }
	.ct-top-showcase-heading__en { font-size: clamp(43px, 14vw, 58px); }
	.ct-top-showcase-heading h2 { font-size: 15px; }
	.ct-top-showcase-head .pill-link { margin-top: 9px; }
	.ct-top-showcase-track { grid-auto-columns: minmax(270px, 82vw); gap: 18px; margin-right: -16px; padding-right: 16px; }
	.ct-top-showcase-card h3 { font-size: 16px; }
  .rounded-section, .contact-section, .site-footer { border-radius: 34px 34px 0 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2 { font-size: 26px; }
  .service-list { border-top: 0; }
  .service-row {
    grid-template-columns: 112px 1fr 30px;
    gap: 14px;
    padding: 16px 0;
  }
  .service-body h3 { font-size: 16px; }
  .service-body p { display: none; }
  .tags { gap: 4px; }
  .tags span { font-size: 7px; padding: 2px 5px; }
  .circle-link { width: 30px; font-size: 13px; }
  .heading-with-link { align-items: flex-start; }
  .pill-link { min-width: 104px; height: 36px; padding-left: 14px; }
  .works-grid { grid-template-columns: 1fr; }
	.top-content-row { grid-auto-columns: minmax(260px, 82vw); gap: 16px; margin-right: -16px; padding-right: 16px; }
	.top-content-card__body { padding: 19px 18px 18px; }
	.top-content-card h3 { font-size: 16px; }
  .work-card h3, .work-card p { min-height: auto; }
  .news-row { grid-template-columns: 100px 1fr 28px; gap: 12px; padding-inline: 12px; }
  .news-body p { display: none; }
  .news-body h3 { font-size: 14px; }
  .company-table { grid-template-columns: 1fr; }
  .company-table > div, .company-table .company-wide { grid-column: auto; grid-template-columns: 90px 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-card { padding-inline: 10px; }
  .contact-card + .contact-card { border-left: 0; border-top: 1px solid var(--line); }
  .footer-inner { flex-direction: column; gap: 48px; }
  .footer-brand-block { flex-basis: auto; }
  .footer-nav { grid-template-columns: repeat(2, max-content); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
	  .reveal { opacity: 1; transform: none; }
	  .creatree-design.front-page .hero-media,
	  .creatree-design.front-page .hero-copy,
	  .creatree-design.front-page .hero-copy h1 span,
	  .creatree-design.front-page .hero-description,
	  .creatree-design.front-page .hero-action {
		opacity: 1;
		clip-path: none;
		transform: none;
	  }
  .hero-slide {
    transition: none;
  }
  .ct-site-loader { display: none !important; }
}

/* =========================================================
   WordPress / SWELL child-theme integration
========================================================= */
body.creatree-design {
  min-width: 0;
  overflow-x: clip;
}
.creatree-design .side-index,
.creatree-design [aria-label="セクションナビゲーション"] { display: none !important; }
body.creatree-design.admin-bar .site-header { top: 32px; }
body.creatree-design.admin-bar .mobile-menu { margin-top: 32px; }
.brand-logo { display: block; flex: 0 0 auto; width: min(204px, 45vw); max-width: none; height: auto; max-height: 40px; object-fit: contain; }
.global-nav-list,
.mobile-nav-list,
.footer-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav-list { display: flex; align-items: center; gap: 18px; }
.global-nav-list > li { height: var(--header-height); display: flex; align-items: center; }
.global-nav-list > li > a,
.global-nav-list > li > .ct-nav-trigger { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.global-nav-list > li > .ct-nav-trigger { padding: 0; border: 0; color: inherit; background: transparent; cursor: default; font: inherit; }
.global-nav-list > li > a::after,
.global-nav-list > li > .ct-nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--red);
  transition: right .25s ease;
}
.global-nav-list > li > a:hover::after,
.global-nav-list > li > .ct-nav-trigger:hover::after,
.global-nav-list > li > .ct-nav-trigger[aria-expanded="true"]::after,
.global-nav-list .current-menu-item > a::after { right: 0; }
.mobile-nav-list { display: grid; }
.mobile-menu__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 18px 22px 24px; }
.mobile-menu__actions a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 10px 12px; border: 1px solid var(--red); border-radius: 999px; font-weight: 700; text-align: center; }
.mobile-menu__actions .mobile-download { color: var(--red); background: #fff; }
.mobile-menu__actions .mobile-contact { color: #fff; background: var(--red); }
.footer-nav { display: block; }
.footer-nav-list {
  display: grid;
  grid-template-columns: repeat(5, max-content);
  gap: 14px 24px;
}
.footer-sitemap { display: grid; flex: 1; max-width: 820px; grid-template-columns: repeat(4, minmax(130px, 1fr)); gap: 32px; }
.footer-sitemap__group strong { display: block; margin-bottom: 18px; color: #fff; font-size: 12px; letter-spacing: .1em; }
.footer-sitemap__group ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-sitemap__group a { color: #bdbdbd; font-size: 12px; line-height: 1.7; transition: color .2s ease; }
.footer-sitemap__group a:hover { color: #fff; }
.has-mega-menu { position: relative; }
.ct-nav-toggle-mark { position: relative; width: 10px; height: 10px; display: inline-block; }
.ct-nav-toggle-mark::before,
.ct-nav-toggle-mark::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: currentColor; transform: translate(-50%, -50%); transition: transform .35s cubic-bezier(.22, 1, .36, 1); }
.ct-nav-toggle-mark::after { transform: translate(-50%, -50%) rotate(90deg); }
.has-mega-menu:hover > .ct-nav-trigger,
.has-mega-menu:focus-within > .ct-nav-trigger { color: var(--red); }
.has-mega-menu:hover .ct-nav-toggle-mark::after,
.has-mega-menu:focus-within .ct-nav-toggle-mark::after { transform: translate(-50%, -50%) rotate(0deg); }
.ct-mega-menu { position: fixed; top: calc(var(--header-height) - 1px); left: 50%; z-index: 100; width: min(calc(100vw - 28px), 1320px); padding-top: 6px; visibility: hidden; opacity: 0; pointer-events: none; transform: translate(-50%, -12px); transition: visibility 0s linear .38s, opacity .28s ease, transform .4s cubic-bezier(.22, 1, .36, 1); }
.has-mega-menu:hover .ct-mega-menu,
.has-mega-menu:focus-within .ct-mega-menu,
.has-mega-menu.is-open .ct-mega-menu { visibility: visible; opacity: 1; pointer-events: auto; transform: translate(-50%, 0); transition-delay: 0s; }
.ct-mega-menu__inner { padding: 25px 38px 38px; border: 1px solid rgba(144, 125, 56, .16); border-radius: 24px; color: #282823; background: rgba(255, 255, 255, .985); box-shadow: 0 28px 70px rgba(31, 29, 19, .16); }
.ct-mega-menu__head { display: flex; align-items: center; gap: 38px; min-height: 82px; padding: 0 0 21px; border-bottom: 1px solid #e7e4d9; }
.ct-mega-menu__head p { margin: 0; color: var(--red); font-family: "Helvetica Neue", Arial, sans-serif; font-size: clamp(30px, 3vw, 44px); font-weight: 650; letter-spacing: -.035em; line-height: 1; }
.ct-mega-menu__head > a { display: inline-flex; align-items: center; gap: 16px; min-height: 38px; padding: 0 2px; color: #282823; font-size: 13px; font-weight: 700; }
.ct-menu-arrow { width: 30px; height: 30px; display: inline-grid; flex: 0 0 auto; place-items: center; border: 1px solid rgba(144, 125, 56, .45); border-radius: 50%; color: var(--red); font-size: 13px; transition: color .32s ease, background-color .32s ease, transform .45s cubic-bezier(.22, 1, .36, 1); }
.ct-mega-menu__head > a:hover .ct-menu-arrow { color: #fff; background: var(--red); transform: translateX(4px); }
.ct-mega-menu__list { display: grid; gap: 20px; margin: 23px 0 0; padding: 0; list-style: none; }
.ct-mega-menu--service .ct-mega-menu__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ct-mega-menu--media .ct-mega-menu__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ct-mega-menu__list > li { min-width: 0; display: flex; }
.ct-mega-card { position: relative; width: 100%; height: 100%; min-height: 166px; display: grid; grid-template-columns: 96px minmax(0, 1fr) 32px; align-items: center; gap: 18px; padding: 16px; border: 1px solid #e8e6dd; border-radius: 14px; color: #282823; background: #fff; box-shadow: 0 8px 24px rgba(42, 38, 24, 0); cursor: pointer; isolation: isolate; touch-action: manipulation; transition: border-color .3s ease, background-color .3s ease, box-shadow .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1); }
.ct-mega-card::after { content: ""; position: absolute; inset: 0; z-index: 3; border-radius: inherit; }
.ct-mega-card > * { pointer-events: none; }
.ct-mega-card:focus-visible { outline: 3px solid rgba(144, 125, 56, .42); outline-offset: 3px; }
.ct-mega-menu--media .ct-mega-card { grid-template-columns: 78px minmax(0, 1fr) 30px; gap: 14px; }
.ct-mega-card:hover { border-color: rgba(144, 125, 56, .42); background: #faf9f4; box-shadow: 0 16px 34px rgba(42, 38, 24, .1); transform: translateY(-5px); }
.ct-mega-card__visual { position: relative; width: 100%; aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; border-radius: 10px; color: #fff; background: linear-gradient(145deg, #b1a46c, #75652c); transition: transform .55s cubic-bezier(.22, 1, .36, 1); }
.ct-mega-card__visual::before,
.ct-mega-card__visual::after { content: ""; position: absolute; border: 1px solid rgba(255, 255, 255, .32); border-radius: 50%; transition: transform .6s cubic-bezier(.22, 1, .36, 1); }
.ct-mega-card__visual::before { width: 82%; aspect-ratio: 1; top: -30%; right: -28%; }
.ct-mega-card__visual::after { width: 58%; aspect-ratio: 1; left: -26%; bottom: -21%; }
.ct-mega-card:hover .ct-mega-card__visual::before { transform: translate(-8px, 8px) scale(1.08); }
.ct-mega-card:hover .ct-mega-card__visual::after { transform: translate(8px, -6px) scale(1.12); }
.ct-mega-card:hover .ct-mega-card__visual { transform: scale(1.035); }
.ct-mega-card__visual > span { position: relative; z-index: 1; font-family: "Helvetica Neue", Arial, sans-serif; font-size: 18px; letter-spacing: .08em; }
.ct-mega-card__copy { min-width: 0; display: block; }
.ct-mega-card__copy small { display: block; margin-bottom: 8px; color: var(--red); font-family: "Helvetica Neue", Arial, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.ct-mega-card__copy b { display: block; font-size: 16px; line-height: 1.5; }
.ct-mega-card__copy > span { display: -webkit-box; margin-top: 7px; overflow: hidden; color: #74746d; font-size: 10px; font-weight: 400; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.ct-mega-card:hover > .ct-menu-arrow { color: #fff; background: var(--red); transform: translateX(4px); }
.mobile-nav-group > div { display: grid; grid-template-columns: 1fr 52px; border-bottom: 1px solid var(--line); }
.mobile-nav-group > div > a,
.mobile-nav-label { border-bottom: 0; }
.mobile-nav-label { display: flex; align-items: center; }
.mobile-nav-toggle { min-width: 52px; min-height: 48px; border: 0; border-left: 1px solid var(--line); color: var(--red); background: #fff; cursor: pointer; font-size: 20px; }
.mobile-nav-group > ul { margin: 0; padding: 0; list-style: none; background: #faf9f5; }
.mobile-nav-list .is-sub a { padding-left: 42px; font-size: 12px; }
body.creatree-design.admin-bar .ct-mega-menu { top: calc(var(--header-height) + 31px); }
.empty-message { padding: 28px 0; color: var(--muted); font-size: 13px; }
.creatree-design .wp-block-image { margin: 0; }
.creatree-design .wp-block-group,
.creatree-design .wp-block-columns,
.creatree-design .wp-block-column { margin-top: 0; margin-bottom: 0; }

@media (max-width: 980px) {
  .global-nav-list { display: none; }
  .footer-sitemap { gap: 28px; }
}

@media (max-width: 782px) {
  body.creatree-design.admin-bar .site-header { top: 46px; }
  body.creatree-design.admin-bar .mobile-menu { margin-top: 46px; }
}

@media (max-width: 720px) {
  .footer-nav-list { grid-template-columns: repeat(2, max-content); }
  .footer-sitemap { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

/* Full-height mobile navigation inspired by a simple editorial drawer. */
html.ct-menu-open { overflow: hidden; }
@media (max-width: 980px) {
  .menu-button {
    width: 48px;
    height: 48px;
    gap: 6px;
    border: 1px solid var(--gold-main);
    background: rgba(255, 255, 255, .94);
    transition: color .35s ease, background-color .35s ease, border-color .35s ease;
  }
  .menu-button span { width: 19px; background: var(--gold-main); transition: opacity .3s ease, transform .4s cubic-bezier(.22, 1, .36, 1); }
  .menu-button.is-open { color: var(--gold-main); background: #fff; }
  .mobile-menu {
    inset: var(--header-height) 0 0;
    display: block;
    max-height: none;
    padding: 24px clamp(22px, 6vw, 42px) 36px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    background: #fff;
    box-shadow: none;
    transition: visibility 0s linear .38s, opacity .32s ease, transform .42s cubic-bezier(.22, 1, .36, 1);
  }
  .mobile-menu.is-open {
    max-height: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }
  .mobile-menu__eyebrow { margin: 0 0 14px; color: var(--gold-main); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
  .mobile-nav-list { border-top: 1px solid #d9d6cb; }
  .mobile-nav-list > li { border-bottom: 1px solid #d9d6cb; }
  .mobile-menu .mobile-nav-list > li > a,
  .mobile-menu .mobile-nav-group > div > a,
  .mobile-menu .mobile-nav-label { min-height: 62px; display: flex; align-items: center; padding: 0 4px; border: 0; font-size: 15px; font-weight: 650; }
  .mobile-nav-group > div { grid-template-columns: minmax(0, 1fr) 52px; border: 0; }
  .mobile-nav-toggle { min-height: 62px; border: 0; color: var(--gold-main); font-size: 23px; font-weight: 300; }
  .mobile-nav-group > ul { margin: 0 0 14px; overflow: hidden; border-radius: 10px; background: #f6f4ec; }
  .mobile-menu .mobile-nav-list .is-sub a { min-height: 48px; display: flex; align-items: center; padding: 0 16px; border-bottom: 1px solid rgba(144, 125, 56, .14); font-size: 12px; }
  .mobile-menu .mobile-nav-list .is-sub:last-child a { border-bottom: 0; }
  .mobile-menu__actions { gap: 12px; padding: 26px 0 10px; }
  .mobile-menu__actions a { min-height: 52px; padding: 11px 16px; font-size: 12px; }
  body.creatree-design.admin-bar .mobile-menu { top: calc(var(--header-height) + 32px); margin-top: 0; }
}

@media (max-width: 782px) {
  body.creatree-design.admin-bar .mobile-menu { top: calc(var(--header-height) + 46px); margin-top: 0; }
}

@media (max-width: 720px) {
  .mobile-menu { padding-inline: 22px; }
  .mobile-menu__actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-marquee { overflow-x: auto; mask-image: none; scrollbar-color: var(--gold-sub) transparent; scrollbar-width: thin; }
  .client-logo-track { animation: none; }
  .client-logo-list[aria-hidden="true"] { display: none; }
  .ct-js .technology-logo-grid,
  .ct-js .technology-logo-grid[aria-hidden="false"] { transition: none; }
}
