:root {
  --paper: #f1efe8;
  --ink: #11110f;
  --line: rgba(17, 17, 15, .2);
  --muted: #6e6d67;
  --lime: #c9ff37;
  --blue: #3757ff;
  --pad: clamp(20px, 4vw, 64px);
  --header-h: 76px;
}

:is(.home-page, .section-page, .trust-page, .archive-theme, .content-page) {
  --paper: #eee9dc;
  --ink: #101513;
  --line: rgba(16, 21, 19, .22);
  --muted: #5c615c;
  --blue: #315b68;
  --lime: #c4dc54;
  --rust: #9b4933;
  --rust-on-dark: #d27c60;
  background-color: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.case-page :focus-visible {
  outline-color: var(--lime);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  padding-inline: var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(241, 239, 232, .85);
  backdrop-filter: blur(16px);
}

:is(.home-page, .section-page, .trust-page, .content-page.content-page--skills) .site-header {
  background: rgba(238, 233, 220, .88);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  width: max-content;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  padding: 2px;
  border-radius: 50%;
  background: var(--paper);
  object-fit: contain;
}

.brand-word {
  color: inherit;
}

.site-header nav {
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
}

.site-header nav a,
.header-cta {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(201, 255, 55, .25);
}

.nav-mobile-only {
  display: none;
}

.menu-button {
  display: none;
  border: 0;
  padding: 8px 0;
  background: none;
  cursor: pointer;
}

.immersive-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  gap: 0;
  min-height: 100svh;
  padding: 128px var(--pad) 0;
  overflow: hidden;
}

.immersive-hero__visual {
  position: absolute;
  z-index: 0;
  inset: var(--header-h) 0 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.immersive-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.immersive-hero__visual figcaption {
  position: absolute;
  z-index: 4;
  top: 26px;
  right: var(--pad);
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 9px 12px;
  color: #dfe8dc;
  border: 1px solid rgba(223, 232, 220, .42);
  background: rgba(16, 21, 19, .66);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.immersive-hero__visual figcaption span+span {
  padding-left: 22px;
  border-left: 1px solid rgba(223, 232, 220, .35);
}

.immersive-hero__copy {
  position: relative;
  z-index: 3;
}

.hero-label {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: clamp(32px, 7vh, 82px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-label::before {
  content: "01";
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  letter-spacing: 0;
}

.immersive-hero .hero-label::before {
  color: var(--paper);
  background: var(--ink);
}

.immersive-hero__title {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 11ch;
  font-size: clamp(76px, 12.4vw, 215px);
  font-weight: 700;
  line-height: .78;
  letter-spacing: -.085em;
  text-wrap: balance;
  filter: drop-shadow(0 0 11px rgba(238, 233, 220, .95));
  text-shadow: 0 1px 0 rgba(238, 233, 220, .8);
}

.brand,
.immersive-hero__title,
.section-title {
  font-family: "Syne", "Arial Black", "Helvetica Neue", sans-serif;
}

.immersive-hero__bottom {
  position: relative;
  z-index: 4;
  width: fit-content;
  max-width: 64ch;
  margin: 40px 0 0;
  padding: 16px 20px;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.7;
  text-align: left;
  text-wrap: pretty;
  background: linear-gradient(90deg,
      rgba(238, 233, 220, .92),
      rgba(238, 233, 220, .72));
  backdrop-filter: blur(5px);
}

.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  color: var(--paper);
  border-block: 1px solid var(--ink);
  background: var(--rust);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker-line {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 18px 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}

.ticker-line span {
  display: inline-flex;
  align-items: center;
}

.ticker-line span::after {
  content: "✦";
  margin-inline: 40px;
  font-size: 11px;
}

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

section {
  scroll-margin-top: var(--header-h);
}

.section-head {
  display: grid;
  grid-template-columns: 28% 1fr;
  padding: 100px var(--pad) 54px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(46px, 7.5vw, 118px);
  line-height: .93;
  letter-spacing: -.065em;
}

.project-list {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.project {
  position: relative;
  display: grid;
  grid-template-columns: 28% 1fr auto;
  align-items: center;
  min-height: 180px;
  padding: 25px var(--pad);
  border-top: 1px solid var(--line);
  overflow: hidden;
  transition: color .4s ease, background-color .4s ease;
}

.project--app {
  grid-template-columns: 28% minmax(0, 1fr) clamp(210px, 24vw, 360px) auto;
  gap: clamp(18px, 3vw, 48px);
  min-height: 230px;
}

.project--portal {
  --project-hover: #2946d8;
}

.project--haguruma {
  --project-hover: #291711;
}

.project--bousai {
  --project-hover: #26713b;
}

.project--monitor {
  --project-hover: #171d28;
}

.project--lifelens {
  --project-hover: #506d5d;
}

.project--personal-ops {
  --project-hover: #425a4c;
}

.project--haguruma .project-status {
  color: #9b4933;
}

.project--bousai .project-status {
  color: #26713b;
}

.project--monitor .project-status {
  color: #5b4ef1;
}

.project--lifelens .project-status {
  color: #506d5d;
}

.project--personal-ops .project-status {
  color: #526c61;
}

.project:first-child {
  border-top: 0;
}

.project:is(:hover, :focus-visible, :active) {
  color: var(--paper);
  background-color: var(--project-hover, var(--ink));
}

.project:focus-visible {
  outline-offset: -5px;
}

.project-meta {
  align-self: start;
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.project:is(:hover, :focus-visible, :active) .project-meta {
  color: #c1c5bd;
}

.project-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.project-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(201, 255, 55, .18);
}

.project:is(:hover, :focus-visible, :active) .project-status {
  color: var(--lime);
}

.project :is(h2, h3) {
  margin: 0;
  font-family: "Syne", "Arial Black", "Helvetica Neue", sans-serif;
  font-size: clamp(34px, 5vw, 74px);
  letter-spacing: -.055em;
}

.project p {
  margin: 10px 0 0;
  max-width: 44ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.project:is(:hover, :focus-visible, :active) p {
  color: #c1c5bd;
}

.project-preview {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid currentColor;
  background: #deddd7;
  opacity: .72;
  filter: grayscale(1) contrast(.9);
  transform: rotate(-2.5deg) scale(.94);
  transition: opacity .45s ease, filter .45s ease, transform .55s cubic-bezier(.2, .75, .2, 1);
}

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

.project-preview figcaption {
  position: absolute;
  inset: auto 8px 8px auto;
  padding: 6px 8px;
  color: var(--paper);
  background: rgba(17, 17, 15, .82);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.project--app:is(:hover, :focus-visible, :active) .project-preview {
  opacity: 1;
  filter: none;
  transform: rotate(0) scale(1);
}

.monitor-preview {
  width: 100%;
  min-height: 150px;
  padding: 14px;
  color: #d9ffe0;
  border: 1px solid rgba(17, 17, 15, .55);
  background: #10151f;
  transform: rotate(2deg) scale(.94);
  transition: transform .55s cubic-bezier(.2, .75, .2, 1), border-color .35s ease;
}

.project--monitor:is(:hover, :focus-visible, :active) .monitor-preview {
  transform: rotate(0) scale(1);
  border-color: rgba(201, 255, 55, .7);
}

.monitor-preview-top,
.monitor-preview-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.monitor-preview-top i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.monitor-preview-top b {
  color: #ff6c69;
  font-size: 10px;
}

.monitor-preview-bars {
  display: flex;
  gap: 6px;
  align-items: end;
  height: 80px;
  margin-block: 10px;
  border-block: 1px solid rgba(255, 255, 255, .1);
}

.monitor-preview-bars i {
  flex: 1;
  height: var(--h);
  background: linear-gradient(#c9ff37, #3757ff);
  opacity: .85;
}

.monitor-preview-foot {
  color: #7e8b9f;
}

.project-arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
  transition: transform .4s ease, background .4s ease, color .4s ease;
}

.project:is(:hover, :focus-visible, :active) .project-arrow {
  color: var(--ink);
  background: var(--lime);
  transform: rotate(-35deg);
}

.name-story {
  display: grid;
  grid-template-columns: 28% 1fr;
  padding: clamp(84px, 10vw, 150px) var(--pad);
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid rgba(241, 239, 232, .2);
}

.name-story .eyebrow {
  color: #8b8a83;
}

.name-domain {
  margin: 30px 0 0;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.name-story-body {
  min-width: 0;
}

.name-story h2 {
  margin: 0;
  font-family: "Syne", "Arial Black", sans-serif;
  font-size: clamp(54px, 10vw, 164px);
  line-height: .82;
  letter-spacing: -.08em;
  white-space: nowrap;
}

.name-story h2 span {
  padding-inline: .04em;
  color: var(--lime);
  font-size: .42em;
  vertical-align: .25em;
}

.name-story-lead {
  margin: 34px 0 0;
  color: var(--lime);
  font-family: "Syne", sans-serif;
  font-size: clamp(19px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: -.025em;
}

.name-story-copy {
  max-width: 51ch;
  margin: 24px 0 0;
  color: #aaa99f;
  font-size: 14px;
  line-height: 1.9;
}

.name-parts {
  display: grid;
  grid-template-columns: .8fr .8fr 1.4fr;
  margin-top: clamp(54px, 7vw, 96px);
  border-top: 1px solid rgba(241, 239, 232, .24);
}

.name-part {
  min-width: 0;
  padding: 24px clamp(18px, 2.4vw, 36px) 4px 0;
}

.name-part+.name-part {
  padding-left: clamp(18px, 2.4vw, 36px);
  border-left: 1px solid rgba(241, 239, 232, .24);
}

.name-part span {
  display: block;
  margin-bottom: 42px;
  color: #8b8a83;
  font-size: 10px;
  font-weight: 800;
}

.name-part strong {
  display: block;
  color: var(--paper);
  font-family: "Syne", sans-serif;
  font-size: clamp(22px, 2.4vw, 38px);
  letter-spacing: -.04em;
}

.name-part p {
  margin: 12px 0 0;
  color: #8b8a83;
  font-size: 12px;
  line-height: 1.7;
}

.footer-line {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(241, 239, 232, .25);
  color: #8b8a83;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-line> :last-child {
  justify-self: end;
  text-align: right;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
  gap: 12px 20px;
}

.footer-nav a {
  color: #b7b6ae;
  transition: color .2s ease;
}

.footer-nav a:hover {
  color: var(--paper);
}

.not-found {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 126px var(--pad) 28px;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}

.not-found-header {
  color: var(--paper);
  border-color: rgba(241, 239, 232, .18);
  background: rgba(17, 17, 15, .86);
}

.not-found-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.not-found-code {
  margin: 0;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.not-found h1 {
  position: relative;
  z-index: 2;
  margin: 30px 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(76px, 15vw, 230px);
  line-height: .75;
  letter-spacing: -.09em;
}

.not-found h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
}

.not-found-copy {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
}

.not-found-copy p {
  max-width: 38ch;
  margin: 0;
  color: #aaa99f;
  font-size: 14px;
  line-height: 1.8;
}

.not-found-copy a {
  display: inline-flex;
  justify-content: space-between;
  gap: 50px;
  min-width: 250px;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.not-found-orbit {
  position: absolute;
  right: 5%;
  top: 10%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(241, 239, 232, .3);
  border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(255, 255, 255, .025), 0 0 0 12vw rgba(255, 255, 255, .02);
}

.not-found-orbit::after {
  content: "";
  position: absolute;
  top: 16%;
  right: 10%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 40px rgba(55, 87, 255, .6);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .75, .2, 1);
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden;
  }

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

  .site-header nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px var(--pad) 24px;
    visibility: hidden;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
    transform: translateY(-130%);
    transition: transform .35s ease, visibility 0s linear .35s;
  }

  .site-header nav.open {
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-header nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .header-cta {
    display: none;
  }

  .nav-mobile-only {
    display: block;
  }

  .menu-button {
    display: block;
    min-width: 44px;
    min-height: 44px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 20px;
    --header-h: 64px;
  }

  .brand {
    gap: 7px;
    font-size: 13px;
  }

  .brand-icon {
    width: 29px;
    height: 29px;
  }

  .noise {
    display: none;
  }

  .immersive-hero {
    min-height: 820px;
    padding-top: 104px;
  }

  .immersive-hero__visual img {
    object-position: 65% center;
  }

  .immersive-hero__visual figcaption {
    top: 16px;
    right: 20px;
  }

  .immersive-hero__visual figcaption span:first-child {
    display: none;
  }

  .immersive-hero__visual figcaption span+span {
    padding-left: 0;
    border-left: 0;
  }

  .immersive-hero__title {
    width: 100%;
    max-width: 100%;
    font-size: 15.8vw;
  }

  .immersive-hero__bottom {
    padding-inline: 12px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 74px;
  }

  .project {
    grid-template-columns: 1fr auto;
    min-height: 170px;
  }

  .project-meta {
    grid-column: 1 / -1;
    padding-bottom: 24px;
  }

  /* 説明文をモバイルで消さない。現行の文章(最長57文字)は3行に収まる。
     クランプは将来長文が入ったときの高さ保険。 */
  .project p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    margin-top: 8px;
  }

  .project-arrow {
    width: 45px;
    height: 45px;
  }

  .project--app {
    grid-template-columns: 1fr auto;
    gap: 0 18px;
    min-height: 270px;
  }

  .project--app .project-meta {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .project--app .project-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .project--app .project-arrow {
    grid-column: 2;
    grid-row: 2;
  }

  .project-preview,
  .monitor-preview {
    grid-column: 1 / -1;
    grid-row: 3;
    height: 92px;
    min-height: 0;
    margin-top: 20px;
    aspect-ratio: auto;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .project-preview img {
    object-position: center 24%;
  }

  .monitor-preview-bars {
    height: 35px;
  }

  .name-story {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .name-story-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
  }

  .name-domain {
    margin: 6px 0 0;
  }

  .name-story h2 {
    font-size: 15.3vw;
  }

  .name-parts {
    grid-template-columns: 1fr;
  }

  .name-part {
    padding: 22px 0;
  }

  .name-part+.name-part {
    padding-left: 0;
    border-top: 1px solid rgba(241, 239, 232, .24);
    border-left: 0;
  }

  .name-part span {
    margin-bottom: 20px;
  }

  .footer-line {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .footer-line> :last-child {
    text-align: left;
  }

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

  .not-found-header nav {
    color: var(--ink);
  }

  .not-found {
    min-height: 760px;
    padding-top: 100px;
  }

  .not-found h1 {
    font-size: clamp(72px, 24vw, 112px);
  }

  .not-found-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .not-found-orbit {
    top: 35%;
    right: -25%;
    width: 80vw;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ------------------------------------------------------------------
   格子・列区切りの縦罫を無効化（世界観の都合で一旦オフ）

   対象は「レイアウトの区切り線」だけ。四辺の枠・円・チップ・入力欄には
   触れないこと。復活させたいときはこのブロックごと削除する。
   style.css は他CSSより先に読み込まれるため !important が必要。
   ------------------------------------------------------------------ */

/* style.css */
.immersive-hero__visual figcaption span + span,
.name-part + .name-part,
/* section-pages.css */
.maker-fields li:nth-child(even),
/* trust-pages.css */
.trust-index,
.contact-boundary div + div,
/* content.css */
.skill-domain,
/* project-detail.css */
.case-facts > div,
.feature-grid,
.feature-card,
.architecture-grid,
.architecture-grid > div,
.lesson-grid,
.lesson-grid > div,
.technical-grid,
.technical-grid > div,
.case-explore-links,
.case-explore-links a {
  border-left: 0 !important;
  border-right: 0 !important;
}
