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

.c-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 17px 28px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.c-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.c-btn--orange {
  color: #fff;
  background: var(--color-orange);
  box-shadow: 0 14px 28px rgba(234, 101, 0, 0.16);
  border: none;
}

.c-btn--outline {
  color: var(--color-navy);
  background: #fff;
  border: 1px solid #b9c4d1;
}

.c-btn--header {
  min-height: 48px;
  padding: 13px 20px;
}

.c-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid #d6dee8;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 900;
  color: var(--color-navy);
  background: #fff;
}

.c-tel small {
  display: block;
  margin-top: 1px;
  color: #607086;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.c-section-head p {
  margin: 0 0 10px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
}

.c-section-head h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.c-section-head--center {
  max-width: 1200px;
  margin: 0 auto 56px;
  text-align: center;
}

.c-section-head__lead {
  max-width: 640px;
  margin: 26px auto 0;
  color: var(--color-gray);
  font-size: 15px;
  font-weight: 700;
  line-height: 2.1;
}

.c-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 900;
}


/* loading */
.p-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.p-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-loading.is-skip {
  display: none;
}

.p-loading__inner {
  display: grid;
  place-items: center;
}

.p-loading__logo {
  width: min(54vw, 360px);
  height: auto;
  opacity: 0;
  transform: translateY(12px);
  animation: loadingLogoFade 1.1s ease forwards;
}

.p-loading__text {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: 0.18em;
  opacity: 0;
  transform: translateY(12px);
  animation: loadingLogoFade 1.1s ease forwards;
}

@keyframes loadingLogoFade {
  0% {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

body.is-loading {
  overflow: hidden;
}

/* hero */
.p-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #fff;
}

.p-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.p-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .78) 240px, rgba(255, 255, 255, .22) 55%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.p-hero__slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 5.5s ease;
}

.p-hero__slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.p-hero__inner {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 48px), 1280px);
  min-height: 680px;
  margin-inline: auto;
}

.p-hero__body {
  display: flex;
  width: min(100%, 540px);
  min-height: 680px;
  flex-direction: column;
  justify-content: center;
  padding: 88px 0;
}

.p-hero__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.p-hero__lead {
  max-width: 500px;
  margin: 30px 0 0;
  color: #1f2e41;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.1;
}

.p-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 380px);
  margin-top: 36px;
}

/* stats */
.p-stats {
  padding: 36px 0;
  background: #fff;
}

.p-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.p-stats__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
}

.p-stats__item+.p-stats__item {
  border-left: 1px solid #cfd8e3;
}

.p-stats__icon {
  width: 44px;
  height: 44px;
}

.p-stats__item p {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 900;
}

.p-stats__item strong {
  display: block;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.p-stats__item span {
  margin-left: 4px;
  font-size: 14px;
  letter-spacing: 0;
}

/* news */
.p-news {
  padding: 64px 0;
  background: #fff;
}

.p-news__inner {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 42px;
}

.p-news__row {
  display: grid;
  grid-template-columns: 120px 95px 1fr 24px;
  align-items: center;
  gap: 0;
  padding: 19px 0;
  border-bottom: 1px solid var(--color-line);
  transition: color 0.25s ease;
}

.p-news__row:hover {
  color: var(--color-orange);
}

.p-news__row time {
  color: var(--color-gray);
  font-size: 14px;
  font-weight: 700;
}

.p-news__row p {
  margin: 0;
  color: #1f2e41;
  font-size: 14px;
  font-weight: 800;
}

.p-news__badge {
  width: fit-content;
  padding: 3px 10px;
  color: #fff;
  background: var(--color-navy-2);
  font-size: 11px;
  font-weight: 900;
}

.p-news__badge--green {
  background: var(--color-green);
}

.p-news__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

/* instagram */
.p-instagram {
  padding: 72px 0 64px;
  background: #f7f9fc;
}

.p-instagram .c-section-head--center {
  margin-bottom: 36px;
}

.p-instagram__button {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.p-instagram #sbi_images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.p-instagram .sbi_item,
.p-instagram .sbi_photo_wrap,
.p-instagram .sbi_photo {
  min-width: 0;
}

.p-instagram .sbi_photo {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d9e1eb;
  aspect-ratio: 1 / 1;

}

.p-instagram .sbi_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.p-instagram .sbi_photo:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

.p-instagram .sbi-screenreader {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* reason */
.p-reason {
  padding: 64px 0 96px;
  background: #fff;
}

.p-reason__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.p-reason__card {
  position: relative;
  min-height: 315px;
  padding: 32px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
}

.p-reason__num {
  position: absolute;
  top: 4px;
  left: 28px;
  color: #eef1f5;
  font-size: 86px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.p-reason__icon {
  position: absolute;
  top: 48px;
  right: 32px;
  width: 36px;
  height: 36px;
}

.p-reason__card h3 {
  position: relative;
  z-index: 1;
  margin: 98px 0 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-reason__card p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: var(--color-gray);
  font-size: 13px;
  font-weight: 700;
  line-height: 2;
}

.p-reason__action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.p-reason__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 30px;
  color: #fff;
  background: var(--color-navy);
  border: 1px solid var(--color-navy);
  box-shadow: 0 14px 28px rgba(17, 47, 84, 0.12);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}

.p-reason__button:hover {
  transform: translateY(-2px);
  color: var(--color-navy);
  background: #fff;
  box-shadow: 0 18px 34px rgba(17, 47, 84, 0.16);
}

/* service */
.p-service {
  padding: 96px 0;
  background: var(--color-bg);
}

.p-service__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
}

.p-service__head {
  align-self: start;
}

@media (min-width: 1081px) {
  .p-service__head {
    position: sticky;
    top: 120px;
  }
}

.p-service__lead {
  margin: 28px 0 0;
  color: var(--color-gray);
  font-size: 15px;
  font-weight: 700;
  line-height: 2.1;
}

.p-service__list {
  display: grid;
}

.p-service__item {
  display: grid;
  grid-template-columns: 240px 1fr 54px;
  align-items: stretch;
  background: #fff;
}

.p-service__item figure {
  margin: 0;
  height: 205px;
  overflow: hidden;
  padding: 2%;
}

.p-service__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-service__content {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 28px 36px;
  border-bottom: 1px solid #e2e8f0;
}

.p-service__content span {
  grid-column: 1;
  grid-row: 1 / 3;
  color: #98a6b8;
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
}

.p-service__content h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--color-navy);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.p-service__content p {
  grid-column: 2;
  grid-row: 2;
  margin: 8px 0 0;
  color: var(--color-gray);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
}

.p-service__arrow {
  align-self: stretch;
  justify-self: center;
  width: 24px;
  height: 100%;
  padding: 0;
  color: var(--color-navy);
  border-bottom: 1px solid #e2e8f0;
}

/* works */
.p-works {
  padding: 96px 0;
  background: #fff;
}

.p-works__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
}

.p-works__head p:not(.c-section-head p) {
  margin: 24px 0 28px;
  color: var(--color-gray);
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}

.p-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.p-works__card {
  display: block;
  background: #fff;
  border: 1px solid var(--color-line);
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.p-works__card:hover {
  transform: translateY(-4px);
  border-color: #c8d2de;
  box-shadow: 0 12px 30px rgba(17, 47, 84, 0.08);
}

.p-works__card figure {
  margin: 0;
  height: 185px;
  overflow: hidden;
}

.p-works__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-works__card div {
  padding: 22px;
}

.p-works__card span {
  display: inline-block;
  padding: 2px 10px;
  color: var(--color-navy);
  border: 1px solid #c8d2de;
  font-size: 11px;
  font-weight: 900;
}

.p-works__card h3 {
  margin: 16px 0 0;
  color: var(--color-navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}

.p-works__card p {
  margin: 10px 0 0;
  color: var(--color-gray);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

/* cta */
.p-cta {
  padding: 80px 0;
  color: #fff;
  background: var(--color-navy);
}

.p-cta__inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: center;
  gap: 64px;
}

.p-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 35px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.p-cta__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 560px;
  gap: 26px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

.p-cta__features li {
  display: grid;
  gap: 10px;
  justify-items: center;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.p-cta__features svg {
  width: 30px;
  height: 30px;
}

.p-cta__panel {
  padding: 32px;
  color: var(--color-navy);
  background: #fff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, .22);
}

.p-cta__panel p {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.1em;
}

.p-cta__panel .c-btn {
  width: 100%;
  min-height: 68px;
  font-size: 18px;
}

.p-cta__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 68px;
  margin-top: 16px;
  border: 1px solid #cbd5e1;
  color: var(--color-navy);
  font-size: 30px;
  font-weight: 900;
}

.p-cta__panel small {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.u-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* animation */
.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 1080px) {
  .p-hero,
  .p-hero__inner,
  .p-hero__body {
    min-height: 620px;
  }

  .p-hero__body {
    padding: 72px 0 56px;
  }

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

  .p-stats__item+.p-stats__item {
    border-left: 0;
  }

  .p-stats__item:nth-child(even) {
    border-left: 1px solid #cfd8e3;
  }

  .p-stats__item:nth-child(n+3) {
    border-top: 1px solid #cfd8e3;
  }

  .p-news__inner,
  .p-service__inner,
  .p-works__inner,
  .p-cta__inner {
    grid-template-columns: 1fr;
  }

  .p-reason__grid,
  .p-works__grid {
    grid-template-columns: 1fr;
  }

  .p-instagram #sbi_images {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 767px) {

  .l-container,
  .l-header__inner,
  .p-hero__inner,
  .p-stats__inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .p-hero,
  .p-hero__inner,
  .p-hero__body {
    min-height: 640px;
  }

  .p-hero__title {
    font-size: 39px;
  }

  .p-hero__bg::before {


      background:
      linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .78) 32%, rgba(255, 255, 255, 0.10) 55%, rgba(255, 255, 255, 0) 100%);
  }


  
  .p-stats__inner {
    grid-template-columns: 1fr;
  }

  .p-stats__item,
  .p-stats__item:nth-child(even),
  .p-stats__item:nth-child(n+3) {
    border-left: 0;
    border-top: 1px solid #cfd8e3;
  }

  .p-news__row {
    grid-template-columns: 96px 82px 1fr 20px;
    gap: 6px;
  }

  .p-news__row p {
    font-size: 12px;
  }

  .p-instagram {
    padding: 58px 0;
  }

  .p-instagram #sbi_images {
    grid-template-columns: 1fr;
  }

  .p-service__item {
    grid-template-columns: 1fr;
  }

  .p-service__item figure {
    height: 190px;
  }

  .p-service__content {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px;
  }

  .p-service__content span,
  .p-service__content h3,
  .p-service__content p {
    grid-column: 1;
    grid-row: auto;
  }

  .p-service__arrow {
    display: none;
  }

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

  .p-cta__panel {
    padding: 24px;
  }

  .p-cta__panel .c-btn {
    font-size: 15px;
  }

  .p-cta__tel {
    font-size: 22px;
  }
}


/* =========================================================
   下層ページ：鳩対策事業
   既存CSSは変更せず、ここから追記
========================================================= */

.p-company-overview, .p-company-access-card, .p-company-staff-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}


.p-blog-category-list li{
  list-style: none;
}
.p-blog-category-list {

  padding: 0;
}
.p-sub-hero__inner, .p-company-hero__inner, .p-company-hero__visual, .p-company-section__inner, .p-net-hero__inner, .p-net-nav__inner, .p-net-about__inner, .p-net-business__inner {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
}

.p-news, .p-reason, .p-service, .p-works, .p-zigyo-section, .p-zigyo-related, .p-net-about, .p-net-business, .p-company-section {
  padding: 92px 0;
}

.p-blog-detail-section {
  padding-top: 72px;
}
.p-sub-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #eef2f6;
}

.p-sub-hero__inner {
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 420px;
  width: min(calc(100% - 48px), 1280px);
  margin-inline: auto;
  align-items: stretch;
}

.p-sub-hero__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 48px 72px 0;
}

.p-sub-hero__label {
  margin: 0 0 14px;
  color: #0d5c87;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.p-sub-hero__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.08em;
}

.p-sub-hero__breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 28px 0 0;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.p-sub-hero__lead {
  max-width: 360px;
  margin: 34px 0 0;
  color: #1f2e41;
  font-size: 15px;
  font-weight: 800;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.p-sub-hero__visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.p-sub-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255,255,255,.52) 0%, rgba(255,255,255,.18) 28%, rgba(255,255,255,0) 55%);
  pointer-events: none;
}

.p-sub-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.p-zigyo-section {
  padding: 82px 0;
  background: #fff;
}

.p-zigyo-hero {
  min-height: 680px;
  border-bottom: 0;
  background: #fff;
}

.p-zigyo-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/zigyo/zigyo-hero.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-zigyo-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .84) 10%, rgba(255, 255, 255, .34) 41%, rgba(255, 255, 255, 0) 47%);
}

.p-reason-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/reason/reason-hero.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-reason-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .84) 10%, rgba(255, 255, 255, .34) 41%, rgba(255, 255, 255, 0) 47%);
}

.p-zigyo-hero__inner {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  min-height: 680px;
}

.p-zigyo-hero__body {
  width: min(100%, 560px);
  min-height: 680px;
  padding: 88px 0;
}

.p-zigyo-section--compact {
  padding-top: 56px;
}

.p-zigyo-section__head {
  margin-bottom: 34px;
}

.p-zigyo-section__num {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 22px;
  padding-inline: 10px;
  margin-bottom: 14px;
  border-radius: 99px;
  background: #2f8fe8;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.p-zigyo-section__label {
  margin: 0 0 6px;
  color: #0d5c87;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.p-zigyo-section__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.p-zigyo-about__grid {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 62px;
  align-items: center;
}

.p-zigyo-about__image {
  margin: 0;
  overflow: hidden;
}

.p-zigyo-about__image img {
  width: 100%;
  aspect-ratio: 410 / 260;
  object-fit: cover;
}

.p-zigyo-about__text {
  margin: 0;
  color: #1f2e41;
  font-size: 15px;
  font-weight: 750;
  line-height: 2.25;
  letter-spacing: 0.05em;
}

.p-zigyo-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  margin-top: 44px;
  padding: 24px 28px;
  background: #f6f8fb;
  border-radius: 4px;
}

.p-zigyo-flow__item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.p-zigyo-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  right: -24px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #62758a;
  border-right: 2px solid #62758a;
  transform: rotate(45deg);
}

.p-zigyo-flow__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-navy);
  box-shadow: 0 8px 22px rgba(7,31,58,.06);
}

.p-zigyo-flow__icon svg {
  width: 25px;
  height: 25px;
}

.p-zigyo-service__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.p-zigyo-service-card figure {
  margin: 0;
  overflow: hidden;
}

.p-zigyo-service-card img {
  width: 100%;
  aspect-ratio: 520 / 320;
  object-fit: cover;
}

.p-zigyo-service-card--layout {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 32px;
  border: 1px solid #dce3ec;
  background: #fff;
}

.p-zigyo-service-card--textonly {
  grid-template-columns: 1fr;
}

.p-zigyo-service-card--reverse figure {
  order: 2;
}

.p-zigyo-service-card__body {
  display: grid;
  gap: 18px;
}

.p-zigyo-service-card__title {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: start;
  margin: 0;
  color: var(--color-navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-zigyo-service-card__title span {
  color: var(--color-blue);
  font-size: 52px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.p-zigyo-service-card p {
  margin: 0;
  color: #1f2e41;
  font-size: 15px;
  font-weight: 750;
  line-height: 2.1;
}

.p-reason-detail-intro {
  display: grid;
  gap: 28px;
}

.p-reason-detail-intro__lead {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(20px, 3.6vw, 26px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.p-reason-detail-intro__body {
  display: grid;
  gap: 18px;
}

.p-reason-detail-intro__body p {
  margin: 0;
  color: #1f2e41;
  font-size: 15px;
  font-weight: 750;
  line-height: 2.1;
}

.p-reason-detail-intro__box,
.p-reason-detail-summary {
  padding: 36px;
  border: 1px solid #dce3ec;
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
}

.p-reason-detail-intro__box p,
.p-reason-detail-summary p {
  margin: 0;
  color: #1f2e41;
  font-size: 15px;
  font-weight: 750;
  line-height: 2.1;
}

.p-reason-detail-summary {
  display: grid;
  gap: 20px;
}

.p-reason-detail-summary__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.p-reason-detail-summary__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.p-reason-detail-summary__list li {
  position: relative;
  padding-left: 22px;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.9;
}

.p-reason-detail-summary__list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-blue);
}

.p-reason-detail-note {
  display: grid;
  gap: 12px;
}

.p-reason-detail-note p {
  margin: 0;
  color: #1f2e41;
  font-size: 15px;
  font-weight: 750;
  line-height: 2.1;
}

.p-zigyo-related {
  padding: 56px 0;
  color: #fff;
  background: var(--color-navy);
}

.p-zigyo-related__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: center;
}

.p-zigyo-related__label {
  margin: 0 0 8px;
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.p-zigyo-related__title {
  margin: 0;
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.p-zigyo-related__lead {
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 750;
  line-height: 2;
}

.p-zigyo-related__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.p-zigyo-related-card {
  display: grid;
  grid-template-columns: 54px 1fr 20px;
  gap: 18px;
  align-items: center;
  min-height: 110px;
  padding: 24px;
  color: var(--color-navy);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

.p-zigyo-related-card__icon {
  display: grid;
  place-items: center;
  color: #2f8fe8;
}

.p-zigyo-related-card__icon svg {
  width: 40px;
  height: 40px;
}

.p-zigyo-related-card strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
}

.p-zigyo-related-card span {
  display: block;
  margin-top: 5px;
  color: #475569;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.7;
}

.p-zigyo-related-card__arrow {
  width: 18px;
  height: 18px;
}

.p-zigyo-case {
  background: #fff;
}

.p-zigyo-case__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.p-zigyo-case__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.p-zigyo-case-card {
  border: 1px solid #dce3ec;
  background: #fff;
}

.p-zigyo-case-card figure {
  margin: 0;
  overflow: hidden;
}

.p-zigyo-case-card img {
  width: 100%;
  aspect-ratio: 360 / 185;
  object-fit: cover;
}

.p-zigyo-case-card__body {
  padding: 20px;
}

.p-zigyo-case-card__tag {
  display: inline-block;
  padding: 2px 10px;
  margin-bottom: 10px;
  border: 1px solid #cbd5e1;
  color: var(--color-navy);
  font-size: 11px;
  font-weight: 900;
}

.p-zigyo-case-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.55;
}

.p-zigyo-case-card p {
  margin: 8px 0 0;
  color: #1f2e41;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.9;
}

.p-zigyo-price {
  margin-top: 56px;
  padding: 34px 34px 10px;
  background: #fff;
}

.p-zigyo-price__head {
  margin-bottom: 18px;
}

.p-zigyo-price__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.p-zigyo-price__table {
  border-top: 1px dashed #2f5d9b;
}

.p-zigyo-price__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed #2f5d9b;
}

.p-zigyo-price__row--tall {
  align-items: start;
}

.p-zigyo-price__item {
  color: var(--color-navy);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.p-zigyo-price__value {
  color: var(--color-navy);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
  line-height: 1.55;
  text-align: right;
}

@media (max-width: 1080px) {
  .p-sub-hero__inner,
  .p-zigyo-about__grid,
  .p-zigyo-related__inner {
    grid-template-columns: 1fr;
  }

  .p-sub-hero__body {
    padding-right: 0;
  }

  .p-sub-hero__visual {
    min-height: 360px;
  }

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

  .p-zigyo-related__cards {
    grid-template-columns: 1fr;
  }

  .p-zigyo-hero,
  .p-zigyo-hero__inner,
  .p-zigyo-hero__body {
    min-height: 620px;
  }

  .p-zigyo-hero__body {
    padding: 72px 0 56px;
  }

  .p-zigyo-service-card--layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .p-zigyo-service-card--reverse figure {
    order: 0;
  }

  .p-zigyo-price__row {
    grid-template-columns: minmax(0, 1fr) 260px;
  }

  .p-zigyo-price__item {
    font-size: clamp(18px, 2.4vw, 22px);
  }

  .p-zigyo-price__value {
    font-size: clamp(16px, 2.2vw, 20px);
  }

  .p-reason-detail-summary__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .p-sub-hero__inner {
    width: min(calc(100% - 32px), 1280px);
  }

  .p-sub-hero__body {
    padding: 48px 0 36px;
  }

  .p-sub-hero__title {
    font-size: 42px;
  }

  .p-sub-hero__visual {
    min-height: 260px;
  }

  .p-sub-hero__visual img {
    min-height: 260px;
  }

  .p-zigyo-section {
    padding: 56px 0;
  }

  .p-zigyo-hero,
  .p-zigyo-hero__inner,
  .p-zigyo-hero__body {
    min-height: 640px;
  }

  .p-zigyo-hero__bg::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 48%, rgba(255, 255, 255, .55) 75%, rgba(255, 255, 255, .2) 100%),
      linear-gradient(0deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .24));
  }

  .p-zigyo-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .p-zigyo-flow__item:not(:last-child)::after {
    display: none;
  }

  .p-zigyo-case__grid {
    grid-template-columns: 1fr;
  }

  .p-zigyo-case__head {
    align-items: start;
    flex-direction: column;
  }

  .p-zigyo-related-card {
    grid-template-columns: 44px 1fr 18px;
    padding: 20px;
  }

  .p-zigyo-price {
    margin-top: 40px;
    padding: 24px 20px 8px;
  }

  .p-zigyo-price__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }

  .p-zigyo-price__item,
  .p-zigyo-price__value {
    font-size: 16px;
    text-align: left;
  }

  .p-zigyo-service-card--layout {
    gap: 18px;
    padding: 20px;
  }

  .p-zigyo-service-card__title {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    font-size: 22px;
  }

  .p-zigyo-service-card__title span {
    font-size: 40px;
  }

  .p-zigyo-service-card p {
    font-size: 14px;
    line-height: 1.95;
  }

  .p-reason-detail-intro__lead {
    font-size: 26px;
  }

  .p-reason-detail-intro__box,
  .p-reason-detail-summary {
    padding: 24px 20px;
  }

  .p-reason-detail-summary__title {
    font-size: 22px;
  }

  .p-reason-detail-summary__list li {
    font-size: 14px;
  }
}

/* =========================================================
   下層ページ：作業フロー 横長工程ブロック
   既存CSSは変更せず、ここから追記
========================================================= */

.p-workflow {
  margin-top: 64px;
}

.p-workflow__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.p-workflow__label {
  margin: 0 0 6px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.p-workflow__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.p-workflow__scroll {
  overflow-x: auto;
  padding-bottom: 8px;
}

.p-workflow__scroll::-webkit-scrollbar {
  height: 6px;
}

.p-workflow__scroll::-webkit-scrollbar-track {
  background: #edf2f7;
}

.p-workflow__scroll::-webkit-scrollbar-thumb {
  background: #9fb0c3;
}

.p-workflow__list {
  display: grid;
  grid-template-columns: repeat(9, minmax(145px, 1fr));
  min-width: 1180px;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 2px solid #26316b;
  border-right: 0;
  background: #eef3fb;
}

.p-workflow__item {
  position: relative;
  min-height: 150px;
  padding: 22px 18px 18px 24px;
  color: var(--color-navy);
  background: #eef3fb;
  border-right: 2px solid #26316b;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
}

.p-workflow__item:first-child {
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}

.p-workflow__item:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20px 50%);
}

.p-workflow__step {
  display: inline-block;
  margin-bottom: 12px;
  color: #2f8fe8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.p-workflow__item strong {
  display: block;
  writing-mode: vertical-rl;
  min-height: 86px;
  margin: 0 auto;
  color: #26316b;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.p-workflow__item p {
  margin: 14px 0 0;
  color: #1f2e41;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

@media (max-width: 1080px) {
  .p-workflow {
    margin-top: 48px;
  }

  .p-workflow__list {
    min-width: 1060px;
    grid-template-columns: repeat(9, 118px);
  }

  .p-workflow__item {
    min-height: 150px;
    padding-inline: 16px;
  }

  .p-workflow__item strong {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .p-workflow__head {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .p-workflow__scroll {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .p-workflow__list {
    min-width: 980px;
    grid-template-columns: repeat(9, 108px);
  }

  .p-workflow__item {
    min-height: 146px;
    padding: 18px 14px 16px 20px;
  }

  .p-workflow__item strong {
    font-size: 14px;
  }

  .p-workflow__item p {
    font-size: 11px;
  }
}

/* =========================================================
   下層ページ：作業フロー スライダー化
   既存CSSは変更せず、ここから追記
========================================================= */

.p-workflow {
  margin-top: 64px;
}

.p-workflow__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.p-workflow__label {
  margin: 0 0 6px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.p-workflow__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.p-workflow__controls {
  display: flex;
  gap: 10px;
}

.p-workflow__button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  color: var(--color-navy);
  background: #fff;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.p-workflow__button:hover {
  color: #fff;
  background: var(--color-navy);
  transform: translateY(-2px);
}

.p-workflow__button:first-child svg {
  transform: rotate(180deg);
}

.p-workflow__button svg {
  width: 18px;
  height: 18px;
}

.p-workflow__slider {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px 0 8px;
}

.p-workflow__slider::-webkit-scrollbar {
  display: none;
}

.p-workflow__list {
  display: flex;
  gap: 34px;
  min-width: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 0;
  background: transparent;
}

.p-workflow__item {
  position: relative;
  flex: 0 0 300px;
  min-height: 210px;
  padding: 30px 28px 28px;
  color: var(--color-navy);
  background: #eef3fb;
  border: 2px solid #26316b;
  clip-path: none;
  scroll-snap-align: start;
}

.p-workflow__item:first-child,
.p-workflow__item:last-child {
  clip-path: none;
}

.p-workflow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 16px;
  height: 16px;
  border-top: 2px solid #26316b;
  border-right: 2px solid #26316b;
  transform: translateY(-50%) rotate(45deg);
}

.p-workflow__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 24px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #fff;
  background: #2f8fe8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.p-workflow__item strong {
  display: block;
  writing-mode: horizontal-tb;
  min-height: auto;
  margin: 0;
  color: #26316b;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.p-workflow__item p {
  margin: 18px 0 0;
  color: #1f2e41;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

@media (max-width: 1080px) {
  .p-workflow {
    margin-top: 48px;
  }

  .p-workflow__item {
    flex-basis: 280px;
    min-height: 200px;
  }

  .p-workflow__item strong {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .p-workflow__head {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .p-workflow__controls {
    display: none;
  }

  .p-workflow__slider {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .p-workflow__list {
    gap: 26px;
  }

  .p-workflow__item {
    flex-basis: 78vw;
    min-height: 190px;
    padding: 26px 24px 24px;
  }

  .p-workflow__item:not(:last-child)::after {
    right: -21px;
    width: 13px;
    height: 13px;
  }

  .p-workflow__item strong {
    font-size: 19px;
  }

  .p-workflow__item p {
    font-size: 13px;
  }
}

/* =========================================================
   下層ページ：鳩よけネット設置
   既存CSSは変更せず、ここから追記
========================================================= */


/* =========================================================
  追記の設定
========================================================= */

 .p-company-section__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.3;
}

.p-blog-card img {
  aspect-ratio: 1 / .72;
}
.p-company-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;

  padding: 0px 0 0px;
  background: linear-gradient(180deg, #fff 0%, #f5f8fb 100%);
}
 .p-blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
  .p-company-office figure, .p-blog-card figure {
  margin: 0;
}
.p-blog-card {
  border: 1px solid var(--color-line);
  background: #fff;
  overflow: hidden;
}


.p-company-hero__title {
  margin: 0;
  font-size: clamp(38px, 7vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.c-section-head p, .p-zigyo-section__label, .p-company-label, .p-workflow__label, .p-zigyo-related__label, .p-net-hero__label, .p-net-section-head__en, .p-net-business__label {
  margin: 0 0 10px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.p-net-hero__jp, .p-company-hero__jp {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 800;

}

.p-company-hero__inner .p-net-hero__jp{
  text-align: center;
}
/* =========================================================
  追記の設定ここまで
========================================================= */



.p-net-page {
  background: #fff;
}

.p-net-hero {
  padding: 78px 0 42px;
  background: #fff;
}

.p-net-hero__inner {
  width: min(calc(100% - 48px), 1280px);
  margin-inline: auto;
}

.p-net-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
}

.p-net-hero__label::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #2f8fe8;
  transform: rotate(45deg);
}

.p-net-hero__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(54px, 8vw, 92px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .03em;
}

.p-net-hero__jp {
  margin: 14px 0 0;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
}

.p-net-hero__line {
  height: 1px;
  margin-top: 66px;
  background: #e6edf4;
}

.p-net-nav {
  padding: 30px 0 52px;
}

.p-net-nav__inner {
  display: flex;
  justify-content: flex-end;
  width: min(calc(100% - 48px), 1280px);
  margin-inline: auto;
}

.p-net-nav__list {
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.p-net-nav__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.p-net-nav__list a::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #cbd5e1;
}

.p-net-nav__list li:first-child a::before,
.p-net-nav__list li:last-child a::before {
  background: var(--color-navy);
}

.p-net-main-visual {
  width: min(calc(100% - 48px), 1280px);
  margin-inline: auto;
  overflow: hidden;
}

.p-net-main-visual img {
  width: 100%;
  aspect-ratio: 1280 / 470;
  object-fit: cover;
}

.p-net-about {
  padding: 92px 0 76px;
  background: #fff;
}

.p-net-about__inner {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 92px;
  width: min(calc(100% - 48px), 1080px);
  margin-inline: auto;
  align-items: start;
}

.p-net-section-head__num {
  display: inline-grid;
  min-width: 38px;
  height: 22px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #fff;
  background: #2f8fe8;
  font-size: 11px;
  font-weight: 900;
}

.p-net-section-head__en {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .03em;
}

.p-net-section-head__jp {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.p-net-section-head__jp::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #2f8fe8;
  transform: rotate(45deg);
}

.p-net-about__image {
  margin: 78px 0 0;
}

.p-net-about__image img {
  width: 100%;
  aspect-ratio: 240 / 300;
  object-fit: cover;
}

.p-net-content-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 38px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.p-net-content-label::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #2f8fe8;
  transform: rotate(45deg);
}

.p-net-about__body h2 {
  margin: 0 0 26px;
  color: var(--color-navy);
  font-size: 29px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: .08em;
}

.p-net-about__body p {
  margin: 0;
  color: #1f2e41;
  font-size: 14px;
  font-weight: 750;
  line-height: 2.25;
}

.p-net-diagram {
  margin: 34px 0 30px;
  padding: 24px;
  background: #f7f9fb;
}

.p-net-diagram img {
  width: 100%;
  aspect-ratio: 720 / 300;
  object-fit: cover;
}

.p-net-check {
  margin-top: 84px;
}

.p-net-check h3 {
  margin: 0 0 12px;
  color: var(--color-navy);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .08em;
}

.p-net-check p {
  margin-bottom: 24px;
}

.p-net-check__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.p-net-check__images img {
  width: 100%;
  aspect-ratio: 300 / 190;
  object-fit: cover;
}

.p-net-business {
  padding: 84px 0 92px;
  color: #fff;
  background: #4e585f;
  border-radius: 0;
}

.p-net-business__inner {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
}

.p-net-business__head {
  margin-bottom: 50px;
}

.p-net-business__title {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 6vw, 66px);
  font-weight: 400;
  line-height: 1.15;
}

.p-net-business__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #cce4ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.p-net-business__label::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #2f8fe8;
  transform: rotate(45deg);
}

.p-net-business__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.p-net-business-card figure {
  margin: 0 0 18px;
  overflow: hidden;
}

.p-net-business-card img {
  width: 100%;
  aspect-ratio: 320 / 190;
  object-fit: cover;
}

.p-net-business-card__num {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 22px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #fff;
  background: #2f8fe8;
  font-size: 11px;
  font-weight: 900;
}

.p-net-business-card h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .08em;
}

.p-net-business-card small {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.p-net-business-card p {
  min-height: 92px;
  margin: 18px 0 24px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 750;
  line-height: 2;
}

.p-net-business-card__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 170px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--color-navy);
  font-size: 12px;
  font-weight: 900;
}

.p-net-contact-link {
  padding: 92px 0 76px;
  background: #fff;
}

.p-net-contact-link__inner {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 90px;
  width: min(calc(100% - 48px), 1080px);
  margin-inline: auto;
  align-items: center;
}

.p-net-contact-link figure {
  margin: 0;
  overflow: hidden;
}

.p-net-contact-link img {
  width: 100%;
  aspect-ratio: 220 / 250;
  object-fit: cover;
}

.p-net-contact-link__body {
  border-top: 1px solid #e6edf4;
  padding-top: 32px;
}

.p-net-contact-link__body a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-navy);
}

.p-net-contact-link__body h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 62px);
  font-weight: 400;
  line-height: 1.15;
}

.p-net-contact-link__body p {
  margin: 14px 0 0;
  color: #1f2e41;
  font-size: 14px;
  font-weight: 750;
  line-height: 2;
}

@media (max-width: 1080px) {
  .p-net-about__inner,
  .p-net-contact-link__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .p-net-about__image {
    margin-top: 32px;
    max-width: 360px;
  }

  .p-net-business__grid {
    grid-template-columns: 1fr;
  }

  .p-net-business-card p {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .p-net-hero {
    padding: 54px 0 32px;
  }

  .p-net-hero__inner,
  .p-net-nav__inner,
  .p-net-main-visual,
  .p-net-about__inner,
  .p-net-business__inner,
  .p-net-contact-link__inner {
    width: min(calc(100% - 32px), 1280px);
  }

  .p-net-hero__title {
    font-size: 48px;
  }

  .p-net-hero__line {
    margin-top: 44px;
  }

  .p-net-nav__inner {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .p-net-nav__list {
    min-width: 480px;
  }

  .p-net-main-visual img {
    aspect-ratio: 16 / 10;
  }

  .p-net-about {
    padding: 64px 0 56px;
  }

  .p-net-check__images {
    grid-template-columns: 1fr;
  }

  .p-net-business {
    padding: 64px 0;
  }

  .p-net-contact-link {
    padding: 64px 0;
  }
}

/* =========================================================
   鳩よけネット設置ページ v2 修正
   既存CSSは変更せず、ここから追記
========================================================= */

.p-net-nav__list {
  gap: 34px;
}

.p-net-nav__list a {
  gap: 12px;
  color: var(--color-navy);
  font-size: 14px;
}

.p-net-nav__list a::before {
  content: "→";
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.p-net-nav__list a.is-active {
  color: #aab3be;
  pointer-events: none;
}

.p-net-nav__list a.is-active::before {
  color: #fff;
  background: #c8cdd3;
}

.p-net-nav__list li:first-child a::before,
.p-net-nav__list li:last-child a::before {
  background: var(--color-navy);
}

.p-net-nav__list li:first-child a.is-active::before {
  background: #c8cdd3;
}

.p-net-business__grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.p-net-business-card h3 {
  font-size: 20px;
}

.p-net-business-card p {
  min-height: 116px;
}

@media (max-width: 1080px) {
  .p-net-business__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-net-business-card p {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .p-net-nav__inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .p-net-nav__inner::-webkit-scrollbar {
    display: none;
  }

  .p-net-nav__list {
    min-width: 780px;
    gap: 26px;
  }

  .p-net-nav__list a {
    font-size: 13px;
    white-space: nowrap;
  }

  .p-net-nav__list a::before {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .p-net-business__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   4サービス下層ページ 追加調整
   既存CSSは変更せず、ここから追記
========================================================= */

.p-net-hero__title {
  word-break: keep-all;
}

@media (max-width: 767px) {
  .p-net-hero__title {
    font-size: 42px;
  }
}

.p-sitemap-hero {
  padding-bottom: 56px;
}

.p-sitemap-hero__inner {
  text-align: left;
}

.p-sitemap-hero__inner .p-company-hero__jp {
  text-align: left;
}

.p-sitemap-hero__lead {
  width: min(640px, 100%);
  margin: 20px 0 0;
  color: var(--color-gray);
  font-size: 15px;
  font-weight: 750;
}

.p-sitemap-section {
  padding-top: 72px;
}

.p-sitemap-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.p-sitemap-group {
  padding: 28px;
  border: 1px solid var(--color-line);
  background: #fff;
}

.p-sitemap-group__root {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
}

.p-sitemap-group__root::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-blue);
  transform: rotate(45deg);
}

.p-sitemap-tree {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0 0 0 22px;
}

.p-sitemap-tree li {
  position: relative;
  list-style: none;
}

.p-sitemap-tree li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: -16px;
  width: 8px;
  height: 1px;
  background: #b8c5d3;
}

.p-sitemap-tree a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--color-gray);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.p-sitemap-tree a:hover,
.p-sitemap-tree a[aria-current="page"] {
  color: var(--color-blue);
}

.p-company-page,
.p-blog-page {
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.p-company-hero__inner {
  position: sticky;
  top: 96px;
  z-index: 2;
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: min(100%, 1280px);
  min-height: min(78vh, 760px);
  margin-inline: auto;
  padding: 0 32px;
  text-align: center;
  pointer-events: none;
}

.p-company-hero__visual {
  grid-area: 1 / 1;
  width: 100%;
  max-width: 100%;
  min-height: min(78vh, 760px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 22px 56px rgba(17, 47, 84, 0.14);
  background-image:
    linear-gradient(180deg, rgba(10, 24, 40, 0.08) 0%, rgba(10, 24, 40, 0.18) 100%),
    url("../img/company/company-hero.jpg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-company-hero__visual--parallax {
  will-change: background-position;
}

.p-company-hero__title,
.p-company-hero__inner .p-company-label {
  color: #fff;
  text-shadow: 0 6px 24px rgba(17, 47, 84, 0.34);
}

.p-company-hero__inner .p-company-label {
  margin: 0;
  letter-spacing: 0.22em;
  line-height: 1;
  transform: translateX(0.11em);
}

.p-company-hero__title {
  margin: 0;
  line-height: 1;
}

.p-company-section__head {
  margin-bottom: 30px;
}

.p-company-overview {
  align-items: start;
}

.p-company-table {
  width: 100%;
  border-collapse: collapse;
}

.p-company-table th,
.p-company-table td {
  padding: 22px 0;
  border-bottom: 1px solid #e6edf4;
  font-size: 14px;
  line-height: 1.9;
  text-align: left;
  vertical-align: top;
}

.p-company-table th {
  width: 180px;
  color: #64748b;
  font-weight: 900;
}

.p-company-table td {
  font-weight: 750;
}

.p-company-offices {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 46px;
}

.p-company-office img {
  width: 100%;
  aspect-ratio: 360 / 220;
  object-fit: cover;
}

.p-company-office h3 {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 900;
}

.p-company-office p {
  font-size: 13px;
}

.p-company-access {
  display: grid;
  gap: 34px;
}

.p-company-access-card {
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #e6edf4;
}

.p-company-access-card figure,
.p-company-staff-card figure {
  margin: 0;
}

.p-company-access-card img {
  width: 100%;
  aspect-ratio: 430 / 250;
  object-fit: cover;
}

.p-company-access-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.p-company-staff {
  display: grid;
  gap: 34px;
}

.p-company-staff-card {
  grid-template-columns: 240px 1fr;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid #e6edf4;
}

.p-company-staff-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.p-company-staff-card__role {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.p-company-staff-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 900;
}

.p-company-staff-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.p-company-staff-card__meta span {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #cbd5e1;
  color: var(--color-navy);
  font-size: 11px;
  font-weight: 900;
}

.p-blog-hero__visual img {
  aspect-ratio: 16 / 10;
}

.p-blog-hero {
  padding: 72px 0 0;
 
}

.p-blog-hero__inner {
  width: min(calc(100% - 48px), 1280px);
  margin-inline: auto;
  text-align: center;
}

.p-blog-hero__label {
  margin: 0 0 10px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.p-blog-hero__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(38px, 7vw, 38px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-blog-section {
  padding-top: 72px;
}

.p-blog-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 18px;
  margin-bottom: 38px;
}

.p-blog-filter {
  display: grid;
  gap: 10px;
}

.p-blog-filter span {
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.p-blog-filter select {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid #d7e0ea;
  background: #fff;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 750;
}

.p-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.p-blog-card {
  display: block;
  min-width: 0;
  transition: background-color .25s ease, transform .25s ease, border-color .25s ease;
}

.p-blog-card:hover {
  background: rgb(238, 241, 245);
  border-color: #cfd8e3;
  transform: translateY(-2px);
}

.p-blog-card img {
  aspect-ratio: 1 / .72;
}

.p-blog-card__body {
  padding: 18px 18px 20px;
}

.p-blog-card__category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: #edf4fa;
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.p-blog-card__category .c-icon {
  width: 14px;
  height: 14px;
}

.p-blog-card__date {
  display: block;
  margin-top: 14px;
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.p-blog-card h3 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.7;
}

.p-blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}

.p-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #d6dee8;
  background: #fff;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 900;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.p-blog-pagination a.page-numbers:hover,
.p-blog-pagination .page-numbers.current {
  border-color: var(--color-navy);
  background: var(--color-navy);
  color: #fff;
}

.p-blog-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
}

.p-blog-pagination__arrow .c-icon {
  width: 18px;
  height: 18px;
}

.p-blog-detail-section {
  padding-top: 72px;
}

.p-blog-detail-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.p-blog-sidebar {
  display: grid;
  gap: 22px;
}

.p-blog-side-block,
.p-blog-article {
  border: 1px solid var(--color-line);
  background: #fff;
}

.p-blog-side-block {
  padding: 22px;
}

.p-blog-side-block__title {
  margin: 0 0 18px;
  color: var(--color-navy);
  font-size: 18px;
  font-weight: 900;
}

.p-blog-side-list {
  display: grid;
  gap: 18px;
}

.p-blog-side-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.p-blog-side-card figure {
  margin: 0;
}

.p-blog-side-card img {
  width: 100%;
  aspect-ratio: 1 / .78;
  object-fit: cover;
}

.p-blog-side-card h3 {
  margin: 8px 0 0;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.6;
}

.p-blog-category-list {
  display: grid;
  gap: 10px;
}

.p-blog-category-list a {
  display: block;
  padding: 12px 14px;
  border: 1px solid #d7e0ea;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 800;
  transition: background-color .25s ease, border-color .25s ease;
}

.p-blog-category-list a:hover {
  background: rgb(238, 241, 245);
  border-color: #cfd8e3;
}

.p-blog-article {
  padding: 34px;
}

.p-blog-article__header h1 {
  margin: 12px 0 0;
  color: var(--color-navy);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.4;
}

.p-blog-article__hero {
  margin: 30px 0 0;
}

.p-blog-article__hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.p-blog-article__body {
  margin-top: 30px;
  color: var(--color-gray);
}

.p-blog-article__body h2 {
  margin: 40px 0 18px;
  padding: 14px 18px;
  background: #0b2746;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.45;
}

.p-blog-article__body h3 {
  margin: 32px 0 16px;
  padding: 4px 0 10px 14px;
  border-left: 5px solid #0d5c87;
  border-bottom: 1px solid #0d5c87;
  color: var(--color-navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.p-blog-article__body p,
.p-blog-article__body li {
  font-size: 15px;
  font-weight: 750;
  line-height: 2;
}

.p-blog-article__body p {
  margin: 0 0 18px;
}

.p-blog-article__body ul {
  margin: 0 0 18px;
  padding-left: 1.25em;
}

.p-blog-article__body li {
  list-style: disc;
}

.p-blog-article__body table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  border: 1px solid #d7e0ea;
  background: #fff;
  font-size: 14px;
  line-height: 1.7;
}

.p-blog-table-scroll {
  margin: 28px 0;
}

.p-blog-table-scroll table {
  margin: 0;
}

.p-blog-article__body th,
.p-blog-article__body td {
  padding: 14px 16px;
  border: 1px solid #d7e0ea;
  vertical-align: top;
}

.p-blog-article__body th {
  background: #eef4f8;
  color: var(--color-navy);
  font-weight: 900;
  text-align: left;
}

.p-blog-article__body td {
  color: var(--color-gray);
  font-weight: 700;
}

.p-blog-article__note {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--color-orange);
  background: #f6f8fb;
  color: var(--color-gray);
  font-size: 14px;
  font-weight: 800;
}

.p-blog-article__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--color-line);
}

.p-blog-article__nav-link {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid #d7e0ea;
  background: #fff;
}

.p-blog-article__nav-link span {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
}

.p-blog-article__nav-link strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p-blog-article__nav-link--next {
  text-align: right;
}

.p-blog-article__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--color-navy);
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 900;
}

.p-contact-page .l-header__actions .c-btn[aria-current="page"] {
  color: #fff;
}

.p-contact-page .l-header__spnav a[aria-current="page"] {
  color: var(--color-blue);
}

.p-contact-hero {
  padding: 72px 0 0;
 
}

.p-contact-hero__inner {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
  text-align: left;
}

.p-contact-hero__title {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(38px, 7vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-contact-hero__jp {
  margin: 14px 0 0;
  color: var(--color-blue);
  font-size: 16px;
  font-weight: 800;
  text-align: left;
}

.p-contact-hero__lead {
  width: min(640px, 100%);
  margin: 20px 0 0;
  color: var(--color-gray);
  font-size: 15px;
  font-weight: 750;
}

.p-contact-section {
  padding-top: 72px;
}

.p-contact-layout {
  display: grid;
  gap: 30px;
}

.p-contact-intro {
  width: min(760px, 100%);
  color: var(--color-gray);
  font-size: 15px;
  font-weight: 750;
}

.p-contact-intro p {
  margin: 0 0 14px;
}

.p-contact-form {
  padding: 34px;
  border: 1px solid var(--color-line);
  background: #fff;
}

.p-contact-form__row,
.p-contact-fieldset {
  margin-bottom: 22px;
}

.p-contact-form__row--2col,
.p-contact-form__row--address {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.p-contact-field {
  display: grid;
  gap: 10px;
}

.p-contact-field__label,
.p-contact-fieldset legend {
  padding: 0;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 900;
}

.p-contact-field__label em,
.p-contact-fieldset legend em {
  color: var(--color-orange);
  font-style: normal;
}

.p-contact-field input,
.p-contact-field select,
.p-contact-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid #d7e0ea;
  background: #fff;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 750;
}

.p-contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

.p-contact-field input::placeholder,
.p-contact-field textarea::placeholder {
  color: #94a3b8;
}

.p-contact-fieldset {
  padding: 0;
  border: 0;
}

.p-contact-fieldset__lead {
  margin: 10px 0 16px;
  color: var(--color-gray);
  font-size: 14px;
  font-weight: 750;
}

.p-contact-checks {
  display: grid;
  gap: 12px;
}

.p-contact-check {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid #d7e0ea;
  background: #f8fafc;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 750;
}

.p-contact-check input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.p-contact-note {
  margin: 0;
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 800;
}

.p-contact-form__actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 1080px) {
  .l-header__nav,
  .l-header__actions {
    display: none;
  }

  .l-header__menu {
    display: block;
  }

  .l-header__spnav {
    display: none;
    padding: 0 24px 20px;
    border-top: 1px solid var(--color-line);
    background: #fff;
  }

  .l-header.is-open .l-header__spnav {
    display: grid;
    gap: 10px;
  }

  .l-header__spnav a {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 800;
  }

  .p-sub-hero__inner,
  .p-zigyo-about__grid,
  .p-net-about__inner,
  .p-company-overview,
  .p-company-access-card,
  .p-company-staff-card,
  .p-cta__inner {
    grid-template-columns: 1fr;
  }

  .p-stats__inner,
  .p-reason__grid,
  .p-service__list,
  .p-works__grid,
  .p-zigyo-case__grid,
  .p-zigyo-related__cards,
  .p-net-business__grid,
  .p-zigyo-service__grid,
  .p-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .p-sitemap-layout {
    grid-template-columns: 1fr;
  }

  .p-contact-form__row--2col,
  .p-contact-form__row--address {
    grid-template-columns: 1fr;
  }

  .p-blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .p-blog-article {
    order: 1;
  }

  .p-blog-sidebar {
    order: 2;
  }

  .l-footer__grid,
  .l-footer__bottom-inner {
    grid-template-columns: 1fr 1fr;
  }

  .l-footer__bottom small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .l-container,
  .p-sub-hero__inner,
  .p-company-hero__inner,
  .p-company-hero__visual,
  .p-company-section__inner,
  .p-net-hero__inner,
  .p-net-nav__inner,
  .p-net-about__inner,
  .p-net-business__inner,
  .p-net-main-visual {
    width: min(calc(100% - 32px), 1280px);
  }

  .l-header__inner {
    width: min(calc(100% - 32px), 1280px);
    min-height: 72px;
  }

  .l-header__logo {
    font-size: 20px;
  }

  .p-hero,
  .p-hero__inner {
    min-height: 640px;
  }

  .p-hero__title {
    font-size: 46px;
  }

  .p-hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .p-stats__inner,
  .p-news__row,
  .p-reason__grid,
  .p-service__list,
  .p-works__grid,
  .p-zigyo-case__grid,
  .p-zigyo-related__cards,
  .p-net-business__grid,
  .p-zigyo-service__grid,
  .p-blog-grid,
  .p-company-offices,
  .l-footer__grid,
  .l-footer__bottom-inner {
    grid-template-columns: 1fr;
  }

  .p-news,
  .p-reason,
  .p-service,
  .p-works,
  .p-zigyo-section,
  .p-zigyo-related,
  .p-net-about,
  .p-net-business,
  .p-company-section,
  .p-cta {
    padding: 58px 0;
  }

  .p-news__row {
    gap: 10px;
    padding: 18px 0;
  }

  .p-news__row svg {
    display: none;
  }

  .p-news__row time {
    grid-column: 1 / -1;
  }

  .p-stats__item {
    min-height: auto;
    padding: 24px 0;
  }

  .p-sub-hero,
  .p-company-hero,
  .p-net-hero {
    padding: 0px 0 0px;
  }

  .p-blog-hero {
    padding: 54px 0 0;
  }

  .p-contact-hero {
    padding: 54px 0 0;
  }

  .p-blog-hero__title {
    font-size: 35px;
  }

  .p-contact-hero__title {
    font-size: 35px;
  }

  .p-company-hero {
    min-height: auto;
  }

  .p-company-hero__inner {
    position: relative;
    top: auto;
    min-height: auto;
    margin-bottom: 24px;
    padding: 0 0 8px;
    background: none;
  }

  .p-company-hero__visual {
    width: 100%;
    border-radius: 0;
  }

  .p-company-hero__visual--parallax {
    min-height: 320px;
  }

  .p-company-hero__title,
  .p-net-hero__title,
  .p-sub-hero__title {
    font-size: 35px;
  }

  .p-workflow {
    padding: 20px;
  }

  .p-workflow__list {
    grid-auto-columns: minmax(220px, 1fr);
  }

  .p-net-nav__list {
    grid-template-columns: 1fr 1fr;
  }

  .p-net-check__images {
    grid-template-columns: 1fr;
  }

  .p-company-table th,
  .p-company-table td {
    display: block;
    width: 100%;
    padding: 12px 0;
  }

  .p-company-table th {
    padding-top: 20px;
    border-bottom: 0;
  }

  .p-blog-section {
    padding-top: 58px;
  }

  .p-sitemap-section {
    padding-top: 58px;
  }

  .p-blog-filters {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
  }

  .p-sitemap-group {
    padding: 22px;
  }

  .p-blog-card__body {
    padding: 14px 14px 18px;
  }

  .p-blog-card h3 {
    font-size: 14px;
  }

  .p-blog-article {
    padding: 22px;
  }

  .p-blog-article__body h2 {
    margin-top: 32px;
    padding: 12px 14px;
    font-size: 15px;
  }

  .p-blog-article__body h3 {
    margin-top: 26px;
    font-size: 18px;
  }

  .p-blog-table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .p-blog-table-scroll table {
    min-width: 640px;
    width: 100%;
    white-space: nowrap;
  }

  .p-contact-form {
    padding: 22px;
  }

  .p-blog-side-block {
    padding: 18px;
  }

  .p-blog-side-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .p-blog-article__nav {
    grid-template-columns: 1fr;
  }

  .p-blog-article__nav-link--next {
    text-align: left;
  }

  .l-footer__bottom div {
    flex-wrap: wrap;
  }
}
