:root {
  --ink: #323232;
  --side-padding: min(5vw, 80px);
  --header-margin: 20px;
  --fv-bottom-margin: 40px;
  --site-scale: 1;
  --intro-gap: 160px;
  --philosophy-flow-offset: 0px;
  --company-flow-offset: 0px;
  --service-heading-top: 80px;
  --service-heading-height: 128px;
  --service-card-top: calc(var(--service-heading-top) + var(--service-heading-height));
  --service-section-padding: 80px;
  --service-sticky-lift: 20px;
  --service-scroll-length: 356vh;
  --service-bg-underlay: rgba(0, 0, 0, .16);
  --font-en: "futura-pt", "Futura PT", Futura, "Avenir Next Condensed", "Arial Black", sans-serif;
  --font-en-heavy: "futura-pt", "Futura PT", Futura, sans-serif;
  --font-ja: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
  background: transparent;
}

body {
  position: relative;
  margin: 0;
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-ja);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: -30px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom left,
    rgba(255, 120, 124, .052) 0%,
    rgba(255, 165, 108, .05) 9%,
    rgba(255, 210, 96, .047) 18%,
    rgba(186, 217, 125, .046) 27%,
    rgba(120, 224, 154, .045) 36%,
    rgba(107, 213, 197, .049) 45%,
    rgba(93, 201, 239, .052) 54%,
    rgba(123, 168, 247, .049) 63%,
    rgba(153, 134, 255, .045) 72%,
    rgba(204, 138, 230, .046) 81%,
    rgba(255, 142, 205, .047) 90%,
    rgba(255, 131, 164, .05) 95%,
    rgba(255, 120, 124, .052) 100%
  );
  animation: rainbow-flow 4.6667s linear infinite;
  filter: blur(18px) hue-rotate(0deg) saturate(1.05);
}

.ambient-glow-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-glow {
  position: absolute;
  inset: -30px;
  background: linear-gradient(
    to bottom left,
    rgba(255, 120, 124, .432) 0%,
    rgba(255, 165, 108, .408) 9%,
    rgba(255, 210, 96, .384) 18%,
    rgba(186, 217, 125, .374) 27%,
    rgba(120, 224, 154, .365) 36%,
    rgba(107, 213, 197, .398) 45%,
    rgba(93, 201, 239, .432) 54%,
    rgba(123, 168, 247, .398) 63%,
    rgba(153, 134, 255, .365) 72%,
    rgba(204, 138, 230, .374) 81%,
    rgba(255, 142, 205, .384) 90%,
    rgba(255, 131, 164, .408) 95%,
    rgba(255, 120, 124, .432) 100%
  );
  mask-image: radial-gradient(
    circle var(--glow-radius, 80px) at var(--glow-x, 50vw) var(--glow-y, 50vh),
    #000 0%,
    #000 24%,
    rgba(0, 0, 0, .7) 45%,
    rgba(0, 0, 0, .29) 72%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    circle var(--glow-radius, 80px) at var(--glow-x, 50vw) var(--glow-y, 50vh),
    #000 0%,
    #000 24%,
    rgba(0, 0, 0, .7) 45%,
    rgba(0, 0, 0, .29) 72%,
    transparent 100%
  );
  opacity: var(--glow-opacity, 0);
  filter: blur(18px) hue-rotate(0deg) saturate(1.08) brightness(var(--glow-intensity, 1));
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  pointer-events: none;
}

.site-logo {
  position: absolute;
  top: var(--header-margin);
  left: var(--header-margin);
  width: 207.73px;
  margin: 0;
  line-height: 0;
  pointer-events: auto;
}

.site-logo a {
  display: block;
}

.site-logo-mark {
  position: fixed;
  top: var(--header-margin);
  left: var(--header-margin);
  display: block;
  width: 40.5px;
  height: 24px;
  overflow: hidden;
  line-height: 0;
  opacity: 0;
  pointer-events: auto;
  transform: translate3d(0, calc(-100% - var(--header-margin)), 0);
  transition: opacity .22s ease, transform .32s cubic-bezier(.18, .78, .22, 1.08);
}

.site-logo-mark img {
  width: 207.73px;
  max-width: none;
  height: 24px;
}

.site-header.is-logo-mark-visible .site-logo-mark {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-nav-toggle {
  display: none;
}

.site-nav {
  position: fixed;
  top: var(--header-margin);
  right: var(--header-margin);
  display: grid;
  justify-items: end;
  row-gap: 16px;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: right;
  pointer-events: auto;
}

.site-nav a,
.site-nav__accordion-trigger {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: 0;
  text-decoration: none;
  text-align: right;
  transform: translateX(var(--dock-x, 0)) scale(var(--dock-scale, 1));
  transform-origin: right center;
  transition: transform .18s cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}

.site-nav__group {
  display: grid;
  justify-items: end;
}

.site-nav__submenu {
  display: grid;
  justify-items: end;
  gap: 8px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .24s ease, margin-top .24s ease, opacity .18s ease;
}

.site-nav__group.is-open .site-nav__submenu {
  max-height: 260px;
  margin-top: 10px;
  opacity: 1;
}

.site-nav__submenu a {
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .04em;
  white-space: nowrap;
  transform: none;
  will-change: auto;
}

main {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  padding-inline: var(--side-padding);
}

.fv {
  position: relative;
  width: calc(100% + (var(--side-padding) * 2));
  margin-left: calc(var(--side-padding) * -1);
  height: 100vh;
  height: 100svh;
  min-height: 560px;
}

.fv-copy {
  position: absolute;
  bottom: var(--fv-bottom-margin);
  left: 24.89px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-en);
  font-weight: 600;
  line-height: .86;
  letter-spacing: 0;
  transform-origin: left bottom;
}

.fv-copy span {
  display: block;
  white-space: nowrap;
}

.fv-copy__main {
  font-size: 207.64px;
}

.fv-copy__sub {
  margin-top: 9px;
  margin-left: 11.91px;
  font-size: 108px;
}

.intro-section {
  position: relative;
  width: calc(100% + (var(--side-padding) * 2));
  margin-left: calc(var(--side-padding) * -1);
  padding: 80px var(--side-padding);
}

.philosophy-layout {
  position: relative;
  display: grid;
  grid-template-columns: 753.58px minmax(0, 1fr);
  width: 100%;
  height: 384px;
  transform-origin: left top;
}

.philosophy-copy {
  position: relative;
  width: 753.58px;
  height: 384px;
}

.philosophy-logo {
  align-self: start;
  justify-self: center;
  width: 270.43px;
  height: 204.8px;
  margin-top: 64px;
}

.philosophy-item {
  position: absolute;
  left: 0;
  width: 753.58px;
  margin: 0;
}

.philosophy-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3.23px;
  height: 20px;
  border-radius: 1.62px;
  background: #f2d13c;
}

.philosophy-item::after {
  content: "";
  position: absolute;
  left: 240.5px;
  top: 0;
  width: 1px;
  background: var(--ink);
}

.philosophy-item--mission {
  top: 0;
  height: 136px;
}

.philosophy-item--mission::before {
  top: 55px;
}

.philosophy-item--mission::after {
  height: 136px;
}

.philosophy-item--vision {
  top: 216px;
  height: 168px;
}

.philosophy-item--vision::before {
  top: 71px;
}

.philosophy-item--vision::after {
  height: 168px;
}

.philosophy-label {
  position: absolute;
  left: 13.64px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-en-heavy);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.philosophy-item--mission .philosophy-label {
  top: 45.29px;
}

.philosophy-item--vision .philosophy-label {
  top: 61.29px;
}

.philosophy-body {
  position: absolute;
  left: 281px;
  top: 0;
  width: 472.58px;
  height: 168px;
}

.philosophy-ja {
  position: absolute;
  top: 0;
  left: 0;
  width: 472.58px;
  height: 96px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 40px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: 0;
}

.philosophy-en {
  position: absolute;
  top: 115px;
  left: 0;
  width: 472.58px;
  height: 52px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-en-heavy);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: .1em;
}

.philosophy-ja,
.philosophy-en {
  white-space: nowrap;
}

.company-panel {
  position: relative;
  left: 50%;
  width: 1040px;
  height: 512px;
  margin-top: 160px;
  transform: translateX(-50%);
  transform-origin: center top;
}

.company-media {
  position: relative;
  width: 1040px;
  height: 480px;
  border-radius: 100px;
  background: #969696;
  overflow: hidden;
}

.company-media__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-copy {
  position: absolute;
  z-index: 1;
  left: 63.2px;
  bottom: 74.66px;
  width: 913.6px;
  margin: 0;
  color: #fff;
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  letter-spacing: .1em;
  white-space: nowrap;
}

.company-copy__sign {
  display: block;
  margin-top: -1.74px;
  font-family: var(--font-en);
  font-weight: 300;
}

.company-button {
  position: absolute;
  top: 448px;
  left: 390px;
  width: 260px;
  font-family: var(--font-en);
  letter-spacing: .16em;
}

.service-section {
  position: relative;
  width: calc(100% + (var(--side-padding) * 2));
  margin-left: calc(var(--side-padding) * -1);
  height: calc(100vh + var(--service-scroll-length) + (var(--service-section-padding) * 2));
  height: calc(100svh + var(--service-scroll-length) + (var(--service-section-padding) * 2));
  padding: var(--service-section-padding) 0;
}

.service-sticky {
  position: sticky;
  top: calc(var(--service-sticky-lift) * -1);
  height: calc(100vh + var(--service-sticky-lift));
  height: calc(100svh + var(--service-sticky-lift));
  overflow: hidden;
}

.service-heading {
  position: relative;
  z-index: 20;
  height: var(--service-heading-height);
  margin-inline: var(--side-padding);
  padding-top: var(--service-heading-top);
  color: var(--ink);
  pointer-events: none;
}

.service-heading::before {
  content: "";
  position: absolute;
  top: calc(var(--service-heading-top) + 31px);
  left: 0;
  width: 7.75px;
  height: 48px;
  border-radius: 3.88px;
  background: #f2d13c;
  transform-origin: left top;
}

.service-heading h2 {
  position: absolute;
  top: var(--service-heading-top);
  left: 27.1929px;
  margin: 0;
  font-family: var(--font-en);
  font-size: 108px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  transform-origin: left top;
}

.service-card-stack {
  position: absolute;
  top: var(--service-card-top);
  left: 0;
  width: 100%;
  height: calc(100vh + var(--service-sticky-lift) - var(--service-card-top));
  height: calc(100svh + var(--service-sticky-lift) - var(--service-card-top));
  overflow: hidden;
}

.service-card {
  --service-card-y: 100%;
  --service-card-clip-bottom: 0%;
  --service-card-bg-alpha: 65%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  overflow: hidden;
  clip-path: inset(0 0 var(--service-card-clip-bottom) 0);
  transform: translate3d(0, var(--service-card-y), 0);
  will-change: transform;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--service-card-bg);
  background: linear-gradient(
    to top right,
    color-mix(in srgb, var(--service-card-bg-deep) var(--service-card-bg-alpha), transparent) 0%,
    color-mix(in srgb, var(--service-card-bg) var(--service-card-bg-alpha), transparent) 100%
  );
  mix-blend-mode: multiply;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--service-bg-underlay);
}

.service-card:first-child {
  --service-card-y: 0%;
}

.service-card--enterprise {
  z-index: 1;
  --service-card-bg: #90719f;
  --service-card-bg-deep: color-mix(in srgb, var(--service-card-bg) 76%, #000);
}

.service-card--small {
  z-index: 2;
  --service-card-bg: #ca9a85;
  --service-card-bg-deep: color-mix(in srgb, var(--service-card-bg) 76%, #000);
}

.service-card--advisor {
  z-index: 3;
  --service-card-bg: #75a39a;
  --service-card-bg-deep: color-mix(in srgb, var(--service-card-bg) 76%, #000);
}

.service-card--industry {
  z-index: 4;
  --service-card-bg: #71afda;
  --service-card-bg-deep: color-mix(in srgb, var(--service-card-bg) 76%, #000);
}

.service-card__inner {
  position: relative;
  z-index: 2;
  display: flow-root;
  width: calc(100% - (var(--side-padding) * 2));
  height: 100%;
  margin-inline: var(--side-padding);
}

.service-card__title {
  position: absolute;
  top: 42px;
  left: 50%;
  margin: 0;
  font-family: var(--font-en);
  font-size: 120px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transform: translateX(-50%);
}

.service-card__title--industry {
  font-size: min(108px, calc((100vw - (var(--side-padding) * 2)) / 12));
}

.service-card__lead {
  width: 100%;
  margin: 190px auto 0;
  font-family: var(--font-ja);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .1em;
  text-align: center;
  white-space: normal;
}

.service-card__list,
.service-card__description {
  margin: 0;
  padding: 0;
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: .1em;
}

.service-card__list {
  counter-reset: service-list;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 14px 20px;
  width: min(100%, var(--service-list-width, 980px));
  margin: 40px auto 0;
  list-style: none;
}

.service-card__description {
  width: min(100%, 900px);
  margin: 36px auto 0;
  text-align: center;
  white-space: normal;
}

.service-card__list li {
  counter-increment: service-list;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 10px;
  background: #fff;
  color: var(--service-card-bg);
  line-height: 1.4;
  text-align: center;
  white-space: normal;
}

.service-card__list li::before {
  content: counter(service-list, decimal-leading-zero) ".";
  margin-right: .55em;
  font-family: var(--font-en);
  font-weight: 600;
  line-height: 1;
}

.service-card__list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  color: inherit;
  text-align: inherit;
  text-decoration: none;
}

.service-card__button {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 260px;
  font-family: var(--font-en);
  letter-spacing: .16em;
  transform-origin: right bottom;
}

@media (min-width: 769px) {
  .service-card__lead {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .service-card__description {
    width: min(900px, calc(100% - 320px));
    margin-left: max(0px, calc((100% - 1200px) / 2));
    margin-right: 0;
    text-align: left;
  }

  .service-card__list {
    width: calc(100% - max(0px, calc((100% - 1200px) / 2)));
    margin-left: max(0px, calc((100% - 1200px) / 2));
    margin-right: 0;
  }

  .service-card__button {
    top: 266px;
    right: max(0px, calc((100% - 1200px) / 2));
    bottom: auto;
  }
}

.column-section {
  position: relative;
  width: calc(100% + (var(--side-padding) * 2));
  margin-left: calc(var(--side-padding) * -1);
  padding: 80px var(--side-padding);
}

.column-heading {
  position: relative;
  min-height: var(--service-heading-height);
  height: auto;
  padding-top: var(--service-heading-top);
  padding-left: 27.1929px;
  color: var(--ink);
}

.column-heading::before {
  content: "";
  position: absolute;
  top: calc(var(--service-heading-top) + 31px);
  left: 0;
  width: 7.75px;
  height: 48px;
  border-radius: 3.88px;
  background: #f2d13c;
}

.column-heading h2 {
  position: relative;
  top: auto;
  left: auto;
  margin: 0;
  font-family: var(--font-en);
  font-size: 108px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.column-list {
  --column-list-width: min(880px, calc(100vw - (var(--side-padding) * 2)));
  --column-gap: clamp(20px, calc(36.667vw - 286.67px), 80px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--column-gap);
  width: var(--column-list-width);
  margin: 40px auto 0;
}

.column-card {
  justify-self: center;
  width: min(100%, 240px);
  margin: 0;
  color: var(--ink);
  text-decoration: none;
}

.column-card__category {
  margin: 0 0 13px;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .1em;
}

.column-card--marketing .column-card__category {
  color: #0a8376;
}

.column-card--blanding .column-card__category {
  color: #e65022;
}

.column-card--other .column-card__category {
  color: #7c328d;
}

.column-card--news .column-card__category {
  color: #d73935;
}

.column-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #969696;
  object-fit: cover;
}

.column-card__media--logo {
  display: grid;
  place-items: center;
  padding: 36px;
  background: rgba(255, 255, 255, .86);
}

.column-card__media--logo img {
  width: min(100%, 96px);
  height: auto;
}

.column-card__date,
.column-card__title {
  display: block;
  margin: 0;
  font-family: var(--font-ja);
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: .1em;
}

.column-card__date {
  margin-top: 20px;
  color: #969696;
}

.column-card__title {
  width: 100%;
  color: var(--ink);
  text-decoration: underline;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}

.column-button {
  position: relative;
  width: 260px;
  margin: 60px auto 0;
  font-family: var(--font-en);
  letter-spacing: .16em;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  color: var(--ink);
}

.footer-contact {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 0;
  padding: 80px var(--side-padding) 0;
}

.footer-contact__heading {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  margin: 0;
  height: var(--service-heading-height);
  padding-top: 0;
}

.footer-contact__heading::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 0;
  width: 7.75px;
  height: 48px;
  border-radius: 3.88px;
  background: #f2d13c;
}

.footer-contact__heading h2 {
  position: absolute;
  top: 0;
  left: 27.1929px;
  margin: 0;
  font-family: var(--font-en);
  font-size: 108px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.footer-contact__copy {
  position: relative;
  width: 100%;
  margin: 17.12px 0 0;
}

.footer-contact__copy h3 {
  margin: 0;
  font-family: var(--font-ja);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .1em;
}

.footer-contact__copy p {
  max-width: 100%;
  margin: 20.59px 0 0 2.68px;
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 600;
  line-height: 32.37px;
  letter-spacing: .1em;
  overflow-wrap: anywhere;
  white-space: normal;
}

.footer-contact__copy strong {
  font-family: var(--font-en);
  font-weight: 700;
}

.footer-contact__cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(40px, 9.091vw, 80px);
  width: min(880px, 100%);
  margin: 26.52px auto 0;
}

.footer-contact__cards--single {
  grid-template-columns: minmax(0, 400px);
  justify-content: center;
}

.footer-contact-card {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 30px 30px 0 0;
  color: #fff;
}

.footer-contact-card--paper {
  background: #d73935;
}

.footer-contact-card--contact {
  background: #35479a;
}

.footer-contact-card h3 {
  margin: 0;
  padding-top: 64px;
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
}

.footer-contact-card__button {
  position: absolute;
  left: 50%;
  bottom: 23.78px;
  width: min(260px, calc(100% - 40px));
  font-family: var(--font-ja);
  letter-spacing: .1em;
  transform: translateX(-50%);
}

.company-button,
.service-card__button,
.column-button,
.footer-contact-card__button {
  display: block;
  height: 64px;
  border-radius: 31.83px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 64px;
  text-align: center;
  text-decoration: none;
}

.company-button::before,
.company-button::after,
.service-card__button::before,
.service-card__button::after,
.column-button::before,
.column-button::after,
.footer-contact-card__button::before,
.footer-contact-card__button::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.company-button::before,
.service-card__button::before,
.column-button::before,
.footer-contact-card__button::before {
  top: 32px;
  right: 20px;
  width: 12px;
  height: 1px;
  background: #fff;
}

.company-button::after,
.service-card__button::after,
.column-button::after,
.footer-contact-card__button::after {
  top: 26px;
  right: 20px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transform-origin: center;
}

.footer-body {
  --footer-padding-x: 40px;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 454px;
  padding-inline: var(--footer-padding-x);
  background: rgba(50, 50, 50, .75);
  color: #fff;
}

.footer-logo {
  position: absolute;
  display: block;
  top: 80px;
  left: var(--footer-padding-x);
  width: 137.33px;
  height: 104px;
  text-decoration: none;
}

.footer-logo img {
  width: 100%;
  height: 100%;
}

.footer-social {
  position: absolute;
  top: 224.14px;
  left: var(--footer-padding-x);
  display: flex;
  align-items: center;
  gap: 15.17px;
}

.footer-social a {
  display: block;
  width: 24px;
  height: 24px;
}

.footer-social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-address {
  position: absolute;
  top: 293px;
  left: var(--footer-padding-x);
  margin: 0;
  color: #fff;
  font-family: var(--font-ja);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: .1em;
}

.footer-address span {
  display: block;
  white-space: nowrap;
}

.footer-address a {
  display: block;
  color: inherit;
  white-space: nowrap;
}

.footer-address__break {
  display: none;
}

.footer-address__privacy {
  margin-top: 24px;
  text-decoration: underline;
}

.footer-menu-area {
  position: absolute;
  top: 88px;
  right: var(--footer-padding-x);
  display: grid;
  grid-template-columns: max-content max-content max-content;
  justify-content: end;
  column-gap: 18px;
  width: calc((100% - (var(--footer-padding-x) * 2)) / 2);
  align-items: start;
}

.footer-menu {
  min-width: 0;
  color: #fff;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
}

.footer-menu a {
  display: block;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.footer-menu--service a:not(:first-child),
.footer-menu--company a:not(:first-child),
.footer-menu--global a {
  text-decoration: underline;
}

.footer-menu--service {
  width: auto;
}

.footer-menu--service a:not(:first-child) {
  margin-left: 16px;
  font-family: var(--font-ja);
  font-weight: 300;
}

.footer-menu--company {
  width: auto;
}

.footer-menu--company a:not(:first-child) {
  margin-left: 16px;
  font-family: var(--font-ja);
  font-weight: 300;
}

.footer-menu--global {
  width: auto;
  font-family: var(--font-en);
}

.footer-copyright {
  position: absolute;
  top: 369.56px;
  right: var(--footer-padding-x);
  margin: 0;
  color: #fff;
  font-family: var(--font-ja);
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .1em;
}

@media (max-width: 1260px) {
  .fv-copy {
    transform: scale(var(--site-scale));
  }

  .philosophy-layout {
    width: 1100px;
    margin-bottom: var(--philosophy-flow-offset);
    transform: scale(var(--site-scale));
  }

  .company-panel {
    margin-top: var(--intro-gap);
    margin-bottom: var(--company-flow-offset);
    transform: translateX(-50%) scale(var(--site-scale));
  }

  .service-card__title {
    font-size: calc(120px * var(--site-scale));
  }

  .service-card__title--industry {
    font-size: min(108px, calc((100vw - (var(--side-padding) * 2)) / 12));
  }
}

@media (min-width: 769px) and (max-width: 960px) {
  main,
  .service-main,
  .about-main,
  .message-main {
    width: 960px;
    min-width: 960px;
  }

  .column-list {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-margin: 16px;
    --fv-bottom-margin: 24px;
    --service-heading-top: 56px;
    --service-heading-height: 86px;
    --service-section-padding: 64px;
    --service-sticky-lift: 0px;
  }

  .fv,
  .intro-section,
  .service-section,
  .column-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .service-sticky,
  .service-card-stack,
  .service-card {
    width: 100%;
  }

  .site-logo {
    width: 150px;
  }

  .site-nav-toggle {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 60;
    display: block;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: linear-gradient(var(--ink), var(--ink)) center / 22px 2px no-repeat;
    pointer-events: auto;
  }

  .site-nav-toggle::before,
  .site-nav-toggle::after {
    content: "";
    position: absolute;
    left: 8px;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: top .2s ease, transform .2s ease;
  }

  .site-nav-toggle::before {
    top: 10px;
  }

  .site-nav-toggle::after {
    top: 26px;
  }

  .site-nav-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .site-header.is-nav-open .site-nav-toggle::before {
    top: 18px;
    transform: rotate(45deg);
  }

  .site-header.is-nav-open .site-nav-toggle::after {
    top: 18px;
    transform: rotate(-45deg);
  }

  .site-header.is-nav-open .site-nav-toggle {
    background-size: 0 2px;
  }

  .site-nav {
    top: 62px;
    right: 16px;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: max-content;
    row-gap: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    font-size: 28px;
    opacity: 0;
    transform: translateX(16px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-header.is-nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .site-nav a {
    display: block;
    width: fit-content;
    margin: 0;
    padding: 7px 10px;
    background: #fff;
    color: var(--ink);
    text-align: right;
    transform: none;
    will-change: auto;
  }

  .site-nav > a {
    margin-top: -2px;
  }

  .site-nav__group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin: -2px 0 0;
  }

  .site-nav__group:first-child {
    margin-top: 0;
  }

  .site-nav__accordion-trigger {
    width: fit-content;
    margin: 0;
    padding: 7px 10px;
    background: #fff;
    color: var(--ink);
    text-align: right;
    transform: none;
    will-change: auto;
  }

  .site-nav__submenu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .24s ease, margin-top .24s ease, opacity .18s ease;
  }

  .site-nav__group.is-open .site-nav__submenu {
    max-height: 260px;
    margin-top: -2px;
    opacity: 1;
  }

  .site-nav__submenu a {
    margin-top: -2px;
    font-family: var(--font-ja);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: .04em;
    white-space: nowrap;
  }

  .fv {
    min-height: 640px;
  }

  .fv-copy {
    top: auto;
    bottom: var(--fv-bottom-margin);
    left: var(--side-padding);
    transform: none;
  }

  .fv-copy__main {
    font-size: clamp(64px, 20.5vw, 104px);
  }

  .fv-copy__sub {
    margin-top: 6px;
    margin-left: 4px;
    font-size: clamp(32px, 10vw, 52px);
  }

  .intro-section,
  .column-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .philosophy-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    transform: none;
  }

  .philosophy-copy {
    display: grid;
    gap: 48px;
    width: 100%;
    height: auto;
  }

  .philosophy-item {
    position: relative;
    width: 100%;
    height: auto;
    padding-left: 18px;
  }

  .philosophy-item::before {
    top: 8px;
    width: 4px;
    height: 24px;
  }

  .philosophy-item::after {
    display: none;
  }

  .philosophy-item--mission,
  .philosophy-item--vision {
    top: auto;
  }

  .philosophy-label,
  .philosophy-item--mission .philosophy-label,
  .philosophy-item--vision .philosophy-label {
    position: relative;
    top: auto;
    left: 0;
    margin-bottom: 18px;
    font-size: 40px;
  }

  .philosophy-body,
  .philosophy-ja,
  .philosophy-en {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
  }

  .philosophy-ja,
  .philosophy-en {
    white-space: nowrap;
  }

  .philosophy-ja {
    font-size: clamp(28px, 8.7vw, 36px);
    line-height: 1.45;
  }

  .philosophy-en {
    margin-top: 18px;
    font-size: clamp(15px, 4.25vw, 19px);
    line-height: 1.6;
    letter-spacing: .04em;
  }

  .philosophy-logo {
    width: min(57.6vw, 208px);
    height: auto;
    margin: 0 auto;
  }

  .company-panel {
    left: auto;
    width: 100%;
    height: auto;
    margin-top: 64px;
    margin-bottom: 0;
    transform: none;
  }

  .company-media {
    width: 100%;
    height: min(95vw, 420px);
    min-height: 340px;
    border-radius: 40px;
  }

  .company-copy {
    right: 20px;
    bottom: 72px;
    left: 20px;
    width: auto;
    font-size: 14px;
    line-height: 2;
    white-space: normal;
  }

  .company-copy br {
    display: none;
  }

  .company-copy__sign {
    margin-top: 8px;
  }

  .company-button {
    position: relative;
    top: auto;
    left: auto;
    width: min(260px, 100%);
    margin: -32px auto 0;
  }

  .service-section {
    height: auto;
    padding: var(--service-section-padding) 0;
  }

  .service-sticky {
    position: static;
    top: 0;
    height: auto;
    overflow: visible;
  }

  .service-heading {
    height: var(--service-heading-height);
    padding-top: var(--service-heading-top);
    padding-bottom: 0;
  }

  .service-heading::before {
    top: calc(var(--service-heading-top) + 18px);
    height: 36px;
  }

  .service-heading h2 {
    position: absolute;
    top: var(--service-heading-top);
    left: 24px;
    font-size: clamp(58px, 17vw, 96px);
  }

  .column-heading h2,
  .footer-contact__heading h2 {
    position: absolute;
    top: var(--service-heading-top);
    left: 24px;
    font-size: clamp(58px, 17vw, 96px);
  }

  .column-heading h2 {
    position: relative;
    top: auto;
    left: auto;
    line-height: 1.05;
  }

  .service-card-stack {
    position: static;
    top: auto;
    height: auto;
    margin-top: clamp(64px, 12vw, 96px);
    overflow: visible;
  }

  .service-card {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
    clip-path: none;
    transform: none;
  }

  .service-card__inner {
    position: relative;
    width: calc(100% - (var(--side-padding) * 2));
    height: auto;
    min-height: 0;
    padding: 34px 0 40px;
  }

  .service-card__title {
    position: static;
    font-size: clamp(44px, 13vw, 72px);
    line-height: .95;
    text-align: center;
    white-space: normal;
    transform: none;
  }

  .service-card__title--industry {
    font-size: clamp(38px, 10.6vw, 64px);
  }

  .service-card__lead {
    margin-top: 26px;
    font-size: 22px;
    line-height: 1.45;
  }

  .service-card__description {
    margin-top: 20px;
    font-size: 15px;
    line-height: 2;
    text-align: left;
  }

  .service-card__description br {
    display: none;
  }

  .service-card__list {
    width: 100%;
    margin-top: 18px;
    gap: 8px;
  }

  .service-card__list li {
    min-height: 0;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
  }

  .service-card__button {
    position: relative;
    right: auto;
    left: 50%;
    bottom: auto;
    width: min(240px, 100%);
    margin-top: 20px;
    transform: translateX(-50%);
  }

  .column-heading,
  .footer-contact__heading {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: var(--service-heading-height);
    height: auto;
    padding-top: var(--service-heading-top);
    margin: 0;
  }

  .column-heading::before,
  .footer-contact__heading::before {
    top: calc(var(--service-heading-top) + 18px);
    height: 36px;
  }

  .column-list {
    --column-list-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 32px;
    width: 100%;
    margin-top: 40px;
  }

  .column-card {
    width: min(100%, 260px);
  }

  .column-card__category {
    font-size: 16px;
  }

  .column-card__date,
  .column-card__title {
    font-size: 12px;
    line-height: 19px;
  }

  .column-button {
    width: min(260px, 100%);
    margin-top: 48px;
  }

  .footer-contact {
    min-height: 0;
    padding: 80px 0 48px;
  }

  .footer-contact__heading {
    width: calc(100% - (var(--side-padding) * 2));
    margin-inline: var(--side-padding);
    padding-top: 0;
  }

  .footer-contact__heading h2 {
    top: 0;
  }

  .footer-contact__heading::before {
    top: 18px;
  }

  .footer-contact__copy {
    width: calc(100% - (var(--side-padding) * 2));
    margin: 48px var(--side-padding) 0;
  }

  .footer-contact__copy h3 {
    font-size: 20px;
    line-height: 1.6;
  }

  .footer-contact__copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 2;
  }

  .footer-contact__copy br {
    display: none;
  }

  .footer-contact__cards {
    grid-template-columns: 1fr;
    row-gap: 16px;
    width: calc(100% - var(--side-padding));
    margin: 36px 0 0 var(--side-padding);
  }

  .footer-contact-card {
    height: 190px;
    border-radius: 24px 0 0 24px;
  }

  .footer-contact-card h3 {
    padding-top: 44px;
    font-size: 36px;
  }

  .footer-contact-card__button {
    width: min(240px, calc(100% - 32px));
  }

  .footer-body {
    --footer-padding-x: 5%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    column-gap: 0;
    height: auto;
    padding: 48px var(--footer-padding-x) 32px;
  }

  .footer-logo,
  .footer-social,
  .footer-address,
  .footer-menu-area,
  .footer-copyright {
    position: static;
  }

  .footer-logo {
    grid-column: 1;
    grid-row: 1;
    width: 104px;
  }

  .footer-social {
    grid-column: 1;
    grid-row: 2;
    margin-top: 32px;
    gap: 10px;
  }

  .footer-social a,
  .footer-social img {
    width: 24px;
    height: 24px;
  }

  .footer-address {
    grid-column: 1;
    grid-row: 3;
    margin-top: 32px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: .03em;
  }

  .footer-address span {
    white-space: nowrap;
  }

  .footer-address a {
    white-space: nowrap;
  }

  .footer-address__break {
    display: block;
  }

  .footer-menu-area {
    grid-column: 2;
    grid-row: 1 / span 3;
    justify-self: end;
    grid-template-columns: 1fr;
    gap: 22px 24px;
    width: 100%;
    margin-top: 0;
  }

  .footer-menu,
  .footer-menu--service,
  .footer-menu--company,
  .footer-menu--global {
    width: auto;
  }

  .footer-menu {
    font-size: clamp(8px, 3.2vw, 16px);
    line-height: 1.65;
  }

  .footer-menu a {
    white-space: nowrap;
  }

  .footer-menu--service a:not(:first-child),
  .footer-menu--company a:not(:first-child) {
    margin-left: 8px;
  }

  .footer-copyright {
    grid-column: 1 / -1;
    margin-top: 40px;
    text-align: center;
  }
}

@media (hover: none) and (pointer: coarse) {
  body::after {
    display: none;
  }
}

.service-main {
  --service-page-color: #90719f;
  --service-page-color-deep: color-mix(in srgb, var(--service-page-color) 76%, #000);
  --service-hero-title-max: 112px;
  --service-hero-title-sp-max: 72px;
  padding-inline: var(--side-padding);
}

.service-main--smb {
  --service-page-color: #ca9a85;
  --service-hero-title-max: 90px;
  --service-hero-title-sp-max: 38px;
}

.service-main--advisor {
  --service-page-color: #75a39a;
  --service-hero-title-max: 80px;
  --service-hero-title-sp-max: 32px;
}

.service-main--industry {
  --service-page-color: #71afda;
  --service-hero-title-max: 82px;
  --service-hero-title-sp-max: 34px;
}

.service-hero {
  width: calc(100% + (var(--side-padding) * 2));
  margin-left: calc(var(--side-padding) * -1);
  padding: 160px var(--side-padding) 88px;
}

.service-hero__visual {
  position: relative;
  width: min(1040px, 100%);
  height: 480px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 92px;
  color: #fff;
}

.service-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .22);
}

.service-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero__copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0 64px;
  text-align: center;
}

.service-hero__title {
  position: absolute;
  top: 80px;
  left: 64px;
  right: 64px;
  margin: 0;
  font-family: var(--font-en);
  font-size: min(clamp(72px, 8.1vw, 112px), var(--service-hero-title-max));
  font-weight: 600;
  line-height: 1;
  letter-spacing: .06em;
  white-space: nowrap;
}

.service-hero__title--stack {
  line-height: .9;
  white-space: normal;
}

.service-hero__title--stack span {
  display: block;
}

.service-hero__lead {
  position: absolute;
  top: 262px;
  left: 64px;
  right: 64px;
  margin: 0;
  padding-top: 28px;
  font-family: var(--font-ja);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .08em;
}

.industry-hero__sp-break {
  display: none;
}

.industry-hero__sp-only {
  display: none;
}

.service-hero__lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(760px, 100%);
  height: 1px;
  background: rgba(255, 255, 255, .7);
  transform: translateX(-50%);
}

.service-hero__text {
  position: absolute;
  top: 344px;
  left: 64px;
  right: 64px;
  margin: 0;
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .08em;
}

.service-intro {
  width: min(960px, 100%);
  margin: 80px auto 0;
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 600;
  line-height: 2.25;
  letter-spacing: .08em;
  text-align: center;
}

.service-intro p {
  margin: 0;
}

.service-intro p + p {
  margin-top: 0;
}

.service-service-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 40px;
  width: min(1040px, 100%);
  margin: 82px auto 0;
}

.service-service-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  min-height: 92px;
  padding: 10px 38px;
  border-radius: 24px;
  background: var(--service-page-color);
  color: #fff;
  font-family: var(--font-ja);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none;
}

.service-service-nav a::before,
.service-service-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.service-service-nav a::before {
  bottom: 10px;
  width: 1px;
  height: 10px;
  background: #fff;
}

.service-service-nav a::after {
  bottom: 9px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translateX(-50%) rotate(45deg);
}

.service-main--industry .service-hero__title--stack {
  top: 48px;
}

.service-service-detail {
  --service-section-ink: var(--ink);
  --service-section-card: #fff;
  --service-section-text: var(--ink);
  position: relative;
  width: calc(100% + (var(--side-padding) * 2));
  margin-left: calc(var(--side-padding) * -1);
  padding: 96px var(--side-padding) 104px;
  color: var(--service-section-text);
}

.service-service-detail--purple {
  --service-section-ink: #fff;
  --service-section-card: #fff;
  --service-section-text: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.service-service-detail--purple::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--service-page-color);
  background: linear-gradient(
    to top right,
    color-mix(in srgb, var(--service-page-color-deep) 65%, transparent) 0%,
    color-mix(in srgb, var(--service-page-color) 65%, transparent) 100%
  );
  mix-blend-mode: multiply;
}

.service-service-detail--purple::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--service-bg-underlay);
}

.service-service-detail--purple > * {
  position: relative;
  z-index: 2;
}

.service-section-heading {
  position: relative;
  width: 100%;
  margin: 0;
  padding-left: clamp(18.13px, 2.014vw, 27.1929px);
}

.service-section-heading::before {
  content: "";
  position: absolute;
  top: clamp(20.67px, 2.296vw, 31px);
  left: 0;
  width: clamp(5.17px, .574vw, 7.75px);
  height: clamp(32px, 3.556vw, 48px);
  border-radius: clamp(2.59px, .287vw, 3.88px);
  background: #f2d13c;
}

.service-section-heading h2 {
  margin: 0;
  color: var(--service-section-ink);
  font-family: var(--font-en);
  font-size: clamp(72px, 8vw, 108px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.service-section-heading p {
  margin: clamp(28px, 3.111vw, 42px) 0 0;
  color: var(--service-section-ink);
  font-family: var(--font-ja);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .08em;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(280px, min(40vw, 560px)) minmax(0, 1fr);
  gap: clamp(48px, 5vw, 80px);
  align-items: start;
  width: calc(100% + var(--side-padding));
  margin: 42px 0 0 calc(var(--side-padding) * -1);
}

.service-feature img {
  width: min(40vw, 560px);
  max-width: 560px;
  height: auto;
  aspect-ratio: 560 / 320;
  border-radius: 0 24px 24px 0;
  object-fit: cover;
}

.service-feature__text {
  margin-top: -8px;
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 600;
  line-height: 2.35;
  letter-spacing: .08em;
}

.service-feature__text p {
  margin: 0;
}

.service-feature__text p + p {
  margin-top: 0;
}

.industry-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.industry-type-list li {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--service-page-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .06em;
}

.service-service-detail--purple .industry-type-list li {
  background: #fff;
  color: var(--service-page-color);
}

@media (min-width: 769px) {
  .industry-type-list {
    margin-top: 8px;
  }
}

.service-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  gap: clamp(40px, 5vw, 80px);
  justify-content: center;
  width: 100%;
  margin: 88px auto 0;
}

.service-case-card {
  width: 320px;
}

.service-case-card__label {
  margin: 0 0 6px;
  color: var(--service-page-color);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .08em;
}

.service-service-detail--purple .service-case-card__label {
  color: #fff;
}

.service-case-card h3 {
  margin: 0 0 18px;
  color: var(--service-section-ink);
  font-family: var(--font-ja);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .08em;
}

.service-case-card > p:last-child {
  min-height: 252px;
  height: var(--service-case-body-height, auto);
  margin: 0;
  padding: 24px 28px;
  border-radius: 14px;
  background: var(--service-section-card);
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .08em;
}

.service-contact-button {
  position: relative;
  display: block;
  width: 240px;
  height: 62px;
  margin: 72px auto 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  line-height: 62px;
  letter-spacing: .18em;
  text-align: center;
  text-decoration: none;
}

.service-contact-button::before,
.service-contact-button::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-contact-button::before {
  top: 31px;
  right: 24px;
  width: 14px;
  height: 1px;
  background: #fff;
}

.service-contact-button::after {
  top: 25px;
  right: 24px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.page-link-section {
  padding: 80px 0;
}

.page-link-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.page-link-button {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 64px;
  margin: 0;
  padding: 0 56px;
  font-family: var(--font-ja);
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: .08em;
  white-space: nowrap;
}

.about-main {
  padding-inline: var(--side-padding);
}

.about-hero {
  width: calc(100% + (var(--side-padding) * 2));
  margin-left: calc(var(--side-padding) * -1);
  padding: 160px var(--side-padding) 80px;
}

.about-section-heading {
  position: relative;
  width: 100%;
  margin: 0;
  padding-left: clamp(18.13px, 2.014vw, 27.1929px);
}

.about-section-heading::before {
  content: "";
  position: absolute;
  top: clamp(20.67px, 2.296vw, 31px);
  left: 0;
  width: clamp(5.17px, .574vw, 7.75px);
  height: clamp(32px, 3.556vw, 48px);
  border-radius: clamp(2.59px, .287vw, 3.88px);
  background: #f2d13c;
}

.about-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(72px, 8vw, 108px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.about-heading {
  width: 100%;
  margin: 0;
  text-align: center;
}

.about-heading h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(72px, 8vw, 112px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
}

.about-logo-mark {
  display: flex;
  justify-content: center;
  padding: 48px 0 32px;
}

.about-logo-mark img {
  width: min(260px, 28vw);
  height: auto;
}

.about-philosophy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding: 80px 0;
}

.about-philosophy__item {
  min-height: 300px;
  padding: 48px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
}

.about-philosophy__ja {
  margin: 40px 0 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .08em;
}

.about-philosophy__en {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .04em;
}

.about-value {
  width: calc(100% + (var(--side-padding) * 2));
  margin-left: calc(var(--side-padding) * -1);
  padding: 80px var(--side-padding);
}

.about-value__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.about-value-card {
  min-height: 224px;
  padding: 34px 36px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
}

.about-value-card__label {
  margin: 0;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
}

.about-value-card h3 {
  margin: 26px 0 0;
  font-family: var(--font-ja);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .08em;
}

.about-value-card > p:last-child {
  margin: 16px 0 0;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: .04em;
}

.about-outline {
  width: calc(100% + (var(--side-padding) * 2));
  margin-left: calc(var(--side-padding) * -1);
  padding: 80px var(--side-padding);
}

.about-outline__list {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 64px 0 0;
  padding: 34px 36px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: .08em;
}

.about-outline__list div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
}

.about-outline__list dt,
.about-outline__list dd {
  margin: 0;
}

.about-outline__sp-break {
  display: none;
}

.message-main {
  padding-inline: var(--side-padding);
}

.message-hero {
  width: calc(100% + (var(--side-padding) * 2));
  margin-left: calc(var(--side-padding) * -1);
  padding: 160px var(--side-padding) 80px;
}

.message-heading {
  width: 100%;
  margin: 0;
  text-align: center;
}

.message-heading h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(72px, 8vw, 112px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
}

.message-main--sustainability .message-heading h1 {
  font-size: clamp(54px, 6.2vw, 92px);
}

.message-section {
  padding: 80px 0 0;
}

.message-content {
  width: 100%;
  margin: 64px 0 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 600;
  line-height: 2.35;
  letter-spacing: .08em;
}

.message-content p {
  margin: 0;
}

.message-split {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: start;
  gap: 48px;
  margin-top: 40px;
}

.message-split__image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 28px;
  object-fit: cover;
}

.message-links {
  padding: 80px 0;
}

.message-link-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.message-link-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 62px;
  padding: 0 32px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  line-height: 62px;
  letter-spacing: .18em;
  text-align: center;
  text-decoration: none;
}

.message-link-grid.message-social-grid {
  gap: 28px 36px;
  width: min(980px, 100%);
}

.message-social-grid .message-social-link {
  width: 104px;
  min-width: 0;
  height: 48px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
}

.message-social-link img {
  display: block;
  width: 100%;
  height: 32px;
  object-fit: contain;
}

.message-social-link img[src*="icon-amazonmusic"],
.message-social-link img[src*="icon-linemusic"] {
  filter: brightness(0);
}

.message-social-link:hover {
  opacity: .62;
}

.message-election-link {
  margin: 28px 0 0;
  text-align: center;
}

.message-election-link a {
  color: #000;
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .05em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.message-election-link a:hover {
  opacity: .62;
}

.sustainability-activity-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  margin: 56px auto 0;
}

.sustainability-activity-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.message-support-card {
  position: relative;
  width: 100%;
  min-height: 0;
  padding: 28px 28px 78px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .86);
  font-family: var(--font-ja);
  text-align: left;
}

.message-link-grid--support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  justify-content: center;
  width: 100%;
  margin: 88px auto 0;
}

.message-link-grid--support strong {
  display: block;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .08em;
}

.message-support-card__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 74px;
}

.message-support-card__logo a {
  display: block;
  justify-content: flex-start;
  width: 100%;
  max-width: 190px;
  min-width: 0;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
}

.message-support-card__logo img {
  display: block;
  width: auto;
  max-width: min(100%, 190px);
  max-height: 62px;
  object-fit: contain;
}

.message-link-grid--support span {
  display: block;
  margin: 16px 0 0;
  padding: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .08em;
}

.message-link-grid .message-support-card__link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: block;
  min-width: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  line-height: 1;
}

.message-link-grid .message-support-card__link::before,
.message-link-grid .message-support-card__link::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.message-link-grid .message-support-card__link::before {
  top: 20px;
  right: 14px;
  width: 12px;
  height: 1px;
  background: #fff;
}

.message-link-grid .message-support-card__link::after {
  top: 14px;
  right: 14px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transform-origin: center;
}

.recruit-hero__lead {
  width: min(760px, 100%);
  margin: 40px auto 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: .08em;
}

.recruit-sp-break {
  display: none;
}

.recruit-detail {
  display: grid;
  gap: 32px;
  width: min(1040px, 100%);
  margin: 80px auto 0;
}

.recruit-card,
.recruit-entry {
  padding: 42px 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
}

.recruit-card h3,
.recruit-entry h3 {
  position: relative;
  margin: 0;
  padding-left: 14px;
  font-family: var(--font-ja);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .08em;
}

.recruit-card h3::before,
.recruit-entry h3::before {
  content: "";
  position: absolute;
  top: .35em;
  left: 0;
  width: 4px;
  height: .9em;
  border-radius: 999px;
  background: #f2d13c;
}

.recruit-card h4 {
  margin: 0 0 18px;
  font-family: var(--font-ja);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .08em;
}

.recruit-card p,
.recruit-entry p {
  margin: 28px 0 0;
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 600;
  line-height: 2.2;
  letter-spacing: .08em;
}

.recruit-card__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.recruit-card__columns p {
  margin-top: 0;
}

.recruit-card__message-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: start;
  gap: 40px;
  margin-top: 28px;
}

.recruit-card__message-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
}

.recruit-card__message-layout img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% top;
}

.recruit-card__message-layout p {
  margin-top: 0;
}

@media (min-width: 769px) {
  .recruit-card__message-layout {
    align-items: stretch;
  }

  .recruit-card__message-image {
    height: 100%;
    aspect-ratio: auto;
  }
}

.recruit-entry {
  width: min(760px, 100%);
  margin: 80px auto;
  text-align: center;
}

.recruit-entry h3 {
  text-align: left;
}

.recruit-entry .service-contact-button {
  margin-top: 40px;
}

.lower-main {
  padding-inline: var(--side-padding);
}

.lower-hero {
  padding-bottom: 72px;
}

.lower-hero--archive,
.lower-hero--form {
  padding-bottom: 32px;
}

.lower-lead {
  width: min(760px, 100%);
  margin: 36px auto 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: .08em;
}

.download-sp-break {
  display: none;
}

.archive-section,
.form-section,
.thanks-section,
.policy-section {
  padding: 80px 0;
}

.archive-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: -32px auto 64px;
}

.archive-filter__button {
  --filter-color: #000;
  min-width: 120px;
  height: 42px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--filter-color);
  color: #fff;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .12em;
  cursor: pointer;
}

.archive-filter__button[data-filter="all"] {
  --filter-color: #000;
}

.archive-filter__button[data-filter="marketing"] {
  --filter-color: #0a8376;
}

.archive-filter__button[data-filter="blanding"] {
  --filter-color: #e65022;
}

.archive-filter__button[data-filter="branding"] {
  --filter-color: #e65022;
}

.archive-filter__button[data-filter="other"] {
  --filter-color: #7c328d;
}

.archive-filter__button[data-filter="news"] {
  --filter-color: #d73935;
}

.archive-filter__button.is-active {
  border-color: var(--filter-color);
  background: transparent;
  color: var(--filter-color);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 240px));
  justify-content: center;
  gap: 64px clamp(24px, 5vw, 80px);
}

.archive-card {
  display: block;
  width: 100%;
  color: var(--ink);
  text-decoration: none;
}

.archive-card.is-hidden {
  display: none;
}

.archive-card__category {
  display: block;
  margin: 0 0 13px;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .1em;
}

.archive-card--marketing .archive-card__category {
  color: #0a8376;
}

.archive-card--blanding .archive-card__category {
  color: #e65022;
}

.archive-card--other .archive-card__category {
  color: #7c328d;
}

.archive-card--news .archive-card__category {
  color: #d73935;
}

.archive-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #969696;
  object-fit: cover;
}

.archive-card__media--logo {
  display: grid;
  place-items: center;
  padding: 36px;
  background: rgba(255, 255, 255, .86);
}

.archive-card__media--logo img {
  width: min(100%, 96px);
  height: auto;
}

.archive-card__date,
.archive-card__title {
  display: block;
  margin: 0;
  font-family: var(--font-ja);
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: .1em;
}

.archive-card__date {
  margin-top: 20px;
  color: #969696;
}

.archive-card__title {
  width: 100%;
  text-decoration: underline;
  overflow-wrap: anywhere;
}

.article-detail {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 160px 0 80px;
}

.article-header {
  text-align: left;
}

.article-category {
  margin: 0;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .14em;
}

.article-category--marketing {
  color: #0a8376;
}

.article-category--blanding {
  color: #e65022;
}

.article-category--other {
  color: #7c328d;
}

.article-category--news {
  color: #d73935;
}

.article-date {
  display: block;
  margin-top: 24px;
  color: #969696;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .08em;
}

.article-header h1 {
  margin: 28px 0 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .08em;
}

.article-eyecatch {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 52px;
  background: #969696;
  object-fit: cover;
}

.article-eyecatch--logo {
  display: grid;
  place-items: center;
  padding: clamp(48px, 8vw, 96px);
  background: rgba(255, 255, 255, .86);
}

.article-eyecatch--logo img {
  width: min(100%, 160px);
  height: auto;
}

.article-body {
  margin-top: 64px;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 600;
  line-height: 2.25;
  letter-spacing: .08em;
}

.article-body h2 {
  position: relative;
  margin: 56px 0 24px;
  padding-left: 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.55;
}

.article-body h2::before {
  content: "";
  position: absolute;
  top: .35em;
  left: 0;
  width: 4px;
  height: .9em;
  border-radius: 999px;
  background: #f2d13c;
}

.article-body p {
  margin: 0;
}

.article-body p + p {
  margin-top: 24px;
}

.article-related {
  margin-top: 88px;
}

.article-related h2 {
  position: relative;
  margin: 0 0 64px;
  padding-left: clamp(14px, 1.6vw, 22px);
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(48px, 5.4vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.article-related h2::before {
  content: "";
  position: absolute;
  top: clamp(13.78px, 1.53vw, 20.67px);
  left: 0;
  width: clamp(4px, .43vw, 5.17px);
  height: clamp(21.33px, 2.37vw, 32px);
  border-radius: clamp(2px, .22vw, 2.59px);
  background: #f2d13c;
}

.archive-grid--related {
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 48px clamp(20px, 4vw, 56px);
}

.article-pager {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) 260px minmax(40px, 1fr);
  align-items: center;
  gap: 30px;
  margin-top: 72px;
}

.article-back {
  box-sizing: border-box;
  grid-column: 2;
  justify-self: center;
  width: 260px;
  min-width: 260px;
  height: 64px;
  margin-top: 0;
  border-radius: 31.83px;
  line-height: 64px;
}

.article-pager__link {
  display: flex;
  align-items: center;
  height: 64px;
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .16em;
  text-decoration: underline;
}

.article-pager__link--prev {
  justify-self: end;
  justify-content: flex-end;
}

.article-pager__link--next {
  justify-self: start;
  justify-content: flex-start;
}

.article-pager__link--empty {
  visibility: hidden;
}

.form-card {
  display: grid;
  gap: 28px;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
}

.form-error {
  width: min(900px, 100%);
  margin: 0 auto 24px;
  color: #d73935;
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 600;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

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

.form-card label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .08em;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(50, 50, 50, .24);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  letter-spacing: .04em;
}

.form-card textarea {
  resize: vertical;
}

.form-card .form-check {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 12px;
}

.form-check input {
  width: 18px;
  min-height: 18px;
}

.form-submit {
  margin-top: 12px;
  border: 0;
  cursor: pointer;
}

.thanks-content {
  margin: 0 auto;
  text-align: center;
}

.not-found-section .thanks-content {
  max-width: 720px;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.thanks-actions .service-contact-button {
  margin: 0;
}

.policy-section {
  width: min(960px, 100%);
  margin: 0 auto;
}

.policy-lead,
.policy-block p,
.policy-list {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 600;
  line-height: 2.15;
  letter-spacing: .08em;
}

.policy-content {
  display: grid;
  gap: 42px;
  margin-top: 64px;
}

.policy-block {
  padding: 34px 36px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
}

.policy-block h2 {
  position: relative;
  margin: 0 0 24px;
  padding-left: 16px;
  color: var(--ink);
  font-family: var(--font-ja);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .08em;
}

.policy-block h2::before {
  content: "";
  position: absolute;
  top: .35em;
  left: 0;
  width: 4px;
  height: .9em;
  border-radius: 999px;
  background: #f2d13c;
}

.policy-block p + p {
  margin-top: 16px;
}

.policy-block a {
  color: var(--ink);
  text-decoration: underline;
}

.policy-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-left: 1.4em;
}

.policy-list + p {
  margin-top: 16px;
}

@media (max-width: 1200px) {
  .service-case-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    justify-items: center;
    margin-top: 52px;
  }

  .service-case-card {
    width: 70vw;
    max-width: 100%;
  }

  .service-case-card > p:last-child {
    min-height: 0;
    height: auto;
  }

  .message-link-grid--support {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    margin-top: 52px;
  }

  .message-support-card {
    width: 70vw;
    max-width: 100%;
  }

  .message-link-grid--support span {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .service-main {
    padding-inline: var(--side-padding);
  }

  .service-hero {
    padding: 104px var(--side-padding) 64px;
  }

  .service-hero__visual {
    width: 100%;
    height: 420px;
    border-radius: 48px;
  }

  .service-hero__copy {
    padding: 0 24px;
  }

  .service-hero__title {
    top: 92px;
    left: 24px;
    right: 24px;
    font-size: clamp(24px, 8vw, var(--service-hero-title-sp-max));
  }

  .service-hero__lead {
    top: 190px;
    left: 24px;
    right: 24px;
    font-size: 22px;
    line-height: 1.45;
  }

  .service-hero__text {
    top: 272px;
    left: 24px;
    right: 24px;
    font-size: 12px;
    line-height: 2;
  }

  .service-main--industry .service-hero__text {
    top: 304px;
  }

  .service-main--industry .service-hero__title--stack {
    line-height: 1.35;
    top: 49px;
  }

  .industry-hero__sp-break {
    display: block;
  }

  .industry-hero__sp-only {
    display: block;
  }

  .service-intro {
    margin-top: 48px;
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }

  .service-service-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .service-service-nav a {
    width: 100%;
    min-height: 60px;
    padding: 10px 30px;
    font-size: clamp(11px, 3.5vw, 15px);
    line-height: 1;
    letter-spacing: .04em;
    white-space: nowrap;
    border-radius: 15px;
  }

  .service-service-nav a br {
    display: none;
  }

  .service-main--industry .service-service-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-main--industry .service-service-nav a:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 16px) / 2);
  }

  .service-service-detail {
    padding: 72px var(--side-padding) 80px;
  }

  .service-service-detail--purple {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .service-section-heading {
    padding-left: min(19.64px, 2.644vw);
  }

  .service-section-heading::before {
    top: min(22.39px, 3.014vw);
    width: min(5.6px, .753vw);
    height: min(34.67px, 4.667vw);
    border-radius: min(2.8px, .377vw);
  }

  .service-section-heading h2 {
    font-size: min(78px, 10.5vw);
    white-space: nowrap;
  }

  .service-section-heading p {
    margin-top: min(30.33px, 4.083vw);
    font-size: 24px;
  }

  .service-feature {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    margin-top: 32px;
    margin-left: 0;
  }

  .service-feature img {
    width: calc(100% + var(--side-padding));
    height: auto;
    margin-left: calc(var(--side-padding) * -1);
    aspect-ratio: 480 / 320;
    border-radius: 0 20px 20px 0;
  }

  .service-feature__text {
    margin-top: 0;
    font-size: 14px;
    line-height: 2.1;
  }

  .service-feature__text p + p {
    margin-top: 0;
  }

  .service-case-card {
    width: 80vw;
  }

  .service-case-card__label {
    width: 100%;
  }

  .service-case-card h3 {
    font-size: 20px;
  }

  .service-case-card > p:last-child {
    font-size: 14px;
    line-height: 2;
  }

  .service-contact-button {
    width: min(240px, 100%);
    margin-top: 48px;
  }

  .page-link-section {
    padding: 64px 0;
  }

  .page-link-grid {
    gap: 16px;
    justify-items: center;
  }

  .page-link-button {
    width: min(320px, 100%);
    margin: 0;
    font-size: clamp(12px, 3.5vw, 14px);
  }

  .about-main {
    padding-inline: var(--side-padding);
  }

  .about-hero {
    padding: 124px var(--side-padding) 104px;
  }

  .about-section-heading {
    padding-left: min(19.64px, 2.644vw);
  }

  .about-section-heading::before {
    top: min(22.39px, 3.014vw);
    width: min(5.6px, .753vw);
    height: min(34.67px, 4.667vw);
    border-radius: min(2.8px, .377vw);
  }

  .about-section-heading h2 {
    font-size: min(78px, 10.5vw);
    white-space: nowrap;
  }

  .about-heading h1 {
    font-size: clamp(54px, 14vw, 78px);
  }

  .about-logo-mark {
    padding: 24px 0 32px;
  }

  .about-logo-mark img {
    width: min(190px, 46vw);
  }

  .about-philosophy {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 0 64px;
  }

  .about-philosophy__item {
    min-height: 0;
    padding: 30px 24px;
    border-radius: 18px;
  }

  .about-philosophy__ja {
    margin-top: 28px;
    font-size: 20px;
    line-height: 1.65;
  }

  .about-philosophy__en {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.6;
  }

  .about-value {
    padding: 64px var(--side-padding);
  }

  .about-value__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 48px;
  }

  .about-value-card {
    min-height: 0;
    padding: 28px 24px;
    border-radius: 16px;
  }

  .about-value-card__label {
    font-size: 22px;
  }

  .about-value-card h3 {
    margin-top: 22px;
    font-size: 19px;
    line-height: 1.65;
  }

  .about-value-card > p:last-child {
    font-size: 15px;
  }

  .about-outline {
    padding: 64px var(--side-padding);
  }

  .about-outline__list {
    margin-top: 48px;
    padding: 28px 24px;
    border-radius: 16px;
    font-size: 15px;
    line-height: 1.8;
  }

  .about-outline__list div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .about-outline__sp-break {
    display: block;
  }

  .message-main {
    padding-inline: var(--side-padding);
  }

  .message-hero {
    padding: 104px var(--side-padding);
  }

  .message-heading h1 {
    font-size: clamp(48px, 12vw, 78px);
  }

  .message-main--sustainability .message-heading h1 {
    font-size: clamp(34px, 8vw, 56px);
  }

  .message-section {
    padding-top: 0;
  }

  .message-content {
    margin-top: 48px;
    font-size: 15px;
    line-height: 2.1;
  }

  .message-split {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
  }

  .message-split__image {
    width: 100%;
    border-radius: 22px;
  }

  .message-links {
    padding: 64px 0;
  }

  .message-link-grid {
    justify-content: center;
    gap: 12px;
  }

  .message-link-grid a {
    width: calc((100% - 12px) / 2);
    min-width: 0;
    height: 62px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: clamp(12px, 3.5vw, 16px);
  }

  .message-link-grid.message-social-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px 16px;
    width: 100%;
  }

  .message-social-grid .message-social-link {
    width: 100%;
    height: 44px;
    grid-column: span 2;
  }

  .message-social-grid .message-social-link:nth-child(10),
  .message-social-grid .message-social-link:nth-child(12) {
    grid-column: 2 / span 2;
  }

  .message-social-grid .message-social-link:nth-child(11),
  .message-social-grid .message-social-link:nth-child(13) {
    grid-column: 4 / span 2;
  }

  .message-support-card__logo a {
    width: 100%;
    max-width: 190px;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .sustainability-activity-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .sustainability-activity-gallery img {
    border-radius: 14px;
  }

  .message-support-card {
    width: 80vw;
    max-width: 100%;
    min-height: 0;
    padding: 24px 28px 78px;
    border-radius: 14px;
  }

  .message-link-grid .message-support-card__link {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
  }

  .recruit-hero__lead {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.75;
  }

  .recruit-sp-break {
    display: block;
  }

  .recruit-detail {
    gap: 20px;
    margin-top: 56px;
  }

  .recruit-card,
  .recruit-entry {
    padding: 30px 24px;
    border-radius: 16px;
  }

  .recruit-card h3,
  .recruit-entry h3 {
    font-size: 22px;
  }

  .recruit-card h4 {
    font-size: 17px;
  }

  .recruit-card p,
  .recruit-entry p {
    font-size: 14px;
    line-height: 2;
  }

  .recruit-card__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .recruit-card__message-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .recruit-card__message-image {
    border-radius: 14px;
  }

  .recruit-card__message-layout img {
    object-position: right top;
    transform: scale(1.1);
    transform-origin: right top;
  }

  .recruit-entry {
    margin: 64px auto;
  }

  .message-link-grid--support strong {
    font-size: 16px;
    line-height: 1.55;
  }

  .message-link-grid--support span {
    margin-top: 16px;
    padding: 0;
    font-size: 14px;
    line-height: 2;
  }

  .lower-hero {
    padding: 104px var(--side-padding) 64px;
  }

  .lower-hero--archive,
  .lower-hero--form {
    padding-bottom: 28px;
  }

  .lower-lead {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.75;
  }

  .download-sp-break {
    display: block;
  }

  .archive-section,
  .form-section,
  .thanks-section,
  .policy-section {
    padding: 64px 0;
  }

  .archive-filter {
    justify-content: center;
    gap: 8px;
    margin: -28px 0 48px;
  }

  .archive-filter__button {
    min-width: 0;
    height: 48px;
    padding: 0 19px;
    font-size: 14.4px;
  }

  .archive-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    justify-items: center;
  }

  .archive-card {
    width: min(280px, 100%);
  }

  .archive-card__category {
    font-size: 16px;
  }

  .article-detail {
    padding: 120px 0 64px;
  }

  .article-header h1 {
    font-size: 26px;
    line-height: 1.6;
  }

  .article-eyecatch {
    margin-top: 40px;
  }

  .article-body {
    margin-top: 48px;
    font-size: 15px;
    line-height: 2.1;
  }

  .article-body h2 {
    font-size: 21px;
  }

  .article-related {
    margin-top: 64px;
  }

  .article-related h2 {
    margin-bottom: 36px;
    padding-left: min(16px, 2.2vw);
    font-size: min(52px, 8vw);
    white-space: nowrap;
  }

  .article-related h2::before {
    top: min(14.93px, 2.01vw);
    width: min(4px, .54vw);
    height: min(23.11px, 3.11vw);
    border-radius: min(2px, .27vw);
  }

  .archive-grid--related {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 36px;
  }

  .article-pager {
    grid-template-columns: auto minmax(170px, 260px) auto;
    justify-content: center;
    gap: 30px;
    margin-top: 56px;
  }

  .article-pager__link {
    font-size: clamp(10px, 2.7vw, 11px);
    letter-spacing: .08em;
  }

  .article-back {
    width: 100%;
    min-width: 0;
    height: 64px;
    margin-top: 0;
    line-height: 64px;
  }

  .form-card {
    gap: 22px;
    margin-top: 0;
    padding: 30px 24px;
    border-radius: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .form-card label {
    font-size: 14px;
  }

  .form-card input,
  .form-card select,
  .form-card textarea {
    min-height: 52px;
  }

  .thanks-actions {
    gap: 14px;
  }

  .policy-content {
    gap: 24px;
    margin-top: 48px;
  }

  .policy-block {
    padding: 28px 24px;
    border-radius: 16px;
  }

  .policy-block h2 {
    font-size: 20px;
  }

  .policy-lead,
  .policy-block p,
  .policy-list {
    font-size: 14px;
    line-height: 2;
  }
}

@keyframes rainbow-flow {
  0% {
    filter: blur(18px) hue-rotate(0deg) saturate(1.05);
  }

  50% {
    filter: blur(18px) hue-rotate(180deg) saturate(1.15);
  }

  100% {
    filter: blur(18px) hue-rotate(360deg) saturate(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .ambient-glow {
    animation: none;
  }
}
