@import url("https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");

:root {
  --color-ivory: #f2f0ed;
  --color-white: #ffffff;
  --color-charcoal: #74706e;
  --color-deep: #53504e;
  --color-yellow: #f5ea79;
  --color-line: rgba(83, 80, 78, 0.28);
  --font-ja: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --font-en: var(--font-zen-kaku-gothic-new), "Helvetica Neue", Arial, sans-serif;
  --font-service-number: "Alumni Sans Pinstripe", sans-serif;

  /* Font sizes: edit these px values to tune the desktop design. */
  --font-size-body: 16px;
  --font-size-hero-kicker: 20px;
  --font-size-hero-marquee: 154px;
  --font-size-section-title: 78px;
  --font-size-project-title: 24px;
  --font-size-service-number: 78px;
  --font-size-service-title: 38px;
  --font-size-about-outline: 148px;
  --font-size-about-catch: 46px;
  --font-size-social-outline: 132px;
  --font-size-social-heading: 25px;
  --font-size-contact-heading: 38px;
  --font-size-contact-outline: 166px;
  --font-size-mobile-menu: 28px;

  --content-width: 1232px;
  --side-space: clamp(24px, 4.4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--color-ivory);
  color: var(--color-deep);
  font-family: var(--font-ja);
  font-size: var(--font-size-body);
  line-height: 1.9;
  letter-spacing: 0.045em;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h3 {
  font-weight: 500;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

/* PCのときだけ表示（スマホでは非表示） */
.pc-only {
  display: block;
}
@media screen and (max-width: 640px) {
  .pc-only {
    display: none;
  }
}
.sp-only {
  display: none;
}
@media screen and (max-width: 640px) {
  .sp-only {
    display: block;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 8px 14px;
  background: var(--color-yellow);
  color: var(--color-deep);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(100%, calc(var(--content-width) + (var(--side-space) * 2)));
  margin-inline: auto;
  padding-inline: var(--side-space);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 86px;
  padding: 0 clamp(28px, 3.2vw, 46px);
  color: var(--color-white);
  transition: color 0.25s ease, background 0.25s ease,
    box-shadow 0.25s ease, backdrop-filter 0.25s ease, height 0.25s ease;
}

body.admin-bar .site-header {
  top: 32px;
}

section[id] {
  scroll-margin-top: 100px;
}

.header-logo {
  position: relative;
  z-index: 2;
  width: clamp(154px, 13vw, 188px);
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
  font-size: 14px;
  font-weight: 500;
}

.global-nav > a:not(.header-contact) {
  position: relative;
}

.global-nav > a:not(.header-contact)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.global-nav > a:hover::after,
.global-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.instagram-link img {
  width: 38px;
  height: 39px;
}

.header-contact {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 0 32px;
  color: var(--color-yellow);
  background: rgba(83, 80, 78, 0.88);
  border-radius: 999px;
}

.menu-button {
  display: none;
}

@media (min-width: 861px) {
  .site-header {
    background: rgba(242, 240, 237, 0.94);
    box-shadow: 0 8px 28px rgba(53, 50, 48, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .home-page .site-header:not(.is-scrolled) {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .home-page .site-header.is-scrolled {
    height: 92px;
    color: var(--color-deep);
  }

  .home-page .site-header.is-scrolled .header-logo img,
  .home-page .site-header.is-scrolled .instagram-link img {
    filter: brightness(0) saturate(100%) invert(29%) sepia(4%) saturate(390%)
      hue-rotate(337deg) brightness(96%) contrast(88%);
  }
}

.hero {
  position: relative;
  height: 888px;
  min-height: 780px;
  overflow: visible;
  color: var(--color-white);
  background-image: url("../images/top.jpg");
  background-position: center 34%;
  background-size: cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(70, 68, 66, 0.42);
}

.hero-content {
  position: absolute;
  bottom: 160px;
  left: var(--side-space);
  z-index: 2;
}

.hero-kicker {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 0;
  font-size: var(--font-size-hero-kicker);
  font-weight: 500;
}

.hero-kicker::before {
  width: clamp(60px, 8vw, 132px);
  height: 1px;
  content: "";
  background: currentColor;
}

.hero-kicker-text {
  display: flex;
  gap: 0.25em;
}

.hero-bubbles {
  position: absolute;
  right: -70px;
  bottom: 120px;
  z-index: 2;
  width: 380px;
  height: 410px;
}

.hero-bubbles img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-marquee {
  position: absolute;
  bottom: -36px;
  left: 0;
  z-index: 3;
  width: 100%;
/*  overflow: hidden;*/
  color: #f0de21;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 163.151px;
  font-style: normal;
  font-weight: 500;
  line-height: 170px;
  letter-spacing: -3.263px;
  white-space: nowrap;
}

.hero-marquee div {
  display: flex;
  width: max-content;
  transform: translateX(0);
  animation: marquee 24s linear infinite;
  will-change: transform;
}

.hero-marquee span {
  display: block;
  padding-right: 0.45em;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.project-section {
  padding-top: clamp(96px, 10vw, 150px);
  padding-bottom: clamp(110px, 11vw, 170px);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-heading--wide {
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-en);
  font-size: var(--font-size-section-title);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
}

.section-heading > p,
.section-heading > div > p {
  display: inline-block;
  margin: 18px 0 0;
  padding: 0 4px;
  font-weight: 500;
  line-height: 1.45;
  background: var(--color-yellow);
  border-radius: 3px;
}

.section-heading .section-lead {
  max-width: 400px;
  margin-bottom: 8px;
  padding: 0;
  font-weight: 500;
  background: transparent;
}

.project-carousel {
  position: relative;
  margin-top: clamp(66px, 7.5vw, 110px);
  padding: 54px 0 30px;
  overflow: hidden;
  background: var(--color-white);
  border-radius: 44px;
}

.project-swiper {
  width: 100%;
  overflow: visible;
}

.project-swiper .swiper-wrapper {
  align-items: center;
}

.project-slide {
  width: min(470px, 74vw);
  height: auto;
}

.project-card {
  width: 100%;
}

.project-image {
  aspect-ratio: 0.94;
  overflow: hidden;
  background: #dedbd6;
  border-radius: 20px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.025);
}

.project-card h3 {
  display: inline;
  margin: 16px 0 0;
  font-size: var(--font-size-project-title);
  line-height: 1.55;
  background: var(--color-charcoal);
  box-shadow: 8px 0 0 var(--color-charcoal), -8px 0 0 var(--color-charcoal);
  color: var(--color-yellow);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
}

.carousel-controls {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
}

.carousel-controls button {
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  color: var(--color-deep);
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--color-deep);
  border-radius: 50%;
  place-items: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible {
  color: var(--color-white);
  background: var(--color-deep);
}

.carousel-controls p {
  min-width: 45px;
  margin: 0;
  text-align: center;
}

.service-section {
  padding-bottom: clamp(130px, 14vw, 220px);
}

.service-list {
  margin-top: clamp(54px, 7vw, 100px);
  border-top: 1px solid var(--color-line);
}

.service-item {
  display: grid;
  grid-template-columns: 150px minmax(260px, 1fr) minmax(360px, 1.25fr);
  gap: 48px;
  align-items: center;
  min-height: 255px;
  padding: 44px 18px;
  border-bottom: 1px solid var(--color-line);
}

.service-number {
  margin: 0;
  font-family: var(--font-service-number);
  font-size: var(--font-size-service-number);
  font-weight: 400;
  line-height: 1;
  border-right: 1px solid var(--color-line);
}

.service-name h3 {
  margin: 0 0 16px;
  font-size: var(--font-size-service-title);
  line-height: 1.35;
}

.service-name h3 span {
  background: var(--color-white);
  box-shadow: 5px 0 0 var(--color-white), -5px 0 0 var(--color-white);
  border-radius: 3px;
}

.service-name p,
.service-description {
  margin: 0;
}

.service-name p {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 11px;
  font-size: 13px;
  line-height: 1.65;
}

.service-description {
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
}


/* =========================
   ご相談
========================= */
.consult {
  width: 100%;
  padding: 72px 20px 100px 20px;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  color: #53504e;
}
.consult__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1300px;
  min-height: 834px;
  margin: 0 auto;
  padding: 90px 156px 94px 189px;
  display: grid;
  grid-template-columns: 473px 378px;
  column-gap: 104px;
  align-items: start;
  background: #f5ea79;
  border-radius: 100px 0 100px 0;
}
.consult__content { min-width: 0; }

.consult__title {
  margin: 0 0 39px;
  font-size: 24px;
  line-height: 52px;
  font-weight: 500;
  letter-spacing: 0;
}
.consult__title span {
  position: relative;
  isolation: isolate;
  display: inline-block;
  padding: 0 4px;
}
.consult__title span::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 12px;
  left: 0;
  width: calc(100% - 13px);
  height: 32px;
  border-radius: 3px;
  background: #fff;
}
.consult__title span + br + span::before { top: 11px; }

.consult__text {
  width: 436px;
  margin-left: 37px;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.05em;
}
.consult__text p { margin: 0 0 32px; }
.consult__text p:last-child { margin-bottom: 0; }

.consult .consult__button {
  display: flex;
  justify-content: flex-start;
  width: 274px;
  max-width: 100%;
  height: 74px;
  min-height: 74px;
  margin: 49px 0 0 37px;
  padding: 0 27px 0 42px;
  gap: 21px;
  border-radius: 37px;
  background: #706b68;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}
.consult__arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.dark__arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  filter: brightness(1) invert(1);
}
.consult__image {
  width: 378px;
  aspect-ratio: 378 / 476;
  margin-top: 79px;
  overflow: hidden;
  border-radius: 10px;
}
.consult__image img {
  display: block;
  width: 103.968254%;
  max-width: none;
  height: 123.739496%;
  object-fit: cover;
  transform: translate(-2.035623%, -12.563667%);
}

@media (min-width: 1340px) {
  .consult__inner { margin-left: calc((100vw - 1340px) / 2 + 3px); }
}
@media (min-width: 861px) and (max-width: 1339px) {
  .consult__inner {
    padding-left: clamp(40px, calc(40px + (100vw - 1024px) * 0.473), 189px);
    padding-right: 40px;
    grid-template-columns: 473px minmax(0, 378px);
    column-gap: clamp(32px, 5vw, 70px);
  }
  .consult__image { width: 100%; }
}
@media (max-width: 860px) {
  .consult__inner {
    min-height: 0;
    padding: 64px 40px;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    border-radius: 64px 0 64px 0;
  }
  .consult__content { display: contents; }
  .consult__title { margin: 0; }
  .consult__text { width: 100%; margin: 0; }
  .consult__image { width: min(100%, 378px); margin: 0 auto; }
  .consult .consult__button { grid-row: 4; margin: 0; }
}
@media (max-width: 640px) {
  .consult { padding: 48px 16px; }
  .consult__inner { padding: 48px 24px; gap: 32px; border-radius: 48px 0 48px 0; }
  .consult__title { font-size: clamp(16px, 4.8vw, 22px); line-height: 2.15; }
  .consult__title span::before,
  .consult__title span + br + span::before { top: 0.5em; height: 1.34em; width: calc(100% - 0.54em); }
  .consult__text { font-size: 16px; line-height: 30px; }
  .consult__text p { margin-bottom: 30px; }
  .consult .consult__button { margin-inline: auto; padding-inline: 24px; gap: 20px; justify-content: center; }
}

.about-section {
  color: var(--color-ivory);
  background: var(--color-charcoal);
  border-radius: 0 clamp(80px, 12vw, 190px) 0 clamp(80px, 12vw, 190px);
}

.about-inner {
  padding-top: clamp(100px, 11vw, 170px);
  padding-bottom: clamp(110px, 12vw, 190px);
}

.section-heading--light > p {
  color: var(--color-deep);
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(360px, 1.2fr);
  gap: 52px clamp(60px, 9vw, 150px);
  margin-top: 74px;
  padding-bottom: clamp(110px, 12vw, 190px);
}

.about-outline {
  position: absolute;
  top: 50px;
  left: calc(var(--side-space) * -1);
  margin: 0;
  color: transparent;
  font-family: var(--font-en);
  font-size: var(--font-size-about-outline);
  font-weight: 300;
  letter-spacing: 0.04em;
  opacity: 0.38;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: top left;
  -webkit-text-stroke: 1px var(--color-white);
}

.about-catch {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 0;
  writing-mode: vertical-rl;
}

.about-catch span {
  padding: 11px 5px;
  color: var(--color-deep);
  font-size: var(--font-size-about-catch);
  line-height: 1.35;
  letter-spacing: 0.12em;
  background: var(--color-white);
  border-radius: 3px;
}

.about-message {
  align-self: center;
}

.about-message > img {
  width: 72px;
  margin-bottom: 26px;
}

.about-message p {
  margin: 0 0 28px;
  color: rgba(242, 240, 237, 0.82);
  font-size: 14px;
  line-height: 2.1;
}

.about-message .about-en {
  font-family: var(--font-en);
  font-size: 19px;
  letter-spacing: 0.12em;
}

.about-statement {
  align-self: end;
  padding-left: clamp(20px, 4vw, 64px);
}

.about-statement p {
  margin: 0 0 26px;
  color: rgba(242, 240, 237, 0.88);
  font-size: 14px;
  line-height: 2.1;
}

.about-photo {
  justify-self: center;
  width: min(100%, 330px);
  margin: 0;
}

.about-photo img {
  width: 100%;
  height: auto;
/*  aspect-ratio: 417 / 527;*/
  object-fit: cover;
  border-radius: 10px;
}

.news-card {
  position: relative;
  padding: clamp(70px, 8vw, 115px);
  color: var(--color-deep);
  background: var(--color-ivory);
  border-radius: 60px 0 90px 0;
  overflow: hidden;
}

.news-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 390px;
  height: 270px;
  pointer-events: none;
  content: "";
  background: url("../images/news-back.png") center / contain no-repeat;
  opacity: 0.5;
}

.news-list {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 60px auto 54px;
}

.news-item {
  display: grid;
  grid-template-columns: 115px 100px 1fr 28px;
  gap: 20px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid var(--color-line);
  transition: color 0.2s ease;
}

.news-item:hover,
.news-item:focus-visible {
  color: #887b00;
}

.news-item time {
  font-family: var(--font-en);
  font-size: 13px;
}

.news-category {
  padding: 4px 8px;
  font-size: 12px;
  text-align: center;
  background: var(--color-white);
  border-radius: 4px;
}

.news-title {
  font-size: 14px;
  font-weight: 600;
}

.home-page .news-item time {
  color: #000;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 17px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.85px;
}

.home-page .news-category {
  color: #53504e;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 14px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.7px;
}

.home-page .news-title {
  color: #000;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 17px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.85px;
}

.news-arrow {
  font-size: 20px;
}

.button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 38px;
  font-weight: 500;
  border-radius: 999px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.button--dark {
  color: var(--color-yellow);
  background: var(--color-charcoal);
}

.button--yellow {
  color: var(--color-deep);
  background: var(--color-yellow);
}

.company {
  width: min(780px, 100%);
  margin: clamp(110px, 13vw, 190px) auto 0;
}

.section-heading--center {
  align-items: center;
  text-align: center;
}

.company-list {
  margin: 54px 0 0;
  padding-top: 30px;
  border-top: 1px solid rgba(245, 234, 121, 0.76);
}

.company-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 38px;
  padding: 10px 0;
}

.company-list dt {
  color: var(--color-yellow);
  font-size: 14px;
  font-weight: 500;
}

.company-list dd {
  margin: 0;
  color: rgba(242, 240, 237, 0.82);
  font-size: 14px;
}

.social-section {
  padding-top: 110px;
  padding-bottom: 90px;
}

.social-title {
  margin: 0 0 -20px;
  color: transparent;
  font-family: var(--font-en);
  font-size: var(--font-size-social-outline);
  font-weight: 300;
  line-height: 1;
  text-align: center;
  -webkit-text-stroke: 1px rgba(83, 80, 78, 0.42);
}

.social-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  min-height: 390px;
  padding: 60px;
  background: var(--color-white);
  border-radius: 24px 0 68px 0;
}

.social-card > img {
  justify-self: center;
  width: min(278px, 100%);
}

.social-card h3 {
  display: inline;
  margin: 0;
  font-size: var(--font-size-social-heading);
  line-height: 1.7;
  background: var(--color-yellow);
  box-shadow: 5px 0 0 var(--color-yellow), -5px 0 0 var(--color-yellow);
}

.social-card p {
  max-width: 520px;
  margin: 30px 0;
  font-size: 15px;
}

.social-card a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 3px;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}

.service-promo-section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 100px;
  overflow: hidden;
  background: var(--color-ivory);
  box-shadow: 0 0 0 100vmax var(--color-ivory);
  clip-path: inset(0 -100vmax);
}

.service-promo-section .social-title {
  position: relative;
  z-index: 2;
  margin-bottom: -30px;
  color: transparent;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: clamp(82px, 8.4vw, 120px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 3.6px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #767676;
}

.service-promo-section .social-card {
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 450px;
  padding: 60px 90px;
}

.service-promo-section .social-card h3 {
  color: #53504e;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 22px;
  font-weight: 400;
  line-height: 2.25;
}

.service-promo-section .social-card p {
  color: #53504e;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.9px;
}

.service-promo-section .social-card a {
  min-width: 320px;
  min-height: 70px;
  justify-content: center;
  padding: 0 36px;
  color: var(--color-yellow);
  font-size: 16px;
  border-bottom: 0;
}

.service-promo-section--business .service-promo-logo {
  width: 180px;
}

.contact-section {
  position: relative;
  display: grid;
  min-height: 450px;
  overflow: hidden;
  color: var(--color-white);
  background: url("../images/contact-bg.jpg") center / cover no-repeat;
  place-items: center;
}

.contact-shade {
  position: absolute;
  inset: 0;
  background: rgba(35, 33, 32, 0.46);
}

.contact-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 50px 24px;
  overflow: hidden;
  text-align: center;
}

.contact-content > p {
  margin: 0 0 12px;
  font-weight: 600;
}

.contact-content h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 34px;
}

.contact-content h2 span:first-child {
  padding: 0 6px;
  color: var(--color-deep);
  font-size: var(--font-size-contact-heading);
  line-height: 1.4;
  background: var(--color-white);
}

.contact-content h2 span:last-child {
  margin-top: -10px;
  color: transparent;
  font-family: var(--font-en);
  font-size: var(--font-size-contact-outline);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.74);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  min-height: 320px;
  padding: 55px var(--side-space);
}

.footer-logo {
  width: 119px;
}

.site-footer nav {
  display: flex;
  gap: clamp(28px, 4.2vw, 68px);
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.footer-instagram img {
  width: 38px;
}

.copyright {
  position: absolute;
  right: var(--side-space);
  bottom: 26px;
  margin: 0;
  font-family: var(--font-en);
  font-size: 11px;
}

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

@media (max-width: 1080px) {
  :root {
    --font-size-hero-kicker: 18px;
    --font-size-hero-marquee: 112px;
    --font-size-section-title: 66px;
    --font-size-project-title: 22px;
    --font-size-service-number: 64px;
    --font-size-service-title: 32px;
    --font-size-about-outline: 108px;
    --font-size-about-catch: 38px;
    --font-size-social-outline: 94px;
    --font-size-social-heading: 23px;
    --font-size-contact-heading: 32px;
    --font-size-contact-outline: 116px;
  }

  .site-header {
    height: 92px;
  }

  .global-nav {
    gap: 20px;
    font-size: 13px;
  }

  .header-logo {
    width: 200px;
  }

  .header-contact {
    min-height: 56px;
    padding-inline: 22px;
  }

  .service-item {
    grid-template-columns: 100px minmax(220px, 0.8fr) minmax(300px, 1.2fr);
    gap: 30px;
  }
}

@media (max-width: 860px) {
  :root {
    --side-space: clamp(22px, 5vw, 48px);
    --font-size-body: 15px;
    --font-size-hero-kicker: 16px;
    --font-size-hero-marquee: 88px;
    --font-size-section-title: 58px;
    --font-size-project-title: 21px;
    --font-size-service-number: 54px;
    --font-size-service-title: 29px;
    --font-size-about-outline: 92px;
    --font-size-about-catch: 33px;
    --font-size-social-outline: 72px;
    --font-size-social-heading: 21px;
    --font-size-contact-heading: 29px;
    --font-size-contact-outline: 90px;
    --font-size-mobile-menu: 28px;
  }

  body {
    font-size: var(--font-size-body);
  }

  .site-header {
    position: fixed;
    height: 78px;
    background: rgba(83, 80, 78, 0.5);
    backdrop-filter: blur(10px);
    transition: background 0.25s ease, backdrop-filter 0.25s ease;
  }

  body.menu-open .site-header {
    background: transparent;
    backdrop-filter: none;
  }

  .header-logo {
    z-index: 4;
    width: 180px;
  }

  .menu-button {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0 11px;
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    transition: background 0.25s ease, border-color 0.25s ease;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-white);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menu-button[aria-expanded="true"] {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
  }

  .menu-button[aria-expanded="true"] > span:not(.sr-only) {
    background: var(--color-deep);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 0 14px;
    align-content: start;
    align-items: center;
    padding: 112px var(--side-space) 32px;
    font-size: var(--font-size-mobile-menu);
    visibility: hidden;
    overflow-y: auto;
    background:
      radial-gradient(
        circle at 103% 8%,
        rgba(245, 234, 121, 0.95) 0 82px,
        transparent 83px
      ),
      radial-gradient(
        circle at -12% 92%,
        rgba(245, 234, 121, 0.1) 0 132px,
        transparent 133px
      ),
      var(--color-deep);
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .global-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .global-nav > a:not(.instagram-link, .header-contact) {
    grid-column: 1 / -1;
    display: flex;
    gap: 14px;
    align-items: center;
    min-height: 66px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .global-nav > a:not(.instagram-link, .header-contact)::before {
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    content: "";
    background: var(--color-yellow);
    border-radius: 50%;
  }

  .global-nav > a:not(.instagram-link, .header-contact)::after {
    display: none;
  }

  .global-nav.is-open > a {
    opacity: 1;
    transform: translateY(0);
  }

  .global-nav.is-open > a:nth-child(1) {
    transition-delay: 0.06s;
  }

  .global-nav.is-open > a:nth-child(2) {
    transition-delay: 0.1s;
  }

  .global-nav.is-open > a:nth-child(3) {
    transition-delay: 0.14s;
  }

  .global-nav.is-open > a:nth-child(4) {
    transition-delay: 0.18s;
  }

  .global-nav .instagram-link {
    display: grid;
    width: 56px;
    height: 56px;
    margin-top: 26px;
    background: var(--color-yellow);
    border-radius: 50%;
    place-items: center;
  }

  .global-nav .instagram-link::after {
    display: none;
  }

  .global-nav .instagram-link img {
    width: 28px;
    height: 29px;
    filter: brightness(0) saturate(100%) invert(29%) sepia(4%) saturate(390%)
      hue-rotate(337deg) brightness(96%) contrast(88%);
  }

  .global-nav .header-contact {
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    margin-top: 26px;
    padding-inline: 24px;
    font-size: 15px;
    color: var(--color-deep);
    background: var(--color-yellow);
  }

  .global-nav .header-contact span {
    font-size: 19px;
  }

  .hero {
    height: 760px;
    min-height: 760px;
    background-position: 50% center;
  }

  .hero-bubbles {
    right: -100px;
    bottom: 120px;
    transform: scale(0.78);
  }

  .section-heading--wide {
    align-items: flex-start;
  }

  .section-heading .section-lead {
    max-width: 300px;
  }

  .service-item {
    grid-template-columns: 92px 1fr;
    gap: 28px;
    min-height: 0;
    padding: 44px 10px;
  }

  .service-number {
    align-self: stretch;
  }

  .service-description {
    grid-column: 2;
  }

  .about-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
  }

  .about-statement {
    padding-left: 0;
  }

  .news-item {
    grid-template-columns: 105px 90px 1fr;
  }

  .news-arrow {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --font-size-body: 15px;
    --font-size-hero-kicker: 14px;
    --font-size-hero-marquee: 70px;
    --font-size-section-title: 48px;
    --font-size-project-title: 20px;
    --font-size-service-number: 42px;
    --font-size-service-title: 25px;
    --font-size-about-catch: 28px;
    --font-size-social-outline: 52px;
    --font-size-social-heading: 20px;
    --font-size-contact-heading: 27px;
    --font-size-contact-outline: 68px;
    --font-size-mobile-menu: 24px;
  }

  body {
    line-height: 1.8;
    letter-spacing: 0.025em;
  }

  .site-header {
    padding-inline: 20px;
  }

  .header-logo {
    width: 158px;
  }

  .hero {
    height: 690px;
    min-height: 690px;
    background-position: 53% center;
  }

  .hero-content {
    bottom: 122px;
  }

  .hero-kicker {
    gap: 12px;
    max-width: 290px;
    font-size: var(--font-size-hero-kicker);
  }

  .hero-kicker::before {
    width: 38px;
  }

  .hero-bubbles {
    right: -145px;
    bottom: 38px;
    transform: scale(0.56);
  }

  .hero-marquee {
    bottom: -10px;
    font-size: var(--font-size-hero-marquee);
  }

  .section-heading--wide {
    flex-direction: column;
    gap: 24px;
  }

  .section-heading .section-lead {
    max-width: none;
    margin: 0;
  }

  .project-carousel {
    margin-inline: calc(var(--side-space) * -1);
    border-radius: 28px;
  }

  .project-slide {
    width: calc(100vw - 76px);
  }

  .project-image {
    aspect-ratio: 0.95;
    border-radius: 14px;
  }

  .service-item {
    grid-template-columns: 62px 1fr;
    gap: 20px;
    padding: 38px 0;
  }

  .service-number {
    padding-right: 10px;
    font-size: var(--font-size-service-number);
  }

  .service-name h3 {
    font-size: var(--font-size-service-title);
  }

  .service-description {
    grid-column: 1 / -1;
    padding-left: 82px;
    font-size: 14px;
  }

  .about-section {
    border-radius: 0 62px 0 62px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    margin-top: 58px;
  }

  .about-outline {
    display: none;
  }

  .about-catch {
    gap: 10px;
    justify-content: flex-start;
    writing-mode: horizontal-tb;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-catch span {
    padding: 2px 7px;
    font-size: var(--font-size-about-catch);
    letter-spacing: 0.05em;
  }

  .about-message {
    order: 2;
  }

  .about-statement {
    order: 3;
  }

  .about-photo {
    order: 4;
    width: 78%;
    justify-self: end;
  }

  .news-card {
    margin-inline: calc(var(--side-space) * -1);
    padding: 70px var(--side-space);
    border-radius: 44px 0 60px 0;
  }

  .news-card::after {
    width: 250px;
  }

  .news-list {
    margin-top: 44px;
  }

  .news-item {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding: 18px 0;
  }

  .news-item time {
    grid-column: 1;
  }

  .news-category {
    grid-column: 2;
    grid-row: 1;
  }

  .news-title {
    grid-column: 1 / -1;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(242, 240, 237, 0.12);
  }

  .social-title {
    margin-bottom: -5px;
    font-size: var(--font-size-social-outline);
    text-align: left;
    white-space: nowrap;
  }

  .social-card {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: 0;
    padding: 58px 28px;
    border-radius: 24px 0 48px 0;
  }

  .social-card > img {
    width: 220px;
  }

  .contact-section {
    min-height: 430px;
    background-position: 42% center;
  }

  .contact-content h2 span:last-child {
    font-size: var(--font-size-contact-outline);
  }

  .site-footer {
    min-height: 430px;
    padding-top: 48px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: 38px 1fr 1fr;
    gap: 22px 30px;
  }

  .footer-instagram {
    grid-row: span 3;
    align-self: start;
  }

  .copyright {
    right: auto;
    left: var(--side-space);
  }
}

/* -------------------------------------------------------------------------- */
/* Home page: 1440px completion-preview alignment                             */
/* -------------------------------------------------------------------------- */

.home-page {
  background: var(--color-ivory);
}

.home-page .site-header {
  height: 126px;
  padding: 0 46px;
}

.home-page .header-logo {
  width: 272px;
}

.home-page .global-nav {
  gap: 44px;
  font-size: 16px;
  font-weight: 500;
}

.home-page .instagram-link img {
  width: 50px;
  height: 51px;
}

.home-page .header-contact {
  min-width: 200px;
  min-height: 64px;
  justify-content: center;
  padding: 0 28px;
  color: var(--color-yellow);
  background: rgba(83, 80, 78, 0.9);
}

.home-page .hero {
  height: 95svh;
  min-height: 700px;
  max-height: none;
  background-position: center center;
}

.home-page .hero-shade {
  background: rgba(70, 68, 66, 0.48);
/*  bottom: 5%;*/
}

.home-page .hero-content {
  bottom: clamp(150px, 18vh, 210px);
  left: 0;
}

.home-page .hero-kicker {
  gap: 26px;
  font-size: 20px;
}

.home-page .hero-kicker::before {
  width: 200px;
}

.home-page .hero-bubbles {
  right: 0;
  bottom: 44px;
  width: 389px;
  height: 375px;
}

.home-page .hero-marquee {
  bottom: -80px;
  font-size: 163.151px;
  line-height: 170px;
  letter-spacing: -3.263px;
}

.home-page .hero-marquee div {
  animation: marquee 24s linear infinite;
}

@media (min-width: 861px) {
  .home-page .hero {
    height: 95svh;
  }

  .home-page .hero-content {
    bottom: clamp(190px, 24svh, 400px);
    bottom: 120px;
  }

  .home-page .hero-marquee {
    bottom: -5%;
  }

  body.admin-bar.home-page .hero {
    height: calc(100svh - 90px);
  }
}

.home-page .project-section {
  padding-top: 185px;
  padding-bottom: 5px;
}

.home-page .section-heading--wide {
  align-items: flex-start;
}

.home-page .section-heading--wide .section-lead {
  display: none;
}

.home-page .project-carousel {
  width: calc(100% + 68px);
  height: 849px;
  margin: 57px -34px 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
}

.home-page .project-carousel::before {
  position: absolute;
  inset: 95px 0 0;
  content: "";
  background: var(--color-white);
  border-radius: 50px;
}

.home-page .project-swiper {
  position: relative;
  z-index: 1;
  width: calc(100% + 140px);
  height: 730px;
  margin-left: -70px;
  overflow: visible;
}

.home-page .project-swiper .swiper-wrapper {
  align-items: flex-start;
}

.home-page .project-slide {
  width: 530px;
}

.home-page .project-card {
  width: 450px;
  margin-inline: auto;
  transition: width 0.35s ease, transform 0.35s ease;
}

.home-page .project-card.is-active {
  width: 530px;
}

.home-page .project-card:not(.is-active) {
  transform: translateY(185px);
}

.home-page .project-image {
  aspect-ratio: 450 / 510;
  border-radius: 20px;
}

.home-page .project-card.is-active .project-image {
  aspect-ratio: 530 / 600;
}

.home-page .project-card:not(.is-active) h3,
.home-page .project-card:not(.is-active) .project-tags {
  visibility: hidden;
}

.home-page .project-card.is-active h3 {
  display: table;
  margin: 26px 0 0 15px;
}

.home-page .project-card.is-active .project-tags {
  margin-top: 17px;
  margin-left: 19px;
}

.home-page .carousel-controls {
  position: absolute;
  bottom: 56px;
  left: 50%;
  z-index: 2;
  gap: 17px;
  margin: 0;
  transform: translateX(-50%);
}

.home-page .carousel-controls p:not(.sr-only) {
  display: none;
}

.home-page .carousel-controls button {
  width: 64px;
  height: 64px;
  font-size: 26px;
  font-weight: 300;
  border-color: rgba(83, 80, 78, 0.72);
}

.home-page .project-archive-link {
  position: relative;
  z-index: 2;
  display: flex;
  width: fit-content;
  margin: 48px auto 0;
}

.home-page .service-section {
  width: 100%;
  max-width: none;
  padding: 88px 0 32px;
}

.home-page .service-section > .section-heading {
  width: calc(100% - 80px);
  max-width: 1300px;
  margin-inline: auto;
  padding-left: 0;
}

.home-page .service-list {
  position: relative;
  width: calc(100% - 80px);
  max-width: 1300px;
  margin-top: 70px;
  margin-inline: auto;
  border-top: 0;
}

.home-page .service-list::before,
.home-page .service-item::after {
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 1px;
  content: "";
  background: var(--color-line);
  transform: translateX(-50%);
}

.home-page .service-list::before {
  top: 0;
}

.home-page .service-item {
  position: relative;
  border-bottom: 0;
}

.home-page .service-item::after {
  bottom: 0;
}

.home-page .service-item {
  grid-template-columns: 275px 355px minmax(0, 1fr);
  gap: 70px;
  min-height: 252px;
  padding: 36px 128px 36px 0;
}

@media (min-width: 1081px) {
  .home-page .service-item:nth-child(2),
  .home-page .service-item:nth-child(3) {
    min-height: 264px;
  }
}

.home-page .service-number {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-left: 126px;
  font-size: 84px;
}

.home-page .service-name h3 {
  margin-bottom: 16px;
  font-size: 38px;
}

.home-page .service-name p {
  font-size: 14px;
  line-height: 1.75;
}

.home-page .service-description {
  max-width: 570px;
  font-size: 16px;
  line-height: 2;
}

.home-page .about-section {
  background: #706b68;
  border-radius: 0 190px 0 190px;
}

.home-page .about-inner {
  padding-top: 148px;
  padding-bottom: 175px;
}

.home-page .about-grid {
  grid-template-columns: 620px minmax(0, 1fr);
  gap: 50px 90px;
  margin-top: 90px;
  padding-bottom: 170px;
}

.home-page .about-outline {
  left: calc(50% - 50vw);
  width: 1259px;
  height: 184px;
  overflow: visible;
  color: transparent;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 218px;
  font-style: normal;
  font-weight: 900;
  line-height: 120.057px;
  letter-spacing: 4.36px;
  white-space: nowrap;
  opacity: 1;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: top left;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: rgba(242, 240, 237, 0.6);
}

.home-page .about-catch {
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  height: 590px;
  transform: translateX(32px);
  writing-mode: horizontal-tb;
}

.home-page .about-catch span {
  display: block;
  width: auto;
  height: max-content;
  padding: 10px 5px;
  font-size: 46px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

.home-page .about-message {
  align-self: start;
  width: 470px;
  max-width: 100%;
  padding-top: 120px;
  transform: translateX(-48px);
}

.home-page .about-message p {
  color: #f2f0ed;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.9px;
}

.home-page .about-message .about-en {
  color: #e9e5de;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
  text-align: left;
}

.home-page .about-statement {
  align-self: start;
  width: 470px;
  height: 407px;
  margin-left: 160px;
  padding-left: 0;
}

.home-page .about-statement p {
  color: #f2f0ed;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.9px;
}

.home-page .about-page-link {
  min-width: 260px;
  margin-top: 28px;
}

.home-page .about-photo {
  justify-self: start;
  width: 417px;
  margin-left: 200px;
}

.home-page .news-card {
  width: calc(100% + 68px);
  margin-inline: -34px;
  padding: 108px 114px;
  border-radius: 72px 0 96px 0;
}

.home-page .news-card::after {
  display: none;
}

.home-page .news-list {
  max-width: 820px;
  margin: 70px auto 66px;
}

.home-page .news-item {
  grid-template-columns: 115px 100px 1fr;
  min-height: 82px;
}

.home-page .news-arrow {
  display: none;
}

.home-page .company {
  width: 780px;
  margin-top: 190px;
}

.home-page .company-list {
  margin-top: 54px;
}

.home-page .company-list dt {
  color: #f5ea79;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: 0.85px;
}

.home-page .company-list dd {
  color: #f2f0ed;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: 0.85px;
}

.home-page .social-section {
  padding-top: 80px;
  padding-bottom: 72px;
}

.home-page .social-title {
  position: relative;
  z-index: 2;
  margin-bottom: -30px;
  color: transparent;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 120px;
  font-style: normal;
  font-weight: 900;
  line-height: 100px;
  letter-spacing: 3.6px;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #767676;
}

.home-page .social-card {
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 450px;
  padding: 60px 90px;
  border-radius: 24px 0 68px 0;
}

.home-page .social-card > img {
  width: 278px;
}

.home-page .social-card h3 {
  color: #53504e;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
}

.home-page .social-card p {
  color: #53504e;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: 0.9px;
}

.home-page .social-card a {
  position: absolute;
  right: 90px;
  bottom: 26px;
  min-width: 365px;
  min-height: 76px;
  padding: 0 44px;
  color: var(--color-yellow);
  font-size: 16px;
  border-bottom: 0;
  opacity: 1;
}

.contact-section--home {
  min-height: 420px;
  border-bottom: 8px solid var(--color-yellow);
  background-position: center;
}

.contact-section--home .contact-shade {
  background: rgba(35, 33, 32, 0.52);
}

.contact-section--home .contact-content {
  height: 100%;
  padding: 0;
}

.contact-home-link {
  position: relative;
  display: grid;
  width: 100%;
  height: 420px;
  overflow: hidden;
  place-items: center;
}

.contact-home-link h2 {
  display: contents;
  margin: 0;
}

.contact-home-link h2 span:first-child {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 200px;
  min-height: 74px;
  padding: 0 28px;
  color: var(--color-deep);
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  background: var(--color-yellow);
  border-radius: 999px;
}

.contact-home-link h2 span:first-child svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.contact-home-link h2 span:last-child {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  color: transparent;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 200px;
  font-weight: 900;
  line-height: 120.057px;
  letter-spacing: 4.36px;
  text-align: center;
  white-space: nowrap;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #f2f0ed;
}

.home-page .site-footer {
  min-height: 420px;
  padding: 62px 80px;
}

.home-page .footer-logo {
  width: 119px;
}

.home-page .site-footer nav {
  gap: 68px;
  padding-top: 18px;
  font-size: 14px;
}

.home-page .copyright {
  right: 80px;
  bottom: 22px;
  opacity: 0.58;
}

@media (max-width: 1080px) {
  .home-page .hero-marquee {
    font-size: 112px;
    line-height: 120px;
    letter-spacing: -2.24px;
  }

  .home-page .site-header {
    height: 92px;
    padding-inline: 28px;
  }

  .home-page .header-logo {
    width: 200px;
  }

  .home-page .global-nav {
    gap: 20px;
    font-size: 13px;
  }

  .home-page .instagram-link img {
    width: 38px;
    height: 39px;
  }

  .home-page .header-contact {
    min-width: auto;
    min-height: 56px;
    padding-inline: 22px;
  }

  .home-page .project-carousel {
    width: 100%;
    margin-inline: 0;
  }

  .home-page .project-swiper {
    width: 100%;
    margin-left: 0;
  }

  .home-page .service-item {
    grid-template-columns: 150px minmax(260px, 0.9fr) minmax(300px, 1.1fr);
    gap: 34px;
    padding-right: 44px;
  }

  .home-page .service-number {
    padding-left: 44px;
  }

  .home-page .about-grid {
    grid-template-columns: minmax(250px, 0.8fr) minmax(360px, 1.2fr);
  }

  .home-page .news-card {
    width: 100%;
    margin-inline: 0;
  }
}

@media (max-width: 860px) {
  .home-page .hero-marquee {
    font-size: 88px;
    line-height: 96px;
    letter-spacing: -1.76px;
    bottom: -36px;
  }

  .home-page .site-header {
    height: 78px;
    padding-inline: 20px;
  }

  .home-page .header-logo {
    width: 180px;
  }

  .home-page .global-nav {
    gap: 0 14px;
    font-size: var(--font-size-mobile-menu);
  }

  .home-page .global-nav .header-contact {
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    margin-top: 26px;
    padding-inline: 24px;
    color: var(--color-deep);
    background: var(--color-yellow);
  }

  .home-page .hero {
    height: 760px;
    min-height: 760px;
    max-height: none;
    position: relative;
  }

  .home-page .hero-bubbles {
    right: -44px;
  }

  .home-page .service-section {
    padding-inline: var(--side-space);
  }

  .home-page .service-section > .section-heading {
    width: 100%;
    padding-left: 0;
  }

  .home-page .service-list {
    width: 100%;
  }

  .home-page .service-item {
    grid-template-columns: 92px 1fr;
    gap: 28px;
    min-height: 0;
    padding: 44px 10px;
  }

  .home-page .service-number {
    padding-left: 0;
  }

  .home-page .about-inner {
    padding-bottom: 190px;
  }

  .home-page .about-outline {
    display: block;
    top: 150px;
    width: 900px;
    height: 132px;
    font-size: 156px;
    line-height: 86px;
    letter-spacing: 3.12px;
    -webkit-text-stroke-width: 1.25px;
  }

  .home-page .about-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    padding-bottom: 150px;
  }

  .home-page .about-catch {
    height: 520px;
    transform: none;
  }

  .home-page .about-catch span {
    font-size: 36px;
  }

  .home-page .about-message {
    width: min(100%, 470px);
    padding-top: 40px;
    transform: none;
  }

  .home-page .about-photo {
    width: min(100%, 417px);
    margin-left: 0;
  }

  .home-page .about-statement {
    width: min(100%, 470px);
    height: auto;
    margin-left: 0;
    padding-left: 0;
  }

  .home-page .news-card {
    width: calc(100% + (var(--side-space) * 2));
    min-height: 0;
    margin-inline: calc(var(--side-space) * -1);
  }

  .home-page .site-footer {
    padding-inline: var(--side-space);
  }
}

@media (min-width: 861px) and (max-height: 820px) {
  .home-page .hero-content {
    bottom: 144px;
  }

  .home-page .hero-bubbles {
    width: 330px;
    height: 318px;
  }

  .home-page .hero-marquee {
    bottom: -5%;
    font-size: 132px;
    line-height: 140px;
    letter-spacing: -2.64px;
  }

  .home-page .project-section {
    padding-top: 150px;
  }
}

@media (max-width: 640px) {
  .home-page .header-logo {
    width: 158px;
  }

  .home-page .hero {
    height: 500px;
    min-height: 500px;
  }

  .home-page .hero-content {
    bottom: 80px;
    left: var(--side-space);
  }

  .home-page .hero-kicker {
    gap: 16px;
    align-items: center;
    font-size: 19px;
  }

  .home-page .hero-kicker-text {
    flex-direction: column;
    gap: 0;
  }

  .home-page .hero-kicker::before {
    width: 38px;
  }

  .home-page .hero-bubbles {
    right: 0;
    bottom: 5%;
    width: 230px;
    height: 222px;
    transform: none;
  }

  .home-page .hero-marquee {
    bottom: -34px;
    font-size: 70px;
    letter-spacing: -1.4px;
  }

  .home-page .project-section {
    padding-top: 96px;
    padding-bottom: 110px;
  }

  .home-page .project-carousel {
    height: auto;
    overflow: hidden;
  }

  .home-page .project-carousel::before {
    inset: 34px 0 0;
    border-radius: 28px;
  }

  .home-page .project-swiper {
    width: auto;
    height: auto;
    margin-left: 0;
    padding-bottom: 116px;
  }

  .home-page .project-slide {
    width: calc(100% - 48px);
  }

  .home-page .project-card,
  .home-page .project-card.is-active {
    width: 100%;
  }

  .home-page .project-card:not(.is-active) {
    transform: none;
  }

  .home-page .project-card:not(.is-active) h3,
  .home-page .project-card:not(.is-active) .project-tags {
    visibility: visible;
  }

  .home-page .project-card h3,
  .home-page .project-card.is-active h3 {
    display: table;
    margin: 26px 0 0 15px;
  }

  .home-page .project-card .project-tags,
  .home-page .project-card.is-active .project-tags {
    margin-top: 17px;
    margin-left: 19px;
  }

  .home-page .project-image,
  .home-page .project-card.is-active .project-image {
    aspect-ratio: 0.95;
  }

  .home-page .carousel-controls {
    bottom: 28px;
  }

  .home-page .carousel-controls button {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .home-page .service-section {
    padding-top: 0;
    padding-bottom: 0px;
  }

  .home-page .service-list {
    margin-top: 54px;
  }

  .home-page .service-item {
    grid-template-columns: 62px 1fr;
    gap: 20px;
    padding: 38px 0;
  }

  .home-page .service-number {
    padding: 0 10px 0 0;
    font-size: 42px;
  }

  .home-page .service-name h3 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .home-page .service-description {
    grid-column: 1 / -1;
    padding-left: 82px;
    font-size: 14px;
  }

  .home-page .about-section {
    border-radius: 0 62px 0 62px;
  }

  .home-page .about-inner {
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .home-page .about-outline {
    display: block;
    top: clamp(700px, 107svh, 999px);
    width: 520px;
    height: 66px;
    font-size: 80px;
    line-height: 42px;
    letter-spacing: 1.52px;
    opacity: 0.65;
    -webkit-text-stroke-width: 1px;
  }

  .home-page .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 58px;
    padding-bottom: 110px;
  }

  .home-page .about-catch {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
  }

  .home-page .about-catch span {
    padding: 2px 7px;
    font-size: 24px;
    letter-spacing: 0.05em;
    writing-mode: horizontal-tb;
  }

  .home-page .about-message {
    width: 100%;
    padding-top: 0;
  }

  .home-page .about-message p {
    font-size: 15px;
    letter-spacing: 0.6px;
  }

  .home-page .about-message .about-en {
    font-size: 20px;
    letter-spacing: 1px;
    text-align: left;
  }

  .home-page .about-statement {
    width: 100%;
    height: auto;
    padding-left: 0;
  }

  .home-page .about-statement p {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.6px;
  }

  .home-page .about-photo {
    width: 78%;
    margin-left: 0;
    justify-self: end;
  }

  .home-page .news-card {
    min-height: 0;
    margin-inline: calc(var(--side-space) * -1);
    padding: 70px var(--side-space);
    border-radius: 44px 0 60px 0;
  }

  .home-page .news-list {
    margin: 44px 0 54px;
  }

  .home-page .news-item {
    min-height: 0;
  }

  .home-page .company {
    width: 100%;
    margin-top: 110px;
  }

  .home-page .social-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .home-page .social-title {
    margin-bottom: -61px;
    font-size: 65px;
    line-height: 0.85;
    letter-spacing: 1.56px;
    text-align: center;
  }

  .home-page .social-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 111px 28px;
  }

  .home-page .social-card h3 {
    font-size: 20px;
    line-height: 1.8;
  }

  .home-page .social-card p {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.6px;
  }

  .home-page .social-card a {
    position: static;
    width: 100%;
    min-width: 0;
    min-height: 64px;
    margin-top: 28px;
    padding-inline: 24px;
    font-size: 14px;
  }

  .contact-section--home,
  .contact-home-link {
    min-height: 330px;
    height: 330px;
  }

  .contact-home-link h2 span:first-child {
    gap: 12px;
    width: min(260px, calc(100vw - 48px));
    min-width: 0;
    min-height: 58px;
    padding-inline: 24px;
    font-size: 16px;
  }

  .contact-home-link h2 span:last-child {
    bottom: 3px;
    font-size: 60px;
    line-height: 1;
    letter-spacing: 1.36px;
    -webkit-text-stroke-width: 1px;
  }

  .home-page .site-footer {
    min-height: 200px;
    padding: 48px var(--side-space);
  }

  .home-page .site-footer nav {
    grid-template-columns: 77px 1fr 1fr;
    gap: 12px;
    padding-top: 18px;
    font-size: 14px;
  }

  .home-page .footer-instagram {
    padding-right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Lower pages                                                                */
/* -------------------------------------------------------------------------- */

.site-header--inner {
  color: var(--color-deep);
}

.site-header--inner .header-logo img,
.site-header--inner .instagram-link img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(4%) saturate(390%)
    hue-rotate(337deg) brightness(96%) contrast(88%);
}

.site-header--inner .header-contact {
  color: var(--color-yellow);
}

.page-hero {
  position: relative;
  min-height: 575px;
  padding-top: 180px;
  overflow: hidden;
  background: var(--color-ivory) url("../images/2cond-main-back.png") center top /
    cover no-repeat;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
}

.page-hero__eyebrow {
  display: inline-block;
  margin: 0;
  padding: 0 5px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.45;
  background: var(--color-yellow);
}

.page-hero__description {
  max-width: 720px;
  margin: 70px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
}

.page-hero h1 {
  position: absolute;
  top: 175px;
  left: var(--side-space);
  z-index: -1;
  margin: 0;
  color: var(--color-white);
  width: min(962px, calc(100% - (var(--side-space) * 2)));
  height: 177px;
  font-family: "Zen Kaku Gothic New", var(--font-ja);
  font-size: 200px;
  font-weight: 700;
  line-height: 0.885;
  letter-spacing: 10px;
  white-space: nowrap;
}

.page-hero__bubbles {
  display: none;
}

.page-about,
.page-business,
.page-social,
.page-works,
.page-work-detail {
  background: var(--color-white);
}

.page-news-detail {
  background: var(--color-white);
}

.page-news-list {
  background: var(--color-white);
}

.page-contact {
  background: var(--color-white);
}

.contact-page-content {
  padding-top: 150px;
  padding-bottom: 150px;
}

.contact-page-inner {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.contact-page-content .dot-heading {
  font-size: 26px;
}

.contact-page-intro {
  margin: 54px 0 0 14px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.contact-page-intro p {
  width: fit-content;
  margin: 0 0 12px;
  padding: 0 5px;
/*  background: var(--color-ivory);*/
  border-radius: 3px;
}

.contact-form-wrap {
  margin-top: 88px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 30px;
}

.contact-form-row > label {
  padding-top: 14px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.consult-checkbox {
  margin: 50px 0;
}
.consult-checkbox .wpcf7-list-item {
  padding: 5px;
  line-height: 2;
}
.consult-checkbox .wpcf7-list-item:first-child {
  margin-left: 0;
}

.checkbox-box {
  background: var(--color-ivory);
  border-radius: 8px;
}

.contact-required {
  margin-left: 3px;
  color: #d82c1e;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  min-height: 60px;
  padding: 15px 20px;
  color: var(--color-deep);
  font: inherit;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  background: var(--color-ivory);
  border: 1px solid transparent;
  border-radius: 8px;
  appearance: none;
}

.wpcf7-select {
  appearance: base-select!important;
  width: 50%!important;
}

.wpcf7-textarea {
  display: block;
  resize: vertical;
}

.wpcf7-textarea.contact-address {
  min-height: 130px;
  height: 130px;
}

.wpcf7-textarea.contact-message {
  min-height: 260px;
  height: 260px;
}

.wpcf7-form-control:not(.wpcf7-submit):focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-color: var(--color-deep);
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 7px;
  color: #d82c1e;
  font-size: 14px;
  line-height: 1.6;
}

.wpcf7 form .wpcf7-response-output {
  margin: 32px 0 0 220px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.7;
  border: 1px solid var(--color-yellow);
  border-radius: 5px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #d82c1e;
}

.wpcf7-spinner {
  vertical-align: middle;
  display: block;
}

.contact-submit {
  display: flex;
  justify-content: center;
  margin: 108px 0 0;
}
.contact-submit-box {
  text-align: center;
}
.contact-agree {
  display: flex;
  justify-content: center;
  margin: 70px 0 0;
}
.contact-agree a {
  text-decoration: underline;
}



.wpcf7-submit {
  display: inline-flex;
  min-width: 230px;
  height: 74px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--color-yellow);
  font: inherit;
  font-size: 17px;
  font-weight: 500;
/*  letter-spacing: 0.16em;*/
  cursor: pointer;
  background: var(--color-charcoal);
  border: 0;
  border-radius: 999px;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.wpcf7-submit:hover,
.wpcf7-submit:focus-visible {
  color: var(--color-charcoal);
  background: var(--color-yellow);
}

.wpcf7-submit:focus-visible {
  outline: 2px solid var(--color-deep);
  outline-offset: 3px;
}

.contact-privacy {
  margin-top: 165px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.contact-privacy section + section {
  margin-top: 48px;
}

.contact-privacy h2 {
  margin: 0 0 18px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.6;
}

.contact-privacy p,
.contact-privacy ol {
  margin: 0;
}

.contact-privacy ol {
  padding-left: 1.6em;
}

.contact-privacy li + li {
  margin-top: 25px;
}

.sign_right {
  text-align: right;
}

.contact-thanks {
  min-height: 720px;
  padding-top: 150px;
  padding-bottom: 170px;
}

.contact-thanks-inner {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.contact-thanks .dot-heading {
  font-size: 26px;
}

.contact-thanks-message {
  margin-top: 58px;
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.contact-thanks-message p {
  margin: 0 0 12px;
}

.contact-thanks-button {
  width: fit-content;
  min-width: 220px;
  margin: 90px auto 0;
}

.page-not-found {
  background: var(--color-white);
}

.not-found-content {
  min-height: 570px;
  padding-top: 145px;
  padding-bottom: 150px;
}

.not-found-inner {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.not-found-inner .dot-heading {
  font-size: 26px;
}

.not-found-inner > p {
  margin: 55px 0 0 24px;
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.not-found-inner .button {
  width: fit-content;
  min-width: 220px;
  margin: 85px auto 0;
}

.news-archive {
  width: min(calc(100% - (var(--side-space) * 2)), 1240px);
  margin-inline: auto;
  padding: 120px clamp(30px, 7vw, 100px) 110px;
  background: var(--color-ivory);
  border-radius: 48px 48px 90px 0;
}

.news-archive::after {
  display: none;
}

.news-archive .news-list {
  max-width: 940px;
  margin-top: 70px;
}

.news-archive .news-item {
  grid-template-columns: 125px 110px 1fr 32px;
  min-height: 88px;
}

.news-archive .news-item time,
.news-archive .news-title {
  color: #000;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.85px;
}

.news-archive .news-category {
  color: #53504e;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.7px;
  background: var(--color-ivory);
}

.news-pagination {
  margin-top: 74px;
}

.pagination span {
  display: grid;
  width: 50px;
  height: 50px;
  color: inherit;
  border: 1px solid var(--color-line);
  opacity: 0.45;
  place-items: center;
}

.pagination > * + * {
  border-left: 0;
}

.news-single {
  padding-top: 150px;
  padding-bottom: 140px;
}

.news-single__header,
.news-single__body {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.news-single__header {
  margin-bottom: 54px;
}

.news-single__header .dot-heading {
  font-size: 26px;
}

.news-single__meta {
  margin: 20px 0 0;
  color: #76716d;
  font-size: 15px;
}

.news-single__meta span {
  margin-left: 20px;
  padding: 3px 10px;
  background: var(--color-ivory);
  border-radius: 3px;
}

.news-single__body {
  font-size: 17px;
  line-height: 2.25;
  letter-spacing: 0.05em;
}

.news-single__body p {
  margin: 0 0 34px;
}

.news-single__image {
  min-height: 500px;
  margin-top: 105px;
}

.news-single__back {
  display: flex;
  justify-content: center;
  margin-top: 105px;
}

.news-single__back .button {
  min-width: 220px;
}

.page-hero + * {
  position: relative;
  z-index: 1;
  margin-top: -48px;
  isolation: isolate;
}

.page-hero + *::before {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  content: "";
  background: var(--color-white);
  border-radius: 48px 48px 0 0;
  transform: translateX(-50%);
}

.page-hero__bubbles span {
  position: absolute;
  display: block;
  background: rgba(245, 234, 121, 0.78);
  border-radius: 50%;
}

.page-hero__bubbles span:nth-child(1) {
  top: -110px;
  left: 230px;
  width: 270px;
  height: 270px;
}

.page-hero__bubbles span:nth-child(2) {
  top: 90px;
  left: 360px;
  width: 290px;
  height: 290px;
}

.page-hero__bubbles span:nth-child(3) {
  top: 240px;
  left: 90px;
  width: 250px;
  height: 250px;
}

.page-hero__bubbles span:nth-child(4) {
  top: 360px;
  left: 0;
  width: 170px;
  height: 170px;
}

.page-hero__bubbles span:nth-child(5) {
  top: 335px;
  left: 535px;
  width: 230px;
  height: 230px;
}

.lower-section {
  padding-top: 105px;
  padding-bottom: 105px;
}

.lower-section-content {
  padding-top: 1px;
  padding-bottom: 105px;
}

.dot-heading {
  position: relative;
  margin: 0;
  padding-left: 24px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
}

.dot-heading::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 13px;
  height: 13px;
  content: "";
  background: var(--color-yellow);
  border-radius: 50%;
}

.dot-heading--light {
  color: var(--color-white);
}

.copy-lines {
  max-width: 920px;
  margin: 65px 0 0 20px;
}

.copy-lines p {
  display: table;
  margin: 0 0 13px;
  padding: 0 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  background: var(--color-ivory);
}

@media (min-width: 861px) {
  .page-about .about-promise-section {
    --content-width: 1080px;
  }

  .page-about .about-promise-section .copy-lines {
    width: calc(100% - 24px);
    max-width: none;
    margin-left: 24px;
  }

  .page-about .about-vision-section {
    --content-width: 1080px;
  }

  .page-about .about-vision-section .vision-visual h3 {
    margin-left: 0;
  }

  .page-about .about-vision-section .vision-grid {
    width: calc(100% - 24px);
    margin-left: 24px;
  }

  .page-about .about-organization > .section-shell {
    --content-width: 970px;
  }

  .page-about .about-organization .organization-grid,
  .page-about .about-organization .accordion-list {
    width: calc(100% - 24px);
    max-width: none;
    margin-right: 0;
    margin-left: 24px;
  }

  .page-about .about-company-section {
    --content-width: 1080px;
  }

  .page-about .about-company-section .profile-table {
    width: calc(100% - 24px);
    max-width: none;
    margin-right: 0;
    margin-left: 24px;
  }

  .page-about .access-section {
    --content-width: 1080px;
  }

  .page-about .access-section .access-layout {
    width: calc(100% - 24px);
    max-width: none;
    margin-right: 0;
    margin-left: 24px;
  }
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 70px;
}

.vision-visual h3 {
  margin: 0 0 60px 65px;
  font-size: 30px;
  line-height: 1.9;
}

.vision-visual .image-placeholder {
  width: 78%;
  margin-right: auto;
}

.vision-copy {
  padding-top: 70px;
}

.vision-copy p {
  margin: 0 0 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
}

.image-placeholder {
  position: relative;
  display: grid;
  min-height: 330px;
  overflow: hidden;
  color: rgba(83, 80, 78, 0.46);
  background:
    radial-gradient(circle at 80% 15%, rgba(245, 234, 121, 0.66) 0 17%, transparent 17.5%),
    radial-gradient(circle at 66% 34%, rgba(245, 234, 121, 0.48) 0 13%, transparent 13.5%),
    linear-gradient(135deg, #d7d4cf, #ece9e4);
  place-items: center;
}

.image-placeholder::after {
  position: absolute;
  right: 16px;
  bottom: 12px;
  content: attr(data-placeholder-file);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.image-placeholder > span {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.lower-dark {
  padding-top: 110px;
  padding-bottom: 120px;
  color: var(--color-white);
  background: var(--color-charcoal);
  border-radius: 0 120px 0 0;
}

.about-organization {
  min-height: 0;
  scroll-margin-top: 90px;
}

.page-business > .lower-section {
  padding-bottom: 35px;
}

.page-business .process-section {
  margin-bottom: 60px;
  padding-top: 95px;
  padding-bottom: 65px;
}

.business-team-section {
  padding-top: 20px;
  padding-bottom: 120px;
}

.business-team-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: start;
  max-width: 1300px;
  margin-inline: auto;
  padding: 68px 76px;
  background: var(--color-white);
  border: 1px solid rgba(83, 80, 78, 0.2);
  border-radius: 52px 0 70px 0;
}

.business-team-kicker {
  margin: 0 0 20px 24px;
  color: #8a837e;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.business-team-copy > p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.business-team-departments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.business-team-departments li {
  padding: 7px 15px;
  color: var(--color-deep);
  font-size: 14px;
  font-weight: 500;
  background: var(--color-yellow);
  border-radius: 4px;
}

.page-business .works-feature {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-business .faq-card {
  margin-top: 70px;
  padding-top: 65px;
  padding-bottom: 65px;
}

.page-social > .lower-section {
  padding-bottom: 60px;
}

.page-social .social-project-row {
  margin-bottom: 70px;
}

.page-social .social-projects {
  padding-bottom: 70px;
}

.page-works .works-archive {
  padding-bottom: 128px;
}

.page-works .pagination {
  margin-top: 80px;
}

.page-work-detail .work-detail {
  padding-top: 50px;
}

.page-work-detail .work-detail__hero {
  margin-top: 50px;
  margin-bottom: 70px;
}

.page-work-detail .work-detail__summary {
  padding-top: 55px;
  padding-bottom: 55px;
}

.page-work-detail .work-gallery {
  padding-top: 80px;
}

.page-work-detail .work-back {
  padding-top: 70px;
  padding-bottom: 90px;
}

.organization-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 160px 210px;
  max-width: 970px;
  margin: 80px auto 0;
}

.department-card {
  position: relative;
  z-index: 2;
  min-height: 240px;
  padding: 14px;
  color: var(--color-deep);
  background: var(--color-white);
  border-radius: 10px;
}

.department-card header {
  padding: 14px 20px;
  text-align: center;
  background: var(--color-yellow);
  border-radius: 7px;
}

.department-card h3,
.department-card header p {
  margin: 0;
}

.department-card h3 {
  font-size: 24px;
  line-height: 1.35;
}

.department-card header p {
  font-size: 13px;
  font-weight: 500;
}

.department-card ul {
  margin: 20px 0 0;
  padding: 0 14px 12px 30px;
  font-size: 14px;
  line-height: 1.8;
}

.organization-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.organization-cross::before,
.organization-cross::after {
  position: absolute;
  content: "";
  background: var(--color-white);
}

.organization-cross::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
}

.organization-cross::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
}

.department-details {
  margin-top: 130px;
}

.department-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 46px;
}

.department-category h4 {
  margin: 0;
  padding-bottom: 10px;
  font-size: 18px;
  line-height: 1.5;
  border-bottom: 2px solid var(--color-yellow);
}

.department-category ul {
  margin: 16px 0 0;
  padding-left: 1.35em;
  font-size: 14px;
  line-height: 1.85;
}

.department-category li + li {
  margin-top: 8px;
}

.accordion-list,
.faq-list {
  max-width: 950px;
  margin: 55px auto 0;
}

.accordion {
  margin-bottom: 18px;
  color: var(--color-deep);
  background: var(--color-white);
  border-radius: 10px;
}

.accordion h3 {
  margin: 0;
}

.accordion button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 82px;
  padding: 12px 24px;
  color: inherit;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.accordion button > span:first-child {
  flex: 1;
  padding: 12px 20px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  background: var(--color-yellow);
  border-radius: 8px;
}

.accordion button small {
  display: block;
  font-size: 12px;
}

.accordion-icon {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  margin-left: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.25s ease;
}

.accordion.is-open .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
  display: block;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.accordion-panel > * {
  min-height: 0;
  margin: 0;
  padding: 0 52px;
}

.accordion.is-open .accordion-panel {
  height: auto;
}

.accordion.is-open .accordion-panel > * {
  padding-top: 24px;
  padding-bottom: 34px;
}

.profile-table {
  max-width: 790px;
  margin: 70px auto 0;
}

.profile-table div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 40px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--color-line);
}

.profile-table dt {
  font-weight: 500;
}

.profile-table dd {
  margin: 0;
}

.numbers-section {
  margin: 40px var(--side-space) 120px;
  padding: 85px 0;
  background: var(--color-white);
  border-radius: 70px 0 90px 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.number-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  padding: 30px;
  color: #111;
  background: var(--color-yellow);
  border-radius: 12px;
}

.number-card h3 {
  margin: 0;
  font-size: 20px;
  text-align: center;
}

.number-card p {
  margin: 0;
  line-height: 1;
  text-align: center;
}

.number-card strong {
  font-size: 78px;
  letter-spacing: -0.04em;
}

.number-card span {
  margin-left: 6px;
  font-size: 22px;
  font-weight: 500;
}

.intro-copy {
  max-width: 1030px;
  margin: 65px 0 0 20px;
}

.intro-copy p {
  display: table;
  margin: 0 0 13px;
  padding: 0 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  background: var(--color-white);
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin: 55px 0 0 20px;
}

.topic-tags span {
  padding: 7px 18px;
  color: #111;
  font-size: 18px;
  font-weight: 500;
  background: var(--color-yellow);
  border-radius: 5px;
}

.cood-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  margin-top: 75px;
  padding: 75px;
  background: #ebe9e5;
  border-radius: 70px 0 90px 0;
}

.cood-feature > img {
  justify-self: center;
}

.cood-feature > div {
  padding: 38px;
  background: var(--color-white);
  border-radius: 12px;
}

.cood-feature h3 {
  margin: 0 0 20px;
  font-size: 23px;
}

.cood-feature p {
  margin: 0;
  font-size: 16px;
}

.social-projects {
  padding-top: 70px;
  padding-bottom: 130px;
}

.social-project-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: center;
  margin-bottom: 110px;
}

.social-project-row--reverse > div:first-child {
  order: 2;
}

.social-project-row__copy {
  max-width: 540px;
}

.social-project-eyebrow {
  margin: 0 0 15px;
  color: #7b746f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.social-project-row h2 {
  display: inline;
  margin: 0;
  font-size: 25px;
  line-height: 1.6;
  background: var(--color-yellow);
  box-shadow: 6px 0 0 var(--color-yellow), -6px 0 0 var(--color-yellow);
}

.social-project-row .social-project-description {
  margin: 35px 0 0;
  font-size: 17px;
  line-height: 2.2;
}

.social-project-visual {
  width: 100%;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px 0 38px 0;
}

.social-project-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.social-project-examples {
  margin-top: 30px;
  padding-top: 23px;
  border-top: 1px solid rgba(83, 80, 78, 0.3);
}

.social-project-examples h3 {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.social-project-examples ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-project-examples li {
  padding: 6px 11px;
  font-size: 13px;
  line-height: 1.5;
  background: var(--color-white);
  border: 1px solid rgba(83, 80, 78, 0.24);
  border-radius: 999px;
}

.social-project-row .image-placeholder {
  min-height: 390px;
}

.business-main-image {
  min-height: 500px;
  margin-top: 75px;
}

.business-main-slider {
  position: relative;
  margin-top: 75px;
  overflow: hidden;
  background: #eceae7;
  border-radius: 42px 0 58px 0;
}

.business-main-swiper {
  width: 100%;
  overflow: hidden;
}

.business-main-swiper .swiper-slide {
  aspect-ratio: 1400 / 626;
  background: #eceae7;
}

.business-main-swiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.business-main-controls {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(83, 80, 78, 0.12);
}

.business-main-prev,
.business-main-next {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--color-deep);
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(83, 80, 78, 0.5);
  border-radius: 50%;
  place-items: center;
}

.business-main-prev:hover,
.business-main-next:hover,
.business-main-prev:focus-visible,
.business-main-next:focus-visible {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}

.business-main-pagination {
  display: flex;
  gap: 7px;
  width: auto !important;
}

.business-main-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: #b7b1ac;
  opacity: 1;
}

.business-main-pagination .swiper-pagination-bullet-active {
  background: var(--color-deep);
}

.process-section {
  margin: 60px var(--side-space) 120px;
  padding: 90px 0;
  background: #ebe9e5;
  border-radius: 80px 0 100px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 55px;
  max-width: 1300px;
  margin-inline: auto;
}

.project-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.vision-visual > img {
  display: block;
  width: 78%;
  height: auto;
  aspect-ratio: 480 / 269;
  margin-right: auto;
  object-fit: cover;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.45fr);
  gap: 60px;
  align-items: end;
  max-width: 1080px;
  margin: 65px auto 0;
}

.access-map {
  margin: 0;
  padding: 24px;
  background: var(--color-ivory);
}

.access-map img {
  display: block;
  width: 100%;
  height: auto;
}

.access-copy {
  padding-bottom: 28px;
}

.access-copy p {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.access-copy address {
  font-size: 15px;
  font-style: normal;
  line-height: 1.9;
}

.works-mini-placeholder > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Form 7 adds a paragraph around each row's controls. Displaying
   that wrapper as contents preserves the static design's two-column grid. */
.contact-form-row > p {
  display: contents;
}

.contact-form-row > p > br {
  display: none;
}

.process-card {
  position: relative;
  min-height: 185px;
  padding: 50px 30px 28px;
  color: #111;
  background: var(--color-yellow);
}

.process-card h2 {
  position: absolute;
  top: -25px;
  left: -20px;
  width: calc(100% - 50px);
  margin: 0;
  padding: 12px 18px;
  font-size: 21px;
  background: var(--color-white);
  border: 1px solid #111;
  border-radius: 5px;
  font-weight: 500;
}

.process-card h2 span {
  margin-right: 8px;
}

.process-card p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.works-feature {
  border-radius: 0 130px 0 0;
}

.works-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 65px;
}

.works-mini-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--color-white);
}

.works-mini-placeholder {
  overflow: hidden;
  background: #989898;
}

.works-mini-placeholder .image-placeholder {
  min-height: 0;
  aspect-ratio: 1.55;
  background: #989898;
}

.works-mini-grid img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.works-mini-grid a:hover img {
  transform: scale(1.03);
}

.works-mini-grid span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 10px;
  color: var(--color-deep);
  font-size: 13px;
  font-weight: 500;
  background: var(--color-yellow);
}

.centered-button {
  display: flex;
  width: fit-content;
  margin: 60px auto 0;
}

.faq-card {
  margin-top: 110px;
  padding: 85px 90px;
  color: var(--color-deep);
  background: var(--color-white);
  border-radius: 70px 0 90px 0;
}

.faq-list {
  max-width: none;
}

.faq-accordion {
  margin: 0;
  background: transparent;
  border-bottom: 1px solid var(--color-line);
  border-radius: 0;
}

.faq-accordion button {
  padding-inline: 0;
}

.faq-accordion button > span:first-child {
  display: flex;
  gap: 25px;
  align-items: center;
  padding: 16px 20px;
  font-size: 16px;
  text-align: left;
  background: #eeece9;
}

.faq-accordion button b,
.faq-accordion p b {
  margin-right: 18px;
  font-size: 24px;
  font-weight: 500;
}

.works-archive {
  padding-top: 70px;
  padding-bottom: 140px;
}

.works-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: center;
}

.works-filters button,
.works-filters a {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  color: var(--color-deep);
  cursor: pointer;
  background: var(--color-white);
  border: 1px solid var(--color-deep);
  border-radius: 999px;
  text-decoration: none;
}

.works-filters button.is-active,
.works-filters button:hover,
.works-filters button:focus-visible,
.works-filters a.is-active,
.works-filters a:hover,
.works-filters a:focus-visible {
  background: var(--color-yellow);
  border-style: solid;
}

.works-filter-icon {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
}

.works-purpose-nav {
  padding-top: 70px;
  padding-bottom: 70px;
}

.filter-result {
  margin: 40px 0 0;
  font-size: 14px;
  text-align: right;
}

.works-archive__heading {
  margin-bottom: 38px;
}

.works-empty {
  margin: 80px 0;
  font-size: 17px;
  line-height: 2;
  text-align: center;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 44px;
  margin-top: 38px;
}

.work-card[hidden] {
  display: none;
}

.work-card__image {
  aspect-ratio: 1.45;
  overflow: hidden;
  background: #ddd;
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.work-card__primary:hover .work-card__image img {
  transform: scale(1.035);
}

.work-card h2 {
  display: -webkit-box;
  margin: 19px 0 12px;
  overflow: hidden;
  font-size: 20px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.work-card__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  min-height: 31px;
}

.work-card__terms a {
  padding: 3px 10px;
  color: var(--color-white);
  font-size: 13px;
  background: var(--color-charcoal);
  border-radius: 3px;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.work-card__terms a:hover,
.work-card__terms a:focus-visible {
  color: var(--color-deep);
  background: var(--color-yellow);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 120px;
}

.pagination a,
.pagination button {
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  color: inherit;
  font: inherit;
  background: transparent;
  border: 1px solid var(--color-line);
  place-items: center;
}

.pagination a + a,
.pagination button + button {
  border-left: 0;
}

.pagination a[aria-current="page"],
.pagination button[aria-current="page"] {
  background: var(--color-yellow);
}

.pagination button:disabled {
  cursor: default;
  opacity: 0.55;
}

.work-detail {
  padding-top: 80px;
}

.work-detail__hero {
  max-width: 1000px;
  margin: 70px auto 100px;
}

.work-detail__hero img {
  width: 100%;
  max-height: 710px;
  object-fit: cover;
}

.work-detail__summary {
  padding: 70px 0;
  background: #ebe9e5;
}

.work-summary-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  max-width: 1000px;
}

.work-summary-grid--terms-only {
  grid-template-columns: 1fr;
}

.work-summary-grid dl {
  margin: 0;
}

.work-summary-grid dl > div {
  margin-bottom: 32px;
}

.work-summary-grid dt,
.work-detail__copy h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 500;
}

.work-summary-grid dd {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
}

.work-summary-grid dd span,
.work-summary-grid dd a {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  color: var(--color-white);
  text-decoration: none;
  background: var(--color-charcoal);
  border-radius: 3px;
}

.work-summary-grid dd .outline-tag {
  color: var(--color-deep);
  background: transparent;
  border: 1px solid var(--color-deep);
}

.work-summary-grid dd .yellow-tag {
  color: #111;
  background: var(--color-yellow);
}

.work-detail__copy p {
  margin: 0 0 35px;
  font-size: 16px;
  line-height: 2.2;
}

.work-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 120px;
}

.work-gallery .image-placeholder {
  min-height: 370px;
}

.work-gallery figure {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
}

.work-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.work-back {
  display: flex;
  justify-content: center;
  padding: 100px 24px 140px;
}

.recruit-info {
  margin: 30px 0;
}

.recruit-info p {
  background: none;
}

@media (max-width: 1080px) {
  .page-hero h1 {
    top: 229px;
    height: auto;
    font-size: clamp(88px, 13vw, 140px);
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .page-hero__bubbles {
    right: -210px;
    transform: scale(0.86);
  }

  .organization-grid {
    gap: 130px 150px;
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header--inner {
    color: var(--color-white);
  }

  .site-header--inner .header-logo img,
  .site-header--inner .instagram-link img {
    filter: none;
  }

  .page-hero {
    min-height: 560px;
    padding-top: 160px;
  }

  .about-organization {
    min-height: 0;
  }

  .page-hero h1 {
    top: 390px;
    font-size: clamp(66px, 12vw, 92px);
  }

  .page-hero__description {
    max-width: 520px;
    margin-top: 55px;
    font-size: 16px;
  }

  .vision-grid,
  .cood-feature,
  .social-project-row,
  .work-summary-grid {
    gap: 55px;
  }

  .organization-grid {
    gap: 100px 80px;
  }

  .business-team-panel {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 58px 50px;
  }

  .process-grid {
    gap: 65px 40px;
  }

  .faq-card {
    padding: 70px 50px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 400px;
    padding-top: 130px;
    background-image: url("../images/2cond_main_back_sp.png");
    background-position: 100% 80%;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .page-hero__eyebrow {
    font-size: 20px;
  }

  .page-hero__description {
    margin-top: 44px;
    font-size: 14px;
    line-height: 1.9;
  }

  .page-hero h1 {
    top: 161px;
    width: calc(100% - (var(--side-space) * 2));
    height: auto;
/*    font-size: clamp(42px, 13vw, 58px);*/
    line-height: 1;
    letter-spacing: 0.03em;
  }

  .page-hero__bubbles {
    display: none;
  }

  .service-promo-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .service-promo-section .social-title {
    margin-bottom: -61px;
    font-size: 65px;
    line-height: 0.85;
    letter-spacing: 1.56px;
    text-align: center;
  }

  .service-promo-section .social-card {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 0;
    padding: 111px 28px;
  }

  .service-promo-section .social-card h3 {
    font-size: 20px;
    line-height: 1.8;
  }

  .service-promo-section .social-card p {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.6px;
  }

  .service-promo-section .social-card a {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    margin-top: 28px;
    padding-inline: 20px;
    font-size: 13px;
  }

  .contact-page-content {
    padding-top: 82px;
    padding-bottom: 100px;
  }

  .contact-page-content .dot-heading {
    font-size: 21px;
  }

  .contact-page-intro {
    margin: 38px 0 0;
    font-size: 14px;
    line-height: 1.9;
  }

  .contact-page-intro p {
    width: auto;
    margin-bottom: 8px;
  }

  .contact-form-wrap {
    margin-top: 64px;
  }

  .contact-form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
    margin-bottom: 25px;
  }

  .contact-form-row > label {
    padding-top: 0;
    font-size: 16px;
    font-weight: 500;
  }

  .wpcf7-form-control:not(.wpcf7-submit) {
    min-height: 54px;
    padding: 13px 15px;
    font-size: 16px;
  }
  .wpcf7-select {
    width: 100%!important;
  }

  .wpcf7 form .wpcf7-response-output {
    margin: 25px 0 0;
  }

  .wpcf7-textarea.contact-address {
    min-height: 115px;
  }

  .wpcf7-textarea.contact-message {
    min-height: 210px;
  }

  .contact-submit {
    margin-top: 64px;
  }

  .wpcf7-submit {
    width: 190px;
    height: 64px;
    font-size: 16px;
  }

  .contact-privacy {
    margin-top: 105px;
    font-size: 14px;
    line-height: 1.9;
  }

  .contact-privacy section + section {
    margin-top: 42px;
  }

  .contact-privacy h2 {
    margin-bottom: 14px;
    font-size: 19px;
  }

  .contact-privacy li + li {
    margin-top: 20px;
  }

  .contact-thanks {
    min-height: 540px;
    padding-top: 82px;
    padding-bottom: 110px;
  }

  .contact-thanks .dot-heading {
    font-size: 21px;
  }

  .contact-thanks-message {
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.9;
  }

  .contact-thanks-button {
    min-width: 190px;
    margin-top: 65px;
  }

  .not-found-content {
    min-height: 470px;
    padding-top: 82px;
    padding-bottom: 100px;
  }

  .not-found-inner .dot-heading {
    font-size: 21px;
  }

  .not-found-inner > p {
    margin: 38px 0 0;
    font-size: 14px;
    line-height: 1.9;
  }

  .not-found-inner .button {
    min-width: 190px;
    margin-top: 62px;
  }

  .news-single {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .news-archive {
    width: calc(100% - (var(--side-space) * 2));
    padding: 76px var(--side-space) 80px;
    border-radius: 36px 36px 54px 0;
  }

  .news-archive .news-list {
    margin-top: 48px;
  }

  .news-archive .news-item {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    min-height: 0;
    padding: 20px 0;
  }

  .news-archive .news-item time {
    grid-column: 1;
    font-size: 14px;
  }

  .news-archive .news-category {
    grid-column: 2;
    grid-row: 1;
    font-size: 12px;
  }

  .news-archive .news-title {
    grid-column: 1 / -1;
    font-size: 15px;
  }

  .news-archive .news-arrow {
    display: none;
  }

  .news-pagination {
    margin-top: 52px;
  }

  .pagination span {
    width: 42px;
    height: 42px;
  }

  .news-single__header {
    margin-bottom: 38px;
  }

  .news-single__header .dot-heading {
    font-size: 22px;
    line-height: 1.7;
  }

  .news-single__body {
    font-size: 15px;
    line-height: 2;
  }

  .news-single__image {
    min-height: 280px;
    margin-top: 65px;
  }

  .news-single__back {
    margin-top: 70px;
  }

  .lower-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .lower-section-content {
    padding-top: 1px;
    padding-bottom: 75px;
  }

  .dot-heading {
    padding-left: 20px;
    font-size: 23px;
  }

  .dot-heading::before {
    top: 11px;
    width: 11px;
    height: 11px;
  }

  .copy-lines,
  .intro-copy {
    margin: 45px 0 0;
  }

  .copy-lines p,
  .intro-copy p {
    display: block;
    font-size: 16px;
    background: transparent;
  }
  .recruit-section .recruit-text p {
    background: var(--color-ivory);
    display: inline-block;
  }
  .recruit-info p {
    background: var(--color-white);
  }

  .vision-grid,
  .cood-feature,
  .social-project-row,
  .work-summary-grid {
    grid-template-columns: 1fr;
  }

  .vision-visual h3 {
    margin: 0 0 40px;
    font-size: 25px;
  }

  .vision-visual .image-placeholder {
    width: 86%;
  }

  .vision-copy {
    padding-top: 0;
  }

  .access-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 45px;
  }

  .access-map {
    padding: 10px;
  }

  .access-copy {
    padding: 0 4px;
  }

  .image-placeholder {
    min-height: 280px;
  }

  .lower-dark,
  .works-feature {
    padding-top: 80px;
    border-radius: 0 62px 0 0;
  }

  .organization-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 55px;
  }

  .organization-cross {
    display: none;
  }

  .department-card {
    min-height: 0;
  }

  .department-details {
    margin-top: 90px;
  }

  .department-category-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .department-category h4 {
    font-size: 17px;
  }

  .department-category ul {
    font-size: 13px;
    line-height: 1.8;
  }

  .accordion button {
    min-height: 74px;
    padding: 10px;
  }

  .accordion button > span:first-child {
    padding: 12px;
    font-size: 18px;
  }

  .accordion-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    margin-left: 10px;
  }

  .accordion-panel > * {
    padding-inline: 22px;
  }

  .business-team-section {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .business-team-panel {
    gap: 30px;
    padding: 44px 24px;
    border-radius: 38px 0 52px 0;
  }

  .business-team-kicker {
    margin-left: 24px;
  }

  .business-team-copy > p {
    font-size: 15px;
    line-height: 1.9;
  }

  .business-team-copy .button {
    width: 100%;
    padding-inline: 20px;
  }

  .profile-table {
    margin-top: 45px;
  }

  .profile-table div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 17px 0;
  }

  .numbers-section,
  .process-section {
    margin-inline: 0;
    border-radius: 50px 0 62px 0;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .number-card {
    min-height: 155px;
    padding: 20px 12px;
  }

  .number-card h3 {
    font-size: 15px;
  }

  .number-card strong {
    font-size: 54px;
  }

  .number-card span {
    font-size: 16px;
    display: inline-block;
    margin-top: 4px;
  }

  .topic-tags {
    gap: 10px;
    margin: 40px 0 0;
  }

  .topic-tags span {
    padding: 5px 11px;
    font-size: 14px;
  }

  .cood-feature {
    gap: 45px;
    padding: 55px 24px;
    border-radius: 48px 0 60px 0;
  }

  .cood-feature > div {
    padding: 26px 22px;
  }

  .social-project-row {
    gap: 36px;
    margin-bottom: 85px;
  }

  .social-project-row--reverse > div:first-child {
    order: 0;
  }

  .social-project-row__copy {
    max-width: none;
  }

  .social-project-eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .social-project-row h2 {
    font-size: 21px;
  }

  .social-project-row .social-project-description {
    margin-top: 25px;
    font-size: 15px;
  }

  .social-project-examples {
    margin-top: 24px;
    padding-top: 18px;
  }

  .social-project-examples li {
    font-size: 12px;
  }

  .social-project-row .image-placeholder,
  .social-project-visual,
  .social-project-visual img,
  .business-main-image {
    min-height: 280px;
  }

  .business-main-slider {
    margin-top: 55px;
    border-radius: 24px 0 34px 0;
  }

  .business-main-controls {
    position: static;
    justify-content: center;
    padding: 13px 10px;
    background: var(--color-white);
    border-radius: 0;
    box-shadow: none;
  }

  .business-main-prev,
  .business-main-next {
    width: 38px;
    height: 38px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .process-card h2 {
    left: -8px;
    width: calc(100% - 14px);
    font-size: 18px;
  }

  .works-mini-grid,
  .works-grid,
  .work-gallery {
    grid-template-columns: 1fr;
  }

  .faq-card {
    margin-inline: calc(var(--side-space) * -1);
    padding: 65px var(--side-space);
    border-radius: 48px 0 60px 0;
  }

  .faq-accordion button > span:first-child {
    gap: 12px;
    font-size: 14px;
  }

  .faq-accordion button b,
  .faq-accordion p b {
    font-size: 20px;
  }

  .works-filters {
/*    flex-wrap: nowrap;*/
    justify-content: flex-start;
    margin-inline: calc(var(--side-space) * -1);
    padding-inline: var(--side-space);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .works-filters button,
  .works-filters a {
    flex: 0 0 auto;
    font-size: 0.8rem;
    min-height: 40px;
  }

  .vision-visual > img {
    width: 86%;
    height: 280px;
    aspect-ratio: auto;
  }

  .works-grid {
    gap: 58px;
  }

  .pagination {
    margin-top: 80px;
  }

  .pagination a {
    width: 42px;
    height: 42px;
  }

  .work-detail {
    padding-top: 50px;
  }

  .work-detail__hero {
    margin: 45px auto 70px;
  }

  .work-detail__summary {
    padding: 60px 0;
  }

  .work-gallery {
    gap: 16px;
    padding-top: 80px;
  }

  .work-gallery .image-placeholder {
    min-height: 280px;
  }
}

/* -------------------------------------------------------------------------- */
/* Mobile global navigation refinement                                        */
/* -------------------------------------------------------------------------- */

@media (max-width: 860px) {
  body.admin-bar .site-header {
    top: 32px;
  }

  body.admin-bar .global-nav {
    top: 32px;
  }

  body.menu-open .site-header {
    border-bottom-color: transparent;
  }

  .menu-button {
    width: 50px;
    height: 50px;
    padding-inline: 12px;
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 24px rgba(32, 30, 29, 0.16);
  }

  .menu-button[aria-expanded="true"] {
    box-shadow: 0 10px 30px rgba(32, 30, 29, 0.24);
    transform: rotate(90deg);
  }

  .global-nav {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 0 12px;
    align-content: start;
    padding: 104px var(--side-space) 28px;
    color: var(--color-white);
    counter-reset: mobile-menu-item;
    background: linear-gradient(
      145deg,
      #5e5b59 0%,
      var(--color-deep) 58%,
      #484543 100%
    );
  }

  .global-nav::before {
    grid-column: 1 / -1;
    display: block;
    margin-bottom: 18px;
    color: var(--color-yellow);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.24em;
    content: "MENU";
  }

  .global-nav::after {
    grid-column: 1 / -1;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.56);
    font-family: var(--font-en);
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.14em;
    content: "Designing a better tomorrow.";
  }

  .global-nav > a:not(.instagram-link, .header-contact) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 68px;
    padding: 0 18px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.055em;
    background: rgba(255, 255, 255, 0.045);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transform: translateX(12px);
    transition: color 0.25s ease, background 0.25s ease, opacity 0.3s ease,
      transform 0.3s ease;
  }

  .global-nav > a:not(.instagram-link, .header-contact)::before {
    width: auto;
    height: auto;
    color: var(--color-yellow);
    font-family: var(--font-en);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.08em;
    background: none;
    border-radius: 0;
    counter-increment: mobile-menu-item;
    content: "0" counter(mobile-menu-item);
  }

  .global-nav > a:not(.instagram-link, .header-contact)::after {
    display: block;
    position: static;
    width: auto;
    height: auto;
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1;
    content: "→";
    background: none;
    transform: none;
  }

  .global-nav.is-open > a:not(.instagram-link, .header-contact) {
    transform: translateX(0);
  }

  .global-nav > a:not(.instagram-link, .header-contact):hover,
  .global-nav > a:not(.instagram-link, .header-contact):focus-visible {
    color: var(--color-deep);
    background: var(--color-yellow);
    outline: none;
  }

  .global-nav > a:not(.instagram-link, .header-contact):hover::before,
  .global-nav > a:not(.instagram-link, .header-contact):focus-visible::before,
  .global-nav > a:not(.instagram-link, .header-contact):hover::after,
  .global-nav > a:not(.instagram-link, .header-contact):focus-visible::after {
    color: var(--color-deep);
  }

  .global-nav .instagram-link {
    width: 58px;
    height: 58px;
    margin-top: 24px;
    border: 1px solid rgba(245, 234, 121, 0.7);
    box-shadow: 0 8px 22px rgba(32, 30, 29, 0.18);
  }

  .global-nav .instagram-link img {
    filter: brightness(0) saturate(100%) invert(29%) sepia(4%) saturate(390%)
      hue-rotate(337deg) brightness(96%) contrast(88%);
  }

  .global-nav .header-contact,
  .home-page .global-nav .header-contact {
    min-height: 58px;
    margin-top: 24px;
    padding-inline: 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-deep);
    background: var(--color-yellow);
    box-shadow: 0 8px 22px rgba(32, 30, 29, 0.18);
  }
}

@media (max-width: 640px) {
  body.admin-bar .site-header,
  body.admin-bar .global-nav {
    top: 43px;
  }

  .global-nav {
    padding-top: 98px;
    padding-bottom: 22px;
  }

  .global-nav::before {
    margin-bottom: 12px;
  }

  .global-nav > a:not(.instagram-link, .header-contact) {
    min-height: 64px;
    padding-inline: 15px;
    font-size: 22px;
  }

  .global-nav::after {
    margin-top: 18px;
  }
}
