@charset "UTF-8";
/* CSS Document */
/* --------------------------------------
   TOP共通 
-------------------------------------- */

/* --------------------------------------
   KV
-------------------------------------- */
.p-hero {
  padding: 25px 0 0;
}

.p-hero__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: auto;
}

.p-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
  width: min(335px, 100%);
  margin: 0 auto;
}

.p-hero__headline,
.p-hero__subcopy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.p-hero__headline {
  margin-bottom: 0;
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.21;
}

.p-hero__headline p,
.p-hero__subcopy p {
  margin: 0;
}

.p-hero__subcopy {
  margin-bottom: 0;
  width: 298px;
  font-size: var(--fs-h4);
  font-weight: 800;
  line-height: 1.2;
}

.p-hero__subcopy p {
  display: inline;
}

.p-hero__tagline {
  margin: 0;
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: 1.23;
}

.p-hero__visual {
  position: relative;
  margin-top: var(--space-3);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.p-hero__visual picture {
  display: block;
  width: 100%;
}

.p-hero__visual img {
  width: 100%;
  aspect-ratio: 375 / 353;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 26%);
}

#top.l-wraper {
  /* padding-bottom: calc(110px + env(safe-area-inset-bottom)); */
}

@media (min-width: 600px) {
  .p-hero {
    padding-top: 0;
  }

  .p-hero__grid {
    flex-direction: row;
    align-items: end;
    gap: 32px;
  }

  .p-hero__copy {
    flex: 1 1 0;
    width: auto;
    margin: 0 0 0 6%;
    align-self: center;
  }

  .p-hero__visual {
    flex: 1.3 1 0;
    align-self: end;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
  }

  .p-hero__visual picture {
    height: 100%;
  }

  .p-hero__visual img {
    height: clamp(420px, 52vw, 730px);
    border-radius: 0;
    aspect-ratio: auto;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%, 0 24%);
  }
}

@media (min-width: 1024px) {
  .p-hero {
    padding-top: var(--header-height);
  }

  .p-hero__grid {
    align-items: center;
    gap: 0;
  }

  .p-hero__copy {
    display: block;
    flex: 1 1 810px;
    width: auto;
    max-width: 700px;
    position: relative;
    z-index: 2;
    align-self: center;
    margin: auto -400px auto 3%;
  }

  .p-hero__headline {
    margin-bottom: var(--space-5);
    font-size: clamp(42px, 4vw, 54px);
  }

  .p-hero__subcopy {
    width: auto;
    margin-bottom: var(--space-4);
    font-size: var(--fs-h3);
  }

  .p-hero__subcopy p {
    display: block;
  }

  .p-hero__tagline {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-xl);
  }

  .p-hero__visual {
    flex: 1 1 auto;
    width: auto;
    margin-top: 0;
    margin-left: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .p-hero__visual img {
    width: 100%;
    min-width: 1370px;
    max-width: none;
    margin-left: auto;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 28%);
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
  /* .p-hero__grid {
    gap: 0;
  }
  .p-hero__grid {
    grid-template-columns: 310px minmax(0, 1fr);
  }
  .p-hero__copy {
    position: relative;
    z-index: 2;
    margin-right: -174px;
  }

  .p-hero__visual {
    position: relative;
    z-index: 1;
  } */
}

/* --------------------------------------
   Top Issues
-------------------------------------- */
.p-home-issues {
  padding-top: var(--space-4);
  padding-bottom: var(--space-6);
  background: var(--color-gray01);
}

.p-home-issues__lead {
  margin: 0;
  text-align: center;
  font-size: var(--fs-h4);
  font-weight: 700;
  line-height: 1.8;
}

.p-home-issues__grid {
  display: grid;
  gap: var(--page-group-gap);
  margin-top: var(--page-heading-gap);
}

.p-home-issues__message {
  margin-top: var(--page-heading-gap);
  padding: var(--space-5) 24px;
  background-color: var(--color-key);
  background-image: url("/assets/images/common/bg-logo-mark.png");
  background-repeat: no-repeat;
  background-position: right 14px bottom -22px;
  background-size: 140px auto;
  color: var(--color-white);
}

.p-home-issues__message-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--page-group-gap);
  text-align: center;
}

.p-home-issues__message-title,
.p-home-issues__message-copy p {
  margin: 0;
}

.p-home-issues__message-title {
  color: var(--color-white);
  font-size: var(--fs-body-lg);
  font-weight: 700;
  line-height: 1.8;
}

.p-home-issues__message-copy p {
  color: var(--color-white);
  font-size: var(--fs-body-md);
  font-weight: 700;
  line-height: 2;
}

@media (min-width: 600px) {
  .p-home-issues {
    padding-top: var(--space-7);
    padding-bottom: var(--space-7);
  }

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

  .p-home-issues__message {
    padding: var(--space-6) 40px;
    background-position: right 20px bottom -36px;
    background-size: 200px auto;
  }
}

@media (min-width: 1024px) {
  .p-home-issues {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .p-home-issues__lead {
    font-size: var(--fs-h5);
  }

  .p-home-issues__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* --------------------------------------
   Value Creation
-------------------------------------- */
.p-value-creation {
  background: var(--color-white);
}

.p-value-creation__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.p-value-creation__title {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.4;
}

.p-value-creation__text {
  margin-top: var(--space-3);
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.9;
}

.p-value-creation__text p {
  margin: 0;
}

.p-value-creation__text p + p {
  margin-top: var(--space-3);
}

.p-value-creation__diagram {
  display: flex;
  justify-content: center;
}

.p-value-creation__diagram img {
  width: min(72%, 550px);
  height: auto;
  display: block;
}
.p-fund-banner {
  padding-top: var(--space-3);
}

.p-fund-banner__link {
  display: block;
  width: min(80%, 380px);
  margin: 0 auto;
}

.p-fund-banner__link img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 600px) {
  .p-value-creation__grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 36px;
  }

  .p-fund-banner {
    padding-top: var(--space-4);
  }
}

@media (min-width: 1024px) {
  .p-value-creation__grid {
    grid-template-columns: 550px minmax(0, 550px);
    justify-content: space-between;
    gap: 60px;
  }

  .p-value-creation__title {
    line-height: 1.5;
  }

  .p-value-creation__text {
    margin-top: var(--space-5);
    font-size: var(--fs-body-lg);
    line-height: 1.8;
  }

  .p-fund-banner {
    padding-top: var(--space-5);
  }
}
/* --------------------------------------
   Method
-------------------------------------- */
.p-method-banner {
  position: relative;
  min-height: 480px;
  color: #fff;
}

@media (min-width: 600px) {
  .p-method-banner {
    min-height: 500px;
  }
}

@media (min-width: 1024px) {
  .p-method-banner {
    min-height: 755px;
  }
}

.p-method-banner__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
    url("/assets/images/top/top-method-bg-sp.png") no-repeat;
  background-position: center;
  background-size: cover;
}

@media (min-width: 600px) {
  .p-method-banner__media {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
      url("/assets/images/top/top-method-bg-pc.png") no-repeat;
    background-position: bottom center;
  }
}

@media (min-width: 1024px) {
  .p-method-banner__media {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
      url("/assets/images/top/top-method-bg-pc.png") no-repeat;
    background-position: right center;
  }
}

.p-method-banner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  min-height: 480px;
  padding: var(--space-6) 4%;
  gap: var(--page-block-gap);
}

@media (min-width: 600px) {
  .p-method-banner__content {
    align-items: end;
    min-height: 500px;
    padding: 240px 4% 88px 0;
  }

  .p-method-banner__content > * {
    width: min(420px, 100%);
  }
}

@media (min-width: 1024px) {
  .p-method-banner__content {
    align-items: end;
    min-height: 755px;
    padding: 0 3% 0 0;
  }
}

.p-method-banner__content > * {
  width: min(335px, 100%);
}

.l-wrap-m.p-method-banner__content {
  width: auto;
}

@media (min-width: 1024px) {
  .p-method-banner__content > * {
    width: min(388px, 100%);
  }
}

@media (min-width: 1024px) {
  .l-wrap-m.p-method-banner__content {
    width: min(89%, 1400px);
  }
}

.p-method-banner__text {
  margin: 0 0 var(--space-2);
}

@media (min-width: 1024px) {
  .p-method-banner__text {
    margin: 0 0 var(--space-5);
    font-size: var(--fs-body);
  }
}

/* --------------------------------------
   体制 System
-------------------------------------- */
.p-system__grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: stretch;
  align-items: start;
  gap: 40px;
}

@media (min-width: 600px) {
  .p-system__grid {
    gap: 56px;
  }
}

@media (min-width: 1024px) {
  .p-system__grid {
    grid-template-columns: minmax(0, 993px) 510px;
    justify-content: flex-start;
    align-items: center;
  }
}

.p-system__images {
  display: grid;
  grid-template-columns: 3fr 7fr;
  align-items: start;
  gap: 20px;
  margin-top: var(--space-5);
}

@media (min-width: 600px) {
  .p-system__images {
    grid-template-columns: 260px 1fr;
    gap: 24px;
    margin-top: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .p-system__images {
    grid-template-columns: 3fr 4fr;
    gap: 56px;
    margin-top: var(--space-6);
  }
}

.p-system__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.p-system__image--small {
  margin-top: 0;
}

@media (min-width: 600px) {
  .p-system__image.p-system__image--large {
    margin-top: 20%;
  }
}

.p-system__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 0;
}

@media (min-width: 600px) {
  .p-system__content {
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .p-system__content {
    gap: 56px;
    padding-bottom: var(--space-1);
  }
}

.p-system__lead,
.p-system__bio {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.8;
}

.p-system__lead {
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-key);
  font-size: var(--fs-body-lg);
  font-weight: 700;
}

@media (min-width: 1024px) {
  .p-system__lead {
    padding-bottom: var(--space-5);
  }
}

.p-system__role,
.p-system__name {
  margin: 0;
  font-weight: 700;
}

.p-system__role {
  font-size: var(--fs-body-lg);
  line-height: 1.8;
}

.p-system__name {
  margin-top: var(--space-1);
  font-size: var(--fs-3xl);
  line-height: 1.2;
}

.p-system__bio {
  margin-top: var(--space-4);
}

@media (min-width: 1024px) {
  .p-system__bio {
    width: min(100%, 400px);
  }
}

.p-system__btn .c-button {
  margin: auto;
}

@media (min-width: 1024px) {
  .p-system__btn .c-button {
    margin: 0 auto 0 0;
  }
}

/* --------------------------------------
   FAQ
-------------------------------------- */

.p-faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 600px) {
  .p-faq__grid {
    gap: 56px;
  }
}

@media (min-width: 1024px) {
  .p-faq__grid {
    grid-template-columns: 1fr minmax(0, 1091px);
    gap: 120px;
  }
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-faq-item {
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-gray01);
}

.p-faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 20px;
  background: var(--color-key);
  color: var(--color-white);
  cursor: pointer;
  list-style: none;
  font-size: var(--fs-body);
  font-weight: 700;
}

@media (min-width: 600px) {
  .p-faq-item summary {
    padding: 24px 24px;
  }
}

@media (min-width: 1024px) {
  .p-faq-item summary {
    padding: 28px 30px;
    gap: 1.5rem;
  }
}

.p-faq-item__label {
  flex: 0 0 auto;
  line-height: 1.25;
  font-size: var(--fs-xl);
}

@media (min-width: 600px) {
  .p-faq-item__label {
    margin-top: -1px;
  }
}

@media (min-width: 1024px) {
  .p-faq-item__label {
    line-height: 1;
    margin-top: -2px;
  }
}

.p-faq-item__question {
  flex: 1 1 auto;
  min-width: 0;
}

.p-faq-item[open] {
  border: 1px solid var(--color-key);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}

.p-faq-item summary::-webkit-details-marker {
  display: none;
}

.p-faq-item summary::after {
  content: "+";
  font-size: var(--fs-xl);
  line-height: 1;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-faq-item[open] summary::after {
  transform: rotate(135deg);
}

.p-faq-item__content {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: height 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height, opacity, transform;
}

.p-faq-item[open] .p-faq-item__content {
  opacity: 1;
  transform: translateY(0);
}

.p-faq-item p {
  margin: 0;
  padding: var(--space-3) 20px;
  background: var(--color-gray01);
  font-size: var(--fs-body);
  line-height: 1.8;
}

@media (min-width: 600px) {
  .p-faq-item p {
    padding: var(--space-3) 24px var(--space-4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-faq-item summary::after,
  .p-faq-item__content {
    transition: none;
  }
}

@media (min-width: 1024px) {
  .p-faq-item p {
    padding: 40px;
  }

  #top.l-wraper {
    padding-bottom: 0;
  }
}

/* --------------------------------------
   Services
-------------------------------------- */
.p-section-intro__lead {
  margin: 0 0 var(--space-1);
  font-size: var(--fs-body-lg);
  font-weight: 700;
}

.p-services {
  position: relative;
  overflow: hidden;
}

/* .p-services::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: min(42vw, 280px);
  background: url("/assets/images/top/case-sutudy-bg.png") center bottom / cover
    no-repeat;
  pointer-events: none;
  z-index: 0;
} */

.p-services > * {
  position: relative;
  z-index: 1;
}

.p-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.p-service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.p-service-card__main,
.p-service-card__detail {
  padding: 28px;
  border-radius: var(--space-2);
  box-shadow: 0px 0px 0px var(--color-transparent-bk-right);
}

.p-service-card__main {
  background: var(--color-white);
  text-align: center;
}

.p-service-card__detail {
  background: var(--color-gray01);
}

.p-service-card__icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 30px;
  object-fit: contain;
}

.p-service-card__label,
.p-service-card__title,
.p-service-card__description,
.p-service-card__detail h4 {
  margin: 0;
}

.p-service-card__label {
  font-size: var(--fs-body);
}

.p-service-card__title {
  margin-top: var(--space-0);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-black);
  font-size: var(--fs-h4);
  font-weight: 700;
}

.p-service-card__description {
  margin-top: var(--space-3);
  text-align: left;
  font-size: var(--fs-body-lg);
  font-weight: 700;
  text-align: center;
}

.p-service-card__detail h4 {
  margin-bottom: var(--space-3);
  font-weight: 700;
}

.p-services__action {
  display: flex;
  justify-content: center;
  margin-top: var(--space-5);
}

@media (min-width: 600px) {
  .p-services__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .p-service-card:last-child {
    grid-column: auto;
  }

  .p-service-card {
    display: grid;
    grid-template-rows: 1fr auto;
  }
}

@media (min-width: 1024px) {
  .p-services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .p-service-card {
    display: flex;
    align-items: stretch;
  }

  .p-service-card:last-child {
    grid-column: auto;
  }

  .p-service-card__main,
  .p-service-card__detail {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 50px 40px;
  }

  .p-services__action {
    margin-top: var(--space-7);
  }
}

/* --------------------------------------
   Case Study
-------------------------------------- */
.p-case-study {
  position: relative;
  overflow: hidden;
  padding-bottom: var(--space-7);
  background: url("/assets/images/top/case-sutudy-bg.png") center bottom / 100%
    auto no-repeat;
}

.p-case-study > * {
  position: relative;
  z-index: 1;
}

.p-case-study__container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--page-block-gap);
}

.p-case-study__metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--page-group-gap);
}

.p-metric-card {
  background: var(--color-white);
  border-radius: 28px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.08);
}

.p-metric-card__title,
.p-metric-card__value {
  margin: 0;
}

.p-metric-card__title {
  color: var(--color-black);
  font-size: var(--fs-h6);
  font-weight: 700;
  line-height: 1.5;
}

.p-metric-card__value {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-3);
  color: var(--color-black);
  font-size: var(--fs-metric);
  font-weight: 800;
  line-height: 1;
}

.p-metric-card__value span {
  font-size: var(--fs-metric-unit);
}

.p-metric-card__value--jp {
  font-size: var(--fs-en-lg);
}

/* .p-metric-card__value--jp span {
  align-self: flex-end;
} */

.p-metric-card__compare {
  position: relative;
  display: grid;
  gap: 36px;
  margin-top: var(--space-4);
}

.p-metric-card__compare::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-metric-card__compare div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 22px 28px;
  border-radius: 14px;
  font-size: var(--fs-body-lg);
  line-height: 1.5;
}

.p-metric-card__compare div:first-child {
  background: #f3f3f3;
}

.p-metric-card__compare div:last-child {
  background: #d9d9d9;
}

.p-metric-card__compare strong {
  font-size: var(--fs-h6);
  font-weight: 400;
}

@media (min-width: 600px) {
  .p-case-study {
    padding-bottom: var(--space-8);
    background-size: cover;
    background-position: center bottom;
  }

  .p-case-study__container {
    gap: 48px;
  }

  .p-case-study__metrics {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .p-metric-card {
    padding: 40px 32px;
  }
}

@media (min-width: 1024px) {
  .p-case-study {
    padding-bottom: var(--space-8);
    background-size: 100% auto;
    background-position: center bottom;
  }

  .p-case-study__container {
    gap: var(--page-block-gap);
  }

  .p-case-study__metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--page-group-gap);
  }

  .p-metric-card {
    padding: var(--space-5) 46px var(--space-5);
  }

  .p-metric-card__title {
    font-size: var(--fs-h6);
  }

  .p-metric-card__value {
    margin-top: var(--space-3);
    font-size: var(--fs-metric);
  }

  .p-metric-card__value span {
    font-size: var(--fs-metric-unit);
  }

  .p-metric-card__value--jp {
    font-size: var(--fs-en-lg);
  }
}

/* --------------------------------------
   Services サービス内容
-------------------------------------- */

.p-subpage {
  background: var(--color-gray01);
}

.p-subpage-placeholder {
  display: grid;
  gap: var(--page-group-gap);
  justify-items: center;
  padding: 40px 24px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: var(--color-white);
  text-align: center;
}

.p-subpage-placeholder__title,
.p-subpage-placeholder__text {
  margin: 0;
}

.p-subpage-placeholder__title {
  font-size: var(--fs-h4);
  font-weight: 700;
}

.p-subpage-placeholder__text {
  max-width: 46em;
  font-size: var(--fs-body);
  font-weight: 700;
}

.l-subpage-main.p-assessment-page {
  padding-bottom: 0;
}
.p-assessment-page__form {
  padding: var(--space-6) 0;
}
.p-assessment-page__form-title {
  padding-bottom: var(--space-4);
}

.p-assessment-page__lead {
  text-align: center;
}

.p-assessment-page__lead-title,
.p-assessment-page__form-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

.p-assessment-page__overview,
.p-assessment-page__process {
  display: grid;
}

.p-assessment-page__two-column,
.p-assessment-page__process-grid {
  display: grid;
}

.p-assessment-page__summary {
  margin: 0;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.8;
}

.p-assessment-page__block-text {
  display: grid;
  padding-bottom: var(--space-4);
}

.p-assessment-page__block-text p {
  margin: 0;
  font-size: var(--fs-body);
}

.p-assessment-page__list-card .c-lined-icon-list {
  --lined-icon-list-item-padding-y: 14px;
  --lined-icon-list-padding-left: 32px;
  --lined-icon-list-icon-top: 18px;
  --lined-icon-list-border-color: rgba(26, 26, 26, 0.18);
}

.p-assessment-page__list-card .c-lined-icon-list li {
  font-weight: 700;
}

.p-assessment-page__stance-note {
  margin: var(--space-3) 0;
  font-size: var(--fs-body-lg);
  font-weight: 700;
}

.p-assessment-page__process-visual {
  overflow: hidden;
  border-radius: 20px;
}

.p-assessment-page__process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-assessment-page__consent {
  display: grid;
  justify-items: center;
  gap: var(--page-group-gap);
}

.p-assessment-page__consent-text {
  margin: 0;
  font-size: var(--fs-body-sm);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-assessment-page__consent-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-body-sm);
  font-weight: 700;
  line-height: 1.8;
}

.p-assessment-page__consent-check input {
  width: 20px;
  height: 20px;
  margin: 0;
}

#mailformpro .p-assessment-page__consent-check.mfp_checked,
#mailformpro .p-assessment-page__consent-check.mfp_not_checked {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.p-assessment-page__submit {
  display: grid;
  justify-items: center;
  gap: var(--page-block-gap);
}

.p-assessment-page__submit .c-button {
  min-width: min(100%, 400px);
  padding: var(--space-3) 20px var(--space-3) 24px;
}

#mailformpro .c-form-table__control textarea,
#mailformpro .c-form-table__control textarea.mfp_element_textarea {
  min-height: 220px;
  line-height: 1.8;
}

#mailformpro .p-assessment-page__submit .c-button {
  width: min(100%, 400px);
  min-height: 60px;
  justify-content: center;
  border: 1px solid var(--color-black);
  background: var(--color-black);
  color: var(--color-white);
  box-shadow: none;
  text-shadow: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

#mailformpro .p-assessment-page__submit .c-button.mfp_element_submit,
#mailformpro .p-assessment-page__submit .c-button.mfp_element_submit:hover,
#mailformpro
  .p-assessment-page__submit
  .c-button.mfp_element_submit:focus-visible,
#mailformpro .p-assessment-page__submit .c-button:hover {
  border-color: var(--color-black);
  background: var(--color-black);
  color: var(--color-white);
  box-shadow: none;
  text-shadow: none;
  transform: none;
}

@media (min-width: 600px) {
  #mailformpro .c-form-table__control textarea,
  #mailformpro .c-form-table__control textarea.mfp_element_textarea {
    min-height: 260px;
  }
}

@media (min-width: 1024px) {
  .p-assessment-page__lead-title,
  .p-assessment-page__form-title {
    line-height: 1.5;
  }

  .p-assessment-page__overview,
  .p-assessment-page__process {
    gap: 60px;
  }

  .p-assessment-page__summary,
  .p-assessment-page__block-text p,
  .p-assessment-page__consent-text,
  .p-assessment-page__consent-check {
    font-size: var(--fs-body);
    line-height: 1.8;
  }

  .p-assessment-page__process-grid {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }

  .p-assessment-page__process-visual {
    min-height: 554px;
  }

  #mailformpro .p-assessment-page__submit .c-button {
    min-height: 64px;
    font-size: var(--fs-body);
  }
}

#mfp_button_send.mfp_element_button,
#mfp_button_cancel.mfp_element_button {
  min-width: 180px;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid var(--color-black);
  border-radius: 8px;
  box-shadow: none;
  font-size: var(--fs-body-sm);
  font-weight: 700;
  line-height: 1.5;
  text-shadow: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

#mfp_button_send.mfp_element_button {
  background: var(--color-black);
  color: var(--color-white);
}

#mfp_button_cancel.mfp_element_button {
  background: var(--color-white);
  color: var(--color-black);
}

.p-company-page__lead {
  text-align: center;
}

.p-company-page__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

.p-company-page__table-wrap {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.p-company-page__value {
  padding: 72px 0 48px;
}

@media (min-width: 1024px) {
  .p-company-page__title {
    line-height: 1.5;
  }
}

/* .p-company-page__fund {
  padding: 0 0 56px;
} */

/* --------------------------------------
   体制ページ system.html
-------------------------------------- */
.p-system-page__lead {
  text-align: center;
}

.p-system-page__lead-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

.p-system-page__profile {
  overflow: hidden;
  display: grid;
  border-radius: 20px;
  background: var(--color-white);
}

.p-system-page__profile-visual {
  min-height: 320px;
}

.p-system-page__profile-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-system-page__profile-body {
  display: grid;
  align-content: center;
  padding: 32px 24px;
}

.p-system-page__profile-heading {
  display: grid;
}

.p-system-page__role,
.p-system-page__name {
  margin: 0;
  font-weight: 700;
}

.p-system-page__role {
  color: var(--color-key);
  font-size: var(--fs-body-lg);
  line-height: 1.8;
}

.p-system-page__name {
  font-size: clamp(2rem, 1.7rem + 1vw, 2.5rem);
  line-height: 1.4;
}

.p-system-page__profile-text,
.p-system-page__card-text,
.p-system-page__sections,
.p-system-page__cards {
  display: grid;
}

.p-system-page__profile-text p,
.p-system-page__card-text p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.8;
}

.p-system-page__member-group {
  display: grid;
}

.p-system-page__member-heading {
  text-align: center;
}

.p-system-page__member-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

.p-system-page__section {
  display: grid;
}

.p-system-page__card {
  padding: 32px 24px;
  display: grid;
}

.p-system-page__card-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

.p-system-page .c-lined-icon-list {
  --lined-icon-list-item-padding-y: 18px;
  --lined-icon-list-padding-left: 36px;
  --lined-icon-list-icon-top: 22px;
  --lined-icon-list-font-weight: 700;
  --lined-icon-list-border-color: rgba(26, 26, 26, 0.18);
}

@media (min-width: 600px) and (max-width: 1023px) {
  .p-system-page__profile {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: stretch;
  }

  .p-system-page__profile-body {
    padding: 32px 28px;
  }
}

@media (min-width: 1024px) {
  .p-system-page__profile-section .p-system-page__profile {
    margin-right: auto;
    margin-left: unset;
  }

  .p-system-page__lead-title {
    line-height: 1.5;
  }

  .p-system-page__profile {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 693px;
  }

  .p-system-page__profile-body {
    padding: 80px;
  }

  .p-system-page__profile-text p,
  .p-system-page__card-text p,
  .p-system-page .c-lined-icon-list li {
    font-size: var(--fs-body);
    line-height: 1.8;
  }

  .p-system-page__card {
    padding: 40px;
  }

  .p-system-page .c-lined-icon-list {
    --lined-icon-list-icon-top: 20px;
  }
}

.p-sitemap-page__lead {
  text-align: center;
}

.p-sitemap-page__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

.p-sitemap-page__sections {
  display: grid;
}

.p-sitemap-page__section {
  display: grid;
}

.p-sitemap-page__card {
  padding: 32px 24px;
}

.p-sitemap-page__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-sitemap-page__list li {
  margin: 0;
}

.p-sitemap-page__list a {
  display: inline-flex;
  align-items: center;
  color: var(--color-black);
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
}

.p-sitemap-page__list a::after {
  content: "";
  width: 8px;
  height: 14px;
  background: url("/assets/images/common/icon-arrow.svg") center / contain
    no-repeat;
}

@media (min-width: 1024px) {
  .p-sitemap-page__title {
    line-height: 1.5;
  }

  .p-sitemap-page__card {
    padding: 40px;
  }

  .p-sitemap-page__list a {
    font-size: var(--fs-body);
    line-height: 1.8;
  }
}

.p-privacy-page__lead {
  text-align: center;
}

.p-privacy-page__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

.p-privacy-page__intro {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.8;
}

.p-privacy-page__sections {
  display: grid;
}

.p-privacy-page__section {
  display: grid;
}

.p-privacy-page__text {
  display: grid;
}

.p-privacy-page__text p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.8;
}

.p-privacy-page__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.p-privacy-page__list li {
  font-size: var(--fs-body);
  line-height: 1.8;
}

.p-privacy-page__action {
  display: grid;
  justify-items: start;
}

@media (min-width: 1024px) {
  .p-privacy-page__intro,
  .p-privacy-page__text p,
  .p-privacy-page__list li {
    font-size: var(--fs-body);
    line-height: 1.8;
  }

  .p-privacy-page__action .c-button {
    padding: var(--space-2) 20px var(--space-2) 24px;
  }
}

.p-service-page__intro {
  display: grid;
  gap: 0;
  justify-items: center;
  text-align: center;
}

.p-service-page__intro-title,
.p-service-page__section-title,
.p-service-statement__title {
  margin: 0;
}

.p-service-page__intro-title {
  font-weight: 700;
  line-height: 1.5;
}

.p-service-page__message {
  display: grid;
  justify-items: center;
  text-align: center;
}

.p-service-page__intro-lead {
  margin: 0;
  font-size: var(--fs-h4);
  font-weight: 700;
  line-height: 1.6;
}

.p-service-page__intro-text {
  display: grid;
  gap: 8px;
}

.p-service-page__intro-text p {
  margin: 0;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.8;
}

.p-service-page__section-heading {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-black);
}

.p-service-page__section-title {
  font-weight: 700;
  line-height: 1.5;
}

.p-service-page__acceptance,
.p-service-page__support {
  display: grid;
}

.p-service-page__services {
  display: grid;
}

.p-service-page__services-grid {
  display: grid;
}

.p-service-offer {
  display: grid;
  gap: var(--page-block-gap);
  border-radius: 20px;
  background: var(--color-white);
  padding: 32px 24px;
}

.p-service-offer__main,
.p-service-offer__detail {
  padding: 0;
  background: transparent;
}

.p-service-offer__main {
  display: grid;
  gap: var(--page-block-gap);
}

.p-service-offer__icon-row {
  display: flex;
  align-items: center;
  gap: var(--page-group-gap);
}

.p-service-offer__icon {
  width: 72px;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.p-service-offer__header {
  display: grid;
  gap: var(--space-half);
}

.p-service-offer__label,
.p-service-offer__title,
.p-service-offer__lead,
.p-service-offer__detail-title {
  margin: 0;
}

.p-service-offer__label {
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  order: 2;
}

.p-service-offer__title {
  font-weight: 700;
  line-height: 1.4;
  order: 1;
}

.p-service-offer__lead {
  margin-bottom: var(--page-group-gap);
  font-size: var(--fs-body-lg);
  font-weight: 700;
  line-height: 1.7;
}

.p-service-offer__text {
  display: grid;
  gap: calc(var(--page-group-gap) / 3);
}

.p-service-offer__text p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.8;
}

.p-service-offer__detail {
  display: grid;
  gap: var(--page-group-gap);
  align-content: start;
  padding: 24px 20px;
  border: 1px solid rgba(128, 128, 128, 0.8);
  border-radius: 8px;
  background: var(--color-white);
  margin-top: var(--space-2);
}

.p-service-offer__detail-title {
  font-weight: 700;
  line-height: 1.5;
}

.p-service-offer__detail-list {
  display: grid;
  gap: calc(var(--page-group-gap) / 3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-service-offer__detail-list li {
  position: relative;
  padding-left: 1em;
  font-size: var(--fs-body);
  line-height: 1.8;
}

.p-service-offer__detail-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

.p-service-page__acceptance-grid,
.p-service-support-grid {
  display: grid;
  gap: var(--page-group-gap);
}

.p-service-accept-card,
.p-service-support-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-white);
}

.p-service-accept-card__image-wrap {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.p-service-accept-card__image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.p-service-accept-card__body,
.p-service-support-card {
  padding: 28px 24px;
}

.p-service-accept-card__eyebrow,
.p-service-support-card__eyebrow {
  margin: 0;
  color: rgba(38, 38, 38, 0.2);
  font-family: var(--font-eng);
  font-size: clamp(1.5rem, 1.32rem + 0.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1;
}

.p-service-accept-card__title,
.p-service-support-card__title {
  margin: 10px 0 0;
  font-weight: 700;
  line-height: 1.6;
}

.p-service-accept-card .c-lined-icon-list,
.p-service-support-card .c-lined-icon-list {
  margin: 24px 0 0;
  --lined-icon-list-item-padding-y: 14px;
  --lined-icon-list-padding-left: 28px;
  --lined-icon-list-icon-top: 19px;
  --lined-icon-list-font-weight: 400;
  --lined-icon-list-border-color: rgba(26, 26, 26, 0.18);
}

.p-service-accept-card .c-lined-icon-list li,
.p-service-support-card .c-lined-icon-list li {
  font-size: var(--fs-body-sm);
  line-height: 1.7;
}

.p-service-page__statement {
  position: relative;
}

.p-service-statement {
  margin-top: 0;
  padding: var(--space-5) 24px;
  background-color: var(--color-key);
  background-image: url(/assets/images/common/bg-logo-mark.png);
  background-repeat: no-repeat;
  background-position: right 14px bottom -30px;
  background-size: 100px auto;
  color: var(--color-white);
  /* text-align: center; */
}

.p-service-statement__copy {
  position: relative;
  z-index: 1;
  display: grid;
}

.p-service-statement__title {
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.5;
}

.p-service-statement__text {
  display: grid;
}

.p-service-statement__text p {
  margin: 0;
  color: var(--color-white);
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.8;
}

.p-service-page__reason {
  padding-bottom: var(--space-2);
}

@media (min-width: 600px) {
  .p-service-statement {
    background-position: right 20px bottom -36px;
    background-size: 180px auto;
  }

  .p-service-statement__text {
    gap: calc(var(--page-group-gap) * 0.5);
  }

  .p-service-page__acceptance-grid,
  .p-service-support-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .p-service-accept-card__image {
    height: 230px;
  }

  .p-service-accept-card__body,
  .p-service-support-card {
    padding: 36px 32px;
  }

  .p-service-statement {
    padding: 72px 40px;
  }
}

@media (min-width: 1024px) {
  .p-service-page__intro {
    gap: var(--page-block-gap);
  }

  .p-service-page__intro-title {
    line-height: 1.5;
  }

  .p-service-page__intro-lead {
    font-size: var(--fs-xl);
  }

  .p-service-page__intro-text p {
    font-size: var(--fs-h6);
    line-height: 1.8;
  }

  .p-service-page__section-heading {
    padding-bottom: 15px;
  }

  .p-service-offer {
    gap: var(--page-block-gap);
    padding: 80px;
  }

  .p-service-offer__main {
    gap: var(--page-block-gap);
  }

  .p-service-offer__icon-row {
    gap: var(--page-group-gap);
  }

  .p-service-offer__icon {
    width: 98px;
  }

  .p-service-offer__header {
    gap: var(--space-half);
  }

  .p-service-offer__title {
    font-size: var(--fs-display-sm);
    line-height: 1.1;
  }

  .p-service-offer__label {
    font-size: var(--fs-body);
    line-height: 1.8;
  }

  .p-service-offer__content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--page-block-gap);
  }

  .p-service-offer__copy {
    width: 830px;
  }

  .p-service-offer__lead {
    font-size: var(--fs-h6);
    line-height: 1.5;
  }

  .p-service-offer__text {
    gap: calc(var(--page-group-gap) / 3);
  }

  .p-service-offer__detail {
    gap: var(--page-group-gap);
    flex: 1 1 0;
    min-width: 0;
    padding: 40px 40px 30px;
    margin-top: var(--space-0);
  }

  .p-service-offer__detail-list {
    gap: calc(var(--page-group-gap) / 3 * 0.8);
  }

  .p-service-offer__detail-list li {
    font-size: var(--fs-body);
    line-height: 1.8;
  }

  .p-service-accept-card__image {
    height: 250px;
  }

  .p-service-accept-card__body,
  .p-service-support-card {
    padding: 50px;
  }

  .p-service-accept-card__eyebrow,
  .p-service-support-card__eyebrow {
    font-size: var(--fs-xl);
  }

  .p-service-accept-card__title,
  .p-service-support-card__title {
    margin-top: 20px;
    line-height: 1.8;
  }

  .p-service-accept-card .c-lined-icon-list,
  .p-service-support-card .c-lined-icon-list {
    margin-top: 30px;
    --lined-icon-list-item-padding-y: 18px;
    --lined-icon-list-padding-left: 32px;
    --lined-icon-list-icon-top: 21px;
  }

  .p-service-statement {
    padding: 70px 40px;
  }

  .p-service-statement__copy {
    width: min(859px, 100%);
    margin: 0 auto;
    text-align: center;;
  }

  .p-service-statement__text p {
    font-size: var(--fs-body-lg);
    line-height: 1.8;
  }
}

/* --------------------------------------

　　HSE METHOD 
　　なぜ SILVAは成果が出るのか
-------------------------------------- */
.p-method-page__intro,
.p-method-page__issue,
.p-method-page__flow,
.p-method-page__dont,
.p-method-page__usecase {
  display: grid;
}

.p-method-page__intro-title,
.p-method-page__section-title,
.p-method-overview__title {
  margin: 0;
}

.p-method-page__intro-title {
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
}

.p-method-overview {
  display: grid;
  gap: var(--page-block-gap);
  padding: 32px 24px;
  border-radius: 20px;
  background: var(--color-white);
}

.p-method-overview__logo {
  display: flex;
  justify-content: center;
}

.p-method-overview__logo img {
  width: min(100%, 220px);
  height: auto;
}

.p-method-overview__body {
  display: grid;
}

.p-method-overview__title {
  font-weight: 700;
  line-height: 1.5;
}

.p-method-overview__text {
  display: grid;
}

.p-method-overview__text p,
.p-method-page__lead,
.p-method-issue__lead,
.p-method-issue__conclusion {
  margin: 0;
}

.p-method-overview__text p,
.p-method-page__lead,
.p-method-issue__lead {
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.8;
}

.p-method-page__section-heading {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-black);
}

.p-method-page__section-title {
  font-weight: 700;
  line-height: 1.5;
}

.p-method-issue {
  display: grid;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-white);
}

.p-method-issue__visual {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.p-method-issue__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-method-issue__body {
  display: grid;
  padding: 32px 24px;
}

.p-method-issue .c-lined-icon-list,
.p-method-usecase .c-lined-icon-list {
  --lined-icon-list-item-padding-y: 12px;
  --lined-icon-list-padding-left: 28px;
  --lined-icon-list-icon-top: 16px;
  --lined-icon-list-font-weight: 700;
  --lined-icon-list-border-color: rgba(26, 26, 26, 0.18);
}

.p-method-dont-card p {
  position: relative;
  padding-left: 28px;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.8;
}

.p-method-dont-card p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.p-method-issue__conclusion {
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.8;
}

.p-method-flow {
  display: grid;
}

.p-method-flow__item {
  padding: 24px 20px;
  border-radius: 20px;
  background: var(--color-white);
}

.p-method-flow__step,
.p-method-flow__label {
  margin: 0;
}

.p-method-flow__step {
  font-family: var(--font-eng);
  font-size: var(--fs-xs);
  font-weight: 600;
  line-height: 1.4;
}

.p-method-flow__label {
  margin-top: 10px;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.6;
}

.p-method-flow__arrow {
  display: none;
}

.p-method-dont-grid {
  display: grid;
}

.p-method-dont-card {
  padding: 24px 20px;
  border-radius: 20px;
  background: var(--color-white);
}

.p-method-dont-card p {
  margin: 0;
}

.p-method-dont-card p::before {
  background-image: url("/assets/images/common/icon-batsu.svg");
}

.p-method-usecase__title {
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
}

/* .p-method-usecase__visual::before {
  background: rgba(0, 0, 0, 0.42);
} */

@media (min-width: 600px) {
  .p-method-overview {
    padding: 40px 32px;
  }

  .p-method-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .p-method-page__intro-title {
    line-height: 1.5;
  }

  .p-method-overview {
    grid-template-columns: 282px minmax(0, 590px);
    align-items: center;
    justify-content: center;
    gap: var(--page-block-gap);
    min-height: 342px;
    padding: 48px 80px;
  }

  .p-method-overview__logo img {
    width: 282px;
  }

  .p-method-overview__text p,
  .p-method-page__lead,
  .p-method-issue__lead {
    font-size: var(--fs-body);
    line-height: 1.8;
  }

  .p-method-page__section-heading {
    padding-bottom: 15px;
  }

  .p-method-issue {
    grid-template-columns: 1fr 1fr;
    border-radius: 0;
  }

  .p-method-issue__visual {
    min-height: 336px;
  }

  .p-method-issue__body {
    align-content: center;
    padding: 60px;
  }

  .p-method-issue__lead {
    width: 601px;
  }

  .p-method-issue .c-lined-icon-list li,
  .p-method-usecase .c-lined-icon-list li,
  .p-method-dont-card p {
    font-size: var(--fs-body-lg);
    line-height: 1.8;
  }

  .p-method-issue__conclusion {
    font-size: var(--fs-body-lg);
    line-height: 1.8;
  }

  .p-method-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr) 24px) minmax(0, 1fr);
    align-items: center;
    column-gap: 8px;
    row-gap: 0;
  }

  .p-method-flow__item {
    min-height: 124px;
    padding: 40px 26px;
  }

  .p-method-flow__step {
    font-size: var(--fs-body-sm);
  }

  .p-method-flow__label {
    margin-top: 20px;
    font-size: var(--fs-body-lg);
    line-height: 1.8;
  }

  .p-method-flow__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p-method-flow__arrow img {
    width: 8px;
    height: 15px;
  }

  .p-method-dont-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .p-method-dont-card {
    min-height: 100px;
    padding: 34px 32px;
  }

  .p-method-usecase__visual-copy {
    justify-content: center;
    padding: 60px;
  }

  .p-method-usecase__title {
    text-align: center;
    line-height: 1.5;
  }

  .p-method-usecase__body .c-button {
    min-width: 286px;
  }
}
