@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@600;700&family=Montserrat:wght@500;700;800&display=swap");

:root {
  --navy: #061a32;
  --navy-2: #0b2748;
  --navy-3: #102f55;
  --gold: #b99046;
  --gold-2: #d7b669;
  --ink: #122033;
  --muted: #5d6977;
  --line: #d9dee5;
  --paper: #f5f7fa;
  --white: #fff;
  --shadow: 0 24px 70px rgba(6, 26, 50, .14);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: no-preference) {
  body {
    opacity: 0;
    animation: pageFade .7s ease forwards;
  }
}

@keyframes pageFade {
  to { opacity: 1; }
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(clamp(20px, 4vw, 64px), calc((100vw - var(--content)) / 2));
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(6, 26, 50, .08);
  backdrop-filter: blur(18px);
  transition: height .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 12px 36px rgba(6, 26, 50, .1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  background:
    linear-gradient(135deg, var(--navy) 0 48%, var(--gold) 48% 100%);
  clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  transition: transform .25s ease;
}

.brand:hover .brand-mark {
  transform: rotate(8deg) scale(1.04);
}

.brand strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--navy);
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

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

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--white);
  padding-top: 82px;
}

.hero > img {
  width: 100%;
  display: block;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 9s ease forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.15;
  font-weight: 700;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-width: 172px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid currentColor;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.28) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .45s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(120%);
}

.button.primary {
  color: var(--navy);
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .44);
}

.news-panel {
  position: absolute;
  right: max(clamp(20px, 6vw, 86px), calc((100vw - var(--content)) / 2));
  bottom: 74px;
  z-index: 2;
  width: min(520px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 112px 1fr;
  background: rgba(6, 26, 50, .94);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.news-panel h2 {
  margin: 0;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.news-panel a {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 14px 20px;
  color: var(--white);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.news-panel a:last-child {
  border-bottom: 0;
}

.news-panel time {
  color: var(--gold-2);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.section {
  padding: clamp(74px, 9vw, 65px) max(clamp(20px, 6vw, 86px), calc((100vw - var(--content)) / 2));
}

.section-head {
  width: 100%;
  max-width: 780px;
  margin-bottom: 15px;
}

.section-head h2,
.statement h2,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.35;
}

.section-head p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 500;
}

.business {
  position: relative;
  background:
    linear-gradient(90deg, rgba(6, 26, 50, .035) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--white);
}

.business-grid {
  max-width: var(--content);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
}

.business-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 1px;
  color: var(--white);
  transition: transform .35s ease, filter .35s ease;
}

.business-card span {
  color: var(--gold-2);
  font-family: "Montserrat", sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
}

.business-card h3 {
  margin: 16px 0 10px;
  font-size: 21px;
  line-height: 1.45;
}

.business-card p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
}

.business-card:hover {
  transform: translateY(-10px);
  filter: contrast(1.06) saturate(1.08);
}

.business-card:hover span {
  color: var(--white);
}

.business-track {
  display: contents;
}

.philosophy {
  background:
    linear-gradient(90deg, rgba(6, 26, 50, .035) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--white);
}

.philosophy > .section-head {
  display: none;
}

.philosophy-layout {
  max-width: var(--content);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.philosophy-message {
  position: relative;
  display: grid;
  align-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 260px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 26, 50, .94), rgba(11, 39, 72, .92)),
    url("./assets/hero-acoustic.png") center/cover;
  border-left: 5px solid var(--gold);
  overflow: hidden;
}

.philosophy-message::after {
  content: "KJSOKEN";
  position: absolute;
  right: -18px;
  bottom: -18px;
  color: rgba(255, 255, 255, .055);
  font-family: "Montserrat", sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
}

.philosophy-message p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.philosophy-message span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.philosophy-grid {
  max-width: var(--content);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.philosophy-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  box-shadow: 0 14px 36px rgba(6, 26, 50, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.philosophy-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(6, 26, 50, .12);
}

.philosophy-grid span {
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.philosophy-grid h3 {
  margin: 10px 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.45;
}

.philosophy-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.service-intro {
  background: var(--paper);
}

.service-panel {
  max-width: var(--content);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-panel article,
.case-card {
  padding: 28px;
  background: var(--white);
  border-top: 4px solid var(--gold);
  box-shadow: 0 14px 36px rgba(6, 26, 50, .08);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.service-panel article:hover,
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(6, 26, 50, .14);
}

.service-panel h3,
.case-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.45;
}

.service-panel p,
.case-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  flex: 1;
}

.cases {
  background:
    linear-gradient(90deg, rgba(6, 26, 50, .035) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--white);
}

.case-grid {
  max-width: var(--content);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  color: var(--gold);
  border: 1px solid rgba(185, 144, 70, .38);
  font-size: 12px;
  font-weight: 800;
  width: fit-content;
}

.strength {
  background: var(--paper);
}

.process {
  max-width: var(--content);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process div {
  min-height: 180px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  background: var(--white);
  border-top: 4px solid var(--gold);
  box-shadow: 0 14px 36px rgba(6, 26, 50, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.process div:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(6, 26, 50, .14);
}

.process strong {
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.process span {
  color: var(--navy);
  font-weight: 800;
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
  padding: clamp(82px, 10vw, 140px) max(clamp(20px, 6vw, 86px), calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: linear-gradient(112deg, var(--navy) 0%, var(--navy) 62%, transparent 62%), linear-gradient(135deg, var(--navy-3), #061a32);
}

.statement h2 {
  color: var(--white);
}

.statement p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-weight: 500;
  font-size: 18px;
}

.company {
  background: var(--white);
}

.news-section {
  background:
    linear-gradient(90deg, rgba(6, 26, 50, .035) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--paper);
}

.news-list {
  max-width: 1080px;
  display: grid;
  gap: 16px;
}

.news-item {
  display: grid;
  grid-template-columns: 128px 108px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 28px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  box-shadow: 0 14px 36px rgba(6, 26, 50, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.news-item:hover {
  transform: translateX(8px);
  box-shadow: 0 22px 48px rgba(6, 26, 50, .12);
}

.news-item time {
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.news-item span {
  display: inline-flex;
  justify-content: center;
  padding: 4px 10px;
  color: var(--gold);
  border: 1px solid rgba(185, 144, 70, .4);
  font-size: 12px;
  font-weight: 800;
}

.news-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.45;
}

.news-item p {
  grid-column: 3;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.company-list {
  max-width: 980px;
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding-left .2s ease;
}

.company-list div:hover {
  padding-left: 14px;
  background: rgba(185, 144, 70, .08);
}

.company-list dt {
  color: var(--navy);
  font-weight: 800;
}

.company-list dd {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding: clamp(74px, 9vw, 116px) max(clamp(20px, 6vw, 86px), calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.contact h2 {
  max-width: 820px;
  color: var(--white);
}

.contact-head p:not(.eyebrow) {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.contact-form b {
  margin-left: 6px;
  color: var(--gold);
  font-size: 11px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd3dc;
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 144, 70, .18);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
}

.form-actions .button.ghost {
  color: var(--navy);
  border: 1px solid var(--line);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 42px max(clamp(20px, 6vw, 86px), calc((100vw - var(--content)) / 2));
  background: #ffffff;
  color: #000;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, .68);
}

.site-footer p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 980px) {
  .business-grid,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-panel,
  .philosophy-layout,
  .philosophy-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .statement {
    grid-template-columns: 1fr;
    background: var(--navy);
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .news-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 56px;
  }
}

@media (min-width: 981px) {
  .business-grid.is-slider {
    display: block;
    background: transparent;
    border: 0;
  }

  .business-grid.is-slider .business-track {
    display: flex;
    gap: 1px;
    width: max-content;
    animation: businessSlide 24s linear infinite;
  }

  .business-grid.is-slider:hover .business-track {
    animation-play-state: paused;
  }

  .business-grid.is-slider .business-card {
    width: calc(var(--content) / 4);
    min-width: 280px;
  }

  @keyframes businessSlide {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - .5px)); }
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .menu-button {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    background: var(--navy);
  }

  .menu-button span {
    width: 22px;
    height: 2px;
    display: block;
    background: var(--white);
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-content,
  .news-panel,
  .business-grid,
  .process,
  .company-list,
  .news-list,
  .contact-form {
    width: calc(100vw - 56px);
    max-width: calc(100vw - 56px);
  }

  .business-track {
    display: contents;
  }

  .section-head {
    width: min(300px, calc(100vw - 56px));
    max-width: min(300px, calc(100vw - 56px));
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.22;
  }

  .hero-copy {
    max-width: 300px;
    font-size: 15px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .section-head h2,
  .statement h2,
  .contact h2 {
    font-size: 26px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .section-head p,
  .news-item h3,
  .news-item p,
  .business-card h3,
  .business-card p {
    word-break: break-all;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .news-panel {
    grid-template-columns: 1fr;
  }

  .news-panel h2 {
    justify-content: flex-start;
    padding: 14px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .news-panel a {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .business-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .service-panel,
  .philosophy-layout,
  .philosophy-grid,
  .case-grid {
    width: calc(100vw - 56px);
    max-width: calc(100vw - 56px);
  }

  .philosophy-message {
    min-height: 220px;
    padding: 24px;
  }

  .philosophy-message p {
    font-size: 26px;
  }

  .philosophy-grid {
    margin-top: 18px;
  }

  .philosophy-grid article {
    padding: 22px;
  }

  .business-card {
    min-height: 260px;
  }

  .service-panel article,
  .case-card {
    padding: 22px;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .news-item span {
    width: fit-content;
  }

  .news-item p {
    grid-column: auto;
    margin: 0;
  }

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

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}



.pc, .sp {
  display: none;
}

.hero > img.sp,
.business-card > img.sp {
  display: none;
}

.site-header .brand img {
	height: 68px;
}

.site-footer .brand.footer-brand img {
	width: 50%;
}

.case-card img {
	margin-top: 15px;
}

.service-panel article img {
	margin-bottom: 25px;
}

@media (max-width: 670px) {
  .sp,
  .hero > img.sp,
  .business-card > img.sp {
    display: block;
  }

  .pc,
  .hero > img.pc,
  .business-card > img.pc {
    display: none;
  }
}

@media (min-width: 670px) {
  .pc,
  .hero > img.pc,
  .business-card > img.pc {
    display: block;
  }

  .sp,
  .hero > img.sp,
  .business-card > img.sp {
    display: none;
  }
}


.pc.hero_img {
	width: 100vw;
	height: calc(100vh - 82px);
}

.company-list ul {
	padding: 0;
	list-style: none;
}

.brand.footer-brand {
	justify-content: space-around;
	width: 50%;
}

.site-footer .brand.footer-brand img {
	width: 200px;
}

@media (max-width: 670px) {
.brand.footer-brand {
	width: 100%;
}
.brand {
	gap: 30px;
	flex-wrap: wrap;
}
}