html {
  font-size: 62.5%;
  @media screen and (max-width: 1200px) {
    font-size: 58%;
  }
  @media screen and (max-width: 920px) {
    font-size: 46%;
  }
  @media screen and (max-width: 767px) {
    font-size: 62.5%;
  }
  figure {
    margin: 0;
  }
}

a[href=''] {
  pointer-events: none;
}
.pm-lp {
  font-family: 'Noto Sans JP', sans-serif;
  color: #161616;
  line-height: 1.45;
  margin-top: 75px;
  overflow-x: clip;
}
.js-pm-cases-slider {
  visibility: hidden;
}

.js-pm-cases-slider.is-ready {
  visibility: visible;
}

.pm-wrap {
  width: min(116rem, calc(100% - 4rem));
  margin: 0 auto;
}

.pm-btn {
  --btn-bg: linear-gradient(103deg, #f76c37 25.5%, #fc8332 83.2%);
  --btn-color: #fff;
  --btn-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.08);
  --btn-border-color: 0;
  --btn-icon: none;
  --btn-icon-sizeW: 0rem;
  --btn-icon-sizeH: 0rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 1.4rem;
  border-radius: 50rem;
  text-decoration: none;
  min-width: 29.4rem;
  height: 7.5rem;
  padding: 0 2rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--btn-color);
  border: var(--btn-border);
  box-shadow: var(--btn-shadow);
  z-index: 2;
  transition: 0.3s ease-out;

  &.white {
    --btn-bg: #fff;
    --btn-color: #f97316;
    --btn-shadow: none;
    --btn-icon-size: 0rem;
    &::after {
      display: none;
    }
    img {
      filter: #fc8b3f;
    }
  }

  &:hover {
    transform: translateY(4px);
    &::after {
      transform: translateY(-4px);
    }
  }
}
.pm-trial {
  .pm-btn {
    &:hover {
      opacity: 0.8;
      transform: translateY(0);
      &::after {
        transform: translateY(0);
      }
    }
  }
}

.pm-btn img {
  flex: 0 0 var(--btn-icon-sizeW);
  width: var(--btn-icon-sizeW);
  height: var(--btn-icon-sizeH);
}
.pm-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50rem;
  background: var(--btn-bg);
  z-index: -1;
}

.pm-btn::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50rem;
  background: var(--btn-border-color);
  z-index: -2;
  transition: 0.3s ease-out;
}

.btn-download {
  --btn-bg: linear-gradient(103deg, #f76c37 25.5%, #fc8332 83.2%);
  --btn-icon-sizeW: 2.6rem;
  --btn-icon-sizeH: 2.6rem;
  --btn-border-color: #f2632d;
}

.btn-mail {
  --btn-bg: linear-gradient(103deg, #ffb222 25.5%, #ffbe4d 83.2%);
  --btn-icon-sizeW: 3.4rem;
  --btn-icon-sizeH: 2.4rem;
  --btn-border-color: #ffae0d;
}

.pm-hero-grid {
  position: relative;
  max-width: 1520px;
  width: 90%;
  margin: 0 auto;
  padding: 5% 30% 8% 2rem;
  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    background: url(../img/lp-production-management/fv_back.webp) no-repeat top center/cover;
    z-index: -1;
  }
}
.pm-hero-copy h1 {
  font-size: clamp(3rem, 3.75vw, 6rem);
  line-height: 1.25;
  font-weight: 900;
}

.pm-hero-copy h1 span {
  color: #fc8332;
}

.pm-hero-lead {
  margin-top: 3rem;
  font-size: clamp(1.4rem, 1.5vw, 2.4rem);
  line-height: 1.3;
  font-weight: 700;
}

.pm-hero-btns {
  margin-top: 3.4rem;
  display: flex;
  gap: 1.4rem;
}

.pm-hero-visual {
  position: absolute;
  top: 4rem;
  right: -5.5rem;
  width: 52%;
}

.pm-awards {
  position: relative;
  width: 100%;
  margin-top: -6rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0.3rem 0.3rem 0.4rem rgba(0, 0, 0, 0.25);
  padding: 3rem 3rem;
  display: flex;
  gap: 1.2rem;
  z-index: 1;
}
.pm-awards img {
  display: block;
  height: 100%;
  width: auto;
}

.pm-logos {
  padding: 3rem 0 3.6rem;
}

.pm-logos-bg {
  overflow: hidden;
}

.pm-logos-row {
  display: flex;
  width: max-content;
  animation: pm-logos-ltr 60s linear infinite;
  will-change: transform;
}

.pm-logos-row + .pm-logos-row {
  margin-top: 1rem;
}

.pm-logos-row img {
  flex: 0 0 100vw;
  width: 100vw;
  max-width: none;
  display: block;
}

.js-pm-slider-rtl {
  animation-name: pm-logos-rtl;
}

.js-pm-slider-ltr {
  animation-name: pm-logos-ltr;
}

@keyframes pm-logos-ltr {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pm-logos-rtl {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.pm-note {
  margin-top: 0.2rem;
  font-size: 1rem;
  text-align: center;
}

.pm-section-title {
  text-align: center;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.25;
  font-feature-settings: 'palt';

  &.white {
    color: #fff;
  }
}

.pm-section-title span {
  color: #fc8332;
}

.pm-reason {
  background: #faf4ea url(../img/lp-production-management/reason_back.webp) no-repeat top center/contain;
  padding: 9.1rem 0 10rem;
}

.pm-section-lead {
  margin-top: 2rem;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-feature-settings: 'palt';
}

.pm-reason-list {
  margin-top: 8rem;
}

.pm-reason-card {
  display: flex;
  gap: 4.8rem;
  &:not(:first-child) {
    margin-top: 4rem;
  }
  &:nth-child(odd) {
    flex-direction: row-reverse;
  }
}

.pm-reason-read {
  flex: 1;
  margin-top: 0.8em;
}

.pm-reason-no {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  position: relative;
  color: #fc8332;
  font-family: 'Geist', sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  &::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #c8c8c8;
  }
}

.pm-reason-sub {
  margin-top: 3rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.003em;
}

.pm-reason-card h3 {
  font-size: 4rem;
  font-weight: 700;
}

.pm-reason-card ul {
  margin: 3.4rem 0 0;
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
}

.pm-reason-card li {
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  padding-left: 2rem;
}

.pm-reason-card li + li {
  margin-top: 0.8rem;
}

.pm-reason-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 1.7rem;
  aspect-ratio: 1/1;
  background: url('../img/lp-production-management/icon_check.svg') center/contain no-repeat;
}

.pm-reason-card figure {
  width: 50%;
  margin: 0;
}

.pm-reason-btns {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 8rem;
}

.pm-problem {
  padding: 10.4rem 0 11.4rem;
}

.pm-problem-list {
  margin-top: 9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6.2rem;
}

.pm-cloud {
  padding-top: 30%;
  aspect-ratio: 349/334;
  text-align: center;
  &:nth-child(1) {
    background: url(../img/lp-production-management/problem_back01.webp) no-repeat top center/contain;
  }
  &:nth-child(2) {
    background: url(../img/lp-production-management/problem_back02.webp) no-repeat top center/contain;
  }
  &:nth-child(3) {
    background: url(../img/lp-production-management/problem_back03.webp) no-repeat top center/contain;
  }
}

.pm-cloud p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
}

.pm-cloud span {
  color: #3048ea;
}

.pm-solution {
  margin-top: 4.6rem;
  h3 {
    width: max-content;
    position: relative;
    margin-inline: auto;
    padding-bottom: 3.3rem;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.32;
    text-align: center;
    font-feature-settings: 'palt';
    &::before {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 100%;
      aspect-ratio: 122/4;
      background: url(../img/lp-production-management/problem_title_line.svg) no-repeat center/contain;
    }
    span {
      color: #fc8332;
    }
  }
}

.pm-solution-list {
  margin-top: 4.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5.5rem;
  padding: 0 3rem;
}

.pm-solution-illust {
  width: 70%;
  aspect-ratio: 347/390;
  margin: 0 auto;
  border-radius: 1.2rem;
}

.pm-solution-list h4 {
  margin-top: 2.2rem;
  color: #fc8332;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.33;
  text-align: center;
  white-space: nowrap;
}

.pm-solution-pills {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 9.6rem;
  margin-top: 2.2rem;
  background: #fbf4e9;
  padding: 1.1rem;
  border-radius: 1rem;

  &.no-list {
    align-items: center;
    p {
      width: max-content;
      padding: 0;
      &::after {
        display: none;
      }
      &::before {
        content: '※';
        position: absolute;
        top: -1rem;
        right: 0;
        font-size: 1.2rem;
      }
    }
  }
}

.pm-solution-pills p {
  position: relative;
  padding-left: 2rem;
  font-size: 2rem;
  font-weight: 700;

  &::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6rem;
    aspect-ratio: 1/1;
    background: url(../img/lp-production-management/icon_check.svg) no-repeat center/contain;
  }

  span {
    color: #fc8332;
  }
}

.pm-solution-pills p + p {
  margin-top: 0.8rem;
}

.pm-solution-note {
  margin-top: 3rem;
  font-size: 14px;
  text-align: right;
}

.pm-trial {
  padding: 8.4rem 0 8rem;
  background: url(../img/lp-production-management/cta_back.webp) no-repeat top center/cover;
}

.pm-trial-btns {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 4.8rem;
}

.pm-trial-btn-unit p {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.pm-feature {
  padding: 10.2rem 0 10.2rem;
}

.pm-feature-grid {
  margin-top: 8.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.pm-feature-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 0.2rem dashed #fc8332;
  border-radius: 1.8rem;
  padding: 2rem 3rem 3rem;
  transition: 0.3s ease-out;
  &.coming-soon {
    pointer-events: none;

    .pm-feature-btn {
      background: #867d77;
      &::before,
      &::after {
        display: none;
      }
    }
  }
  &:hover {
    transform: scale(1.03);
    .pm-feature-btn {
      background-color: #fd5211;
      &::after {
        background-color: #fd5211;
      }
    }
  }
}

.pm-feature-icon {
  width: 12.7rem;
  margin: 0 auto;
}

.pm-feature-icon img {
  width: 100%;
  height: auto;
}

.pm-feature-card h3 {
  margin-top: 1.4rem;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}

.pm-feature-card p {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.pm-feature-list {
  position: relative;
  margin-top: 2.6rem;
  margin-bottom: auto;
  display: flex;
  justify-content: center;
  &::after {
    content: 'etc...';
    position: absolute;
    bottom: -0.6em;
    right: 0;
    text-align: right;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  &.col {
    justify-content: flex-start;
    ul {
      column-count: 1;
    }
  }
}

.pm-feature-list ul {
  column-count: 2;
  gap: 3.8rem;
}

.pm-feature-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pm-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 1rem;
  aspect-ratio: 1/1;
  background-color: #fc8332;
}

.pm-feature-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 90%;
  height: 4.8rem;
  margin: 4.9rem auto 0;
  background: #fc8332;
  border-radius: 50rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: 0.3s ease-out;

  &::before {
    content: '';
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translate(50%, -50%);
    width: 2.5rem;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 50rem;
  }

  &::after {
    content: '';
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translate(50%, -50%);
    width: 1.1rem;
    aspect-ratio: 1.1/0.9;
    mask: url(../img/lp-production-management/icon_arrow.svg) no-repeat top center/contain;
    background-color: #fc8332;
  }
}

.pm-linkage-card {
  position: relative;
  margin: 10rem auto 0;
  width: 100%;
  max-width: 78rem;
  padding: 4.2rem 8.6rem 2.8rem;
  border: 0.2rem dashed #fc8332;
  border-radius: 1rem;
  &::before {
    content: '';
    position: absolute;
    top: -6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4.5rem;
    aspect-ratio: 45/92;
    background: url(../img/lp-production-management/icon_union.svg) no-repeat top center/cover;
  }
  h3 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    span {
      color: #fc8332;
    }
  }
}

.pm-linkage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.8rem;
  margin-top: 3rem;
}

.pm-linkage-col h4 {
  display: inline-block;
  margin-left: 3.5rem;
  position: relative;
  a {
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 1px solid #000;
  }
}

.pm-linkage-col h4 img {
  position: absolute;
  top: 50%;
  left: -3.6rem;
  transform: translateY(-50%);
  width: 3rem;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.pm-linkage-col ul {
  margin-top: 1.4rem;
}

.pm-linkage-list-sales li {
  position: relative;
  margin-left: 3.4rem;
  padding-left: 1.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  + li {
    margin-top: 1.6rem;
  }
}

.pm-linkage-list-sales li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 1rem;
  aspect-ratio: 1/1;
  background-color: #fc8332;
}

.pm-linkage-list-sfa li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  + li {
    margin-top: 1.6rem;
  }
  img {
    width: 3rem;
  }
}
.pm-function-btn {
  margin-top: 7.6rem;
  text-align: center;
}

.pm-cases {
  position: relative;
  background: #faf4ea;
  padding: 10.6rem 0 10rem;
  z-index: 1;
  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/lp-production-management/case_back.webp) no-repeat top center/contain;
    z-index: -1;
  }
}

.pm-cases-slider {
  margin: 8.5rem calc(50% - 50vw) 0;
}

.pm-cases-slider .slick-dots {
  position: static;
  margin-top: 4.8rem;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.pm-cases-slider .slick-dots li {
  width: 0.7rem;
  height: 0.7rem;
}

.pm-cases-slider .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}

.pm-cases-slider .slick-dots li button::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f6be9f;
  opacity: 1;
}

.pm-cases-slider .slick-dots li.slick-active button::before {
  background: #fc8332;
}

.pm-case-slide {
  padding: 0 0.8rem;
}

.pm-case-slide a {
  display: block;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  &:hover {
    img {
      transform: scale(1.05);
    }
  }
}

.pm-case-slide-img {
  aspect-ratio: 368/240;
  background: #f0f0f0;
  overflow: hidden;
}

.pm-case-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s ease-out;
}

.pm-case-slide-body {
  padding: 1.2rem 1.4rem 3rem;
}

.pm-case-slide-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.3rem 1rem;
  border-radius: 0.5rem;
  border: 0.1rem solid #fc8332;
  color: #fc8332;
  font-size: 1.2rem;
  font-weight: 700;
}

.pm-case-slide-body h3 {
  margin-top: 0.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pm-case-slide-meta {
  margin-top: 1.2rem;
}

.pm-case-slide-company {
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #919191;
  font-size: 1.2rem;
  font-weight: 700;
  color: #919191;
}

.pm-case-slide-info {
  margin: 1rem 0 0;
  display: grid;
}

.pm-case-slide-info li {
  font-size: 1.2rem;
  color: #919191;
}

.pm-cases-guide {
  margin-top: 6.7rem;
}

.pm-cases-guide-grid {
  display: grid;
  grid-template-columns: 1fr 34rem;
  gap: 1.2rem;
}

.pm-cases-guide-box {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}

.pm-cases-guide-head {
  padding: 1.3rem 1.9rem;
  background: linear-gradient(103deg, #f76c37 25.5%, #fc8332 83.2%);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.pm-cases-guide-tags {
  padding: 2rem 2rem;
  gap: 1.5rem 1.2rem;

  &.industry {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  &.production {
    display: flex;
    flex-wrap: wrap;
  }
}

.pm-cases-guide-tags {
  li a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0.4rem 1.5rem 0.4rem 1.5rem;
    border-radius: 99.9rem;
    border: 0.1rem solid #8d7979;
    font-size: 1.3rem;
    color: #8d7979;
    transition: 0.3s ease-out;
    &:hover {
      opacity: 0.8;
    }
  }
  &.industry {
    li a {
      padding: 0.4rem 2.2rem 0.4rem 1rem;
      &::after {
        content: '>';
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        color: #fc8332;
        font-weight: 700;
        margin-left: 0.5rem;
      }
    }
  }
}

.pm-cases-guide-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.8rem;
  margin-top: 3.5rem;
  dt {
    position: relative;
    color: #fc8332;
    padding-left: 2.4rem;
    font-size: 2rem;
    font-weight: 700;
    &::before {
      content: '';
      position: absolute;
      top: 55%;
      transform: translateY(-50%);
      left: 0;
      width: 2rem;
      aspect-ratio: 1/1;
      background-color: #fc8332;
      border-radius: 2px;
    }
  }
  dd {
    font-size: 1.6rem;
    font-weight: 500;
  }
}

.pm-cases-guide-note span {
  color: #fc8332;
  margin-right: 1.2rem;
}

.pm-cases-guide-cta {
  margin-top: 8.5rem;
  text-align: center;
}

.fixedcontainer {
  width: 100% !important;
  max-width: 124rem;
  padding: 10rem 0 10rem !important;
}
.fixedcontainer .title {
  font-size: 5rem;
  font-weight: 700;
  &::after {
    display: none;
  }
  span {
    color: #fc8332;
  }
}
.fixedcontainer-btn {
  margin-top: 4rem;
  text-align: center;
  a {
    width: 35rem;
  }
}

.pm-flow {
  background: #faf4ea;
  padding: 10rem 0;
}

.pm-flow-list {
  margin-top: 11rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11rem;
}

.pm-flow-list article {
  position: relative;
  &:not(:last-child) {
    &::before {
      content: '';
      position: absolute;
      top: 47%;
      right: -7rem;
      transform: translateY(-50%);
      width: 2.2rem;
      aspect-ratio: 22/32;
      background: url(../img/lp-production-management/flow_arrow.svg) no-repeat top center/contain;
    }
  }
}

.pm-flow-head {
  display: flex;
  flex-direction: column;
  width: max-content;
  margin: 0 auto;
  position: relative;
  color: #fc8332;
}

.pm-flow-head span {
  display: block;
  position: absolute;
  top: -1.5em;
  left: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.pm-flow-head b {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.pm-flow-head img {
  width: 9.4rem;
}

.pm-flow-list h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(1.8rem * 1.55 * 2);
  margin-top: 1.8rem;
  color: #fc8332;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.pm-flow-list p {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.pm-faq {
  padding: 10.6rem 0 9.6rem;
}

.pm-faq-list {
  width: 100%;
  max-width: 102rem;
  margin: 8rem auto 0;
}

.pm-faq-item {
  border-radius: 10px;
  border: 6px solid rgba(252, 131, 50, 0.1);
}

.pm-faq-item + .pm-faq-item {
  margin-top: 2rem;
}

.pm-faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 3rem 8rem 3rem 6.6rem;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}

.pm-faq-q::before {
  content: 'Q';
  position: absolute;
  left: 2rem;
  top: 0.7em;
  color: #fc8332;
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-faq-q::after {
  content: '';
  position: absolute;
  right: 3.6rem;
  top: 40%;
  width: 3.5rem;
  aspect-ratio: 35/20;
  background: url(../img/lp-production-management/toogle_arrow.svg) no-repeat top center/contain;
}

.pm-faq-item.is-open .pm-faq-q::after {
  transform: translateY(-35%) rotate(-180deg);
}

.pm-faq-a {
  display: none;
  padding: 1rem 2.2rem 2rem 6.6rem;
  position: relative;
}

.pm-faq-a::before {
  content: 'A';
  position: absolute;
  left: 2rem;
  top: 0.1em;
  color: #000;
  font-size: 3rem;
  font-weight: 700;
}

.pm-faq-a p {
  font-size: 1.6rem;
  line-height: 1.9;
}

.pm-faq-a p a {
  font-weight: 700;
  text-decoration: underline;
  color: #fc8332;
}

.pm-faq-a-list {
  margin: 0.8rem 0 0;
}

.pm-faq-a-list li {
  position: relative;
  padding-left: 1.5em;
  &::before {
    content: '・';
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
  }
}

.pm-faq-a-list li + li {
  margin-top: 0.4rem;
}

.pm-bottom {
  padding: 9.8rem 0;
  background: #faf4ea url(../img/lp-production-management/bottom_back.webp) no-repeat top center/contain;
}

.pm-bottom-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.1rem;
}

.pm-bottom-card {
  position: relative;
  border-radius: 1.8rem;
  padding: 3.6rem 2.4rem 3rem 20rem;
  background: linear-gradient(61deg, #fc8332 10.56%, #f97835 41.546%, #fd5211 89.174%);
  color: #fff;
  transition: 0.3s ease-out;
  &:hover {
    opacity: 0.8;
  }
}

.pm-bottom-card h3 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.pm-bottom-card p {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}
.pm-bottom-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 82%;
  height: 4.8rem;
  margin-top: 1.8rem;
  background: #fff;
  border-radius: 50rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #fc8332;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  &::before {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    aspect-ratio: 1 / 1;
    background: #fc8332 url(../img/lp-production-management/icon_arrow-white.svg) no-repeat center / 1.1rem 0.9rem;
    border-radius: 50rem;
  }
}

.pm-bottom-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
}
@media screen and (max-width: 1600px) {
  .pm-hero-copy {
    padding-left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .pm-hero-grid {
    width: 100%;
    padding-right: 50%;
  }
  .pm-hero-copy h1 {
    white-space: normal;
  }
  .pm-hero-visual {
    right: 1rem;
  }
  .pm-cases-guide-tags {
    &.industry {
      grid-template-columns: repeat(4, 1fr);
    }
  }
}
@media screen and (max-width: 920px) {
  .pm-hero-copy h1 {
    font-size: 5.6rem;
  }
  .pm-cases-guide-tags {
    &.industry {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}
@media screen and (max-width: 767px) {
  .pm-btn {
    gap: 1rem;
    min-width: 28.7rem;
    height: 6.8rem;
    padding: 0 2rem;
  }
  .btn-download {
    --btn-icon-sizeW: 1.9rem;
    --btn-icon-sizeH: 2rem;
  }

  .btn-mail {
    --btn-icon-sizeW: 2.6rem;
    --btn-icon-sizeH: 1.9rem;
  }

  .pm-lp {
    margin-top: 48px;
  }

  .pm-hero-grid {
    position: relative;
    background: url(../img/lp-production-management/fv_back-sp.webp) no-repeat top center/cover;
    padding: 3.6rem 0 8rem;
  }

  .pm-hero-copy h1 {
    font-size: 3.1rem;
    line-height: 1.3;
    letter-spacing: -0.05em;
    text-align: center;
  }

  .pm-hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 0.8rem;
  }

  .pm-hero-lead {
    margin-top: 0.4rem;
    font-size: 1.3rem;
    text-align: center;
  }

  .pm-hero-btns {
    margin-top: 2.3rem;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }

  .pm-awards {
    margin-top: -6rem;
    border-radius: 1rem;
    padding: 0.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 1.4rem 0.2rem;
  }

  .pm-logos {
    padding: 0.8rem 0 5rem;
  }
  .pm-logos-row {
    height: 5rem;
    animation-duration: 50s;
  }

  .pm-logos-row + .pm-logos-row {
    margin-top: 0.5rem;
  }

  .pm-logos-row img {
    height: 100%;
    width: auto;
  }
  .pm-note {
    padding: 0 2rem;
    font-size: 1rem;
    text-align: left;
  }

  .pm-section-title {
    font-size: 3.4rem;
  }
  .pm-reason {
    background: #faf4ea url(../img/lp-production-management/reason_back-sp.webp) no-repeat top center/contain;
    padding: 5rem 0 5.6rem;
  }

  .pm-section-lead {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    font-feature-settings: 'palt';
  }

  .pm-reason-list {
    margin-top: 0.2rem;
  }

  .pm-reason-card {
    flex-direction: column;
    gap: 1rem;
    &:not(:first-child) {
      margin-top: 1.5rem;
    }
    &:nth-child(odd) {
      flex-direction: column;
    }
  }

  .pm-reason-no {
    gap: 1rem;
    font-size: 4rem;
  }

  .pm-reason-sub {
    margin-top: 1.6rem;
    font-size: 1.4rem;
  }

  .pm-reason-card h3 {
    font-size: 2.5rem;
    margin-top: 0.2rem;
  }

  .pm-reason-card ul {
    margin: 1.2rem 0 0;
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.3rem 0.9rem;
  }

  .pm-reason-card li {
    font-size: 1.3rem;
    padding-left: 1.8rem;
  }

  .pm-reason-card li + li {
    margin-top: 0.8rem;
  }

  .pm-reason-card li::before {
    top: 0.32em;
    width: 1.3rem;
  }

  .pm-reason-card figure {
    width: 100%;
  }

  .pm-reason-btns {
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    margin-top: 3.6rem;
  }

  .pm-problem {
    padding: 5rem 0 5rem;
  }

  .pm-problem-list {
    margin-top: 3rem;
    display: block;
  }

  .pm-cloud {
    padding-top: 7rem;
    width: 26rem;
    margin-inline: auto;
    &:not(:first-child) {
      margin-top: 1rem;
    }
    &:nth-child(3) {
      margin-top: -1.3rem;
      padding-top: 7.5rem;
    }
  }

  .pm-cloud p {
    font-size: 1.6rem;
  }

  .pm-solution {
    margin-top: 3.2rem;
    h3 {
      width: 100%;
      padding-bottom: 2.5rem;
      font-size: 3.4rem;
      font-feature-settings: 'palt';
      &::before {
        aspect-ratio: 338/16;
        background: url(../img/lp-production-management/problem_title_line-sp.svg) no-repeat center/contain;
      }
    }
  }

  .pm-solution-list {
    margin-top: 3rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2.1rem;
    padding: 0 1.5rem;
  }

  .pm-solution-illust {
    width: 21rem;
    margin-inline: auto;
  }

  .pm-solution-list h4 {
    margin-top: 1.2rem;
    font-size: 2.5rem;
    line-height: 1.4;
  }

  .pm-solution-pills {
    height: inherit;
    margin-top: 1.6rem;
    padding: 1.2rem 5rem;

    &.no-list {
      p {
        &::before {
          position: relative;
          display: block;
          top: 0;
          text-align: right;
          font-size: 0.8rem;
        }
      }
    }
  }

  .pm-solution-pills p {
    padding-left: 2.2rem;
    font-size: 1.6rem;

    &::after {
      width: 1.6rem;
    }
  }

  .pm-solution-pills p + p {
    margin-top: 0.4rem;
  }

  .pm-solution-note {
    margin-top: 1rem;
    font-size: 10px;
    text-align: center;
  }

  .pm-trial {
    padding: 6.6rem 0 6.7rem;
    background: url(../img/lp-production-management/cta_back-sp.webp) no-repeat top center/cover;
  }

  .pm-trial-btns {
    margin-top: 2rem;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    .pm-btn {
      width: 100%;
      height: 7.5rem;
    }
  }

  .pm-trial-btn-unit {
    width: 100%;
  }

  .pm-trial-btn-unit p {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
  }

  .pm-feature {
    padding: 5.2rem 0 5.4rem;
  }

  .pm-feature-grid {
    margin-top: 1.6rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.6rem;
  }

  .pm-feature-card {
    border-radius: 1rem;
    padding: 1.6rem 1.6rem 1.6rem;
  }

  .pm-feature-icon {
    width: 10rem;
  }

  .pm-feature-card h3 {
    margin-top: 1rem;
    font-size: 2.5rem;
  }

  .pm-feature-card p {
    margin-top: 0.3rem;
    font-size: 1.6rem;
  }

  .pm-feature-list {
    margin-top: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1rem;
    padding: 0 3rem;
    &::after {
      right: 2rem;
      bottom: -0.65em;
      font-size: 1.4rem;
    }
    &.col {
      grid-template-columns: repeat(1, minmax(0, 1fr));
      padding-left: 20%;
    }
  }

  .pm-feature-list li {
    margin-bottom: 1.2rem;
    padding-left: 1.4rem;
    font-size: 1.4rem;
    white-space: nowrap;
  }

  .pm-feature-list li::before {
    top: 0.35em;
    width: 1rem;
  }

  .pm-feature-btn {
    width: 82%;
    margin-top: 2.1rem;
    height: 4.4rem;
    font-size: 1.6rem;

    &::before {
      width: 2.1rem;
      background: #fff url(../img/lp-production-management/icon_arrow.svg) no-repeat center/1rem 0.8rem;
    }
  }

  .pm-linkage-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 9.6rem;
    padding: 2.6rem 0 1.5rem;
    border: 0.2rem dashed #fc8332;
    border-radius: 1rem;
    &::before {
      top: -7rem;
      width: 4.5rem;
    }
    h3 {
      font-size: 2.5rem;
    }
  }

  .pm-linkage-grid {
    display: block;
    margin-top: 2.5rem;
  }
  .pm-linkage-col {
    &:not(:first-child) {
      margin-top: 2rem;
    }
  }

  .pm-linkage-col h4 {
    margin-left: 1.2rem;
    a {
      font-size: 1.6rem;
    }
  }

  .pm-linkage-col h4 img {
    left: -3.1rem;
    width: 2.3rem;
  }

  .pm-linkage-col ul {
    margin-top: 0.7rem;
  }

  .pm-linkage-list-sales li {
    margin-left: 1.2rem;
    padding-left: 1.4rem;
    font-size: 1.6rem;
    + li {
      margin-top: 1.4rem;
    }
  }

  .pm-linkage-list-sales li::before {
    top: 0.5em;
  }

  .pm-linkage-list-sfa ul {
    margin-top: 2.3rem;
  }

  .pm-linkage-list-sfa li {
    gap: 0.6rem;
    padding-left: 0.6rem;
    font-size: 1.6rem;
    + li {
      margin-top: 1.6rem;
    }
    img {
      width: 2.8rem;
    }
  }
  .pm-function-btn {
    margin-top: 4.8rem;
    text-align: center;
  }

  .pm-cases {
    padding: 5rem 0 5.4rem;
    &::before {
      background: url(../img/lp-production-management/case_back-sp.webp) no-repeat top center/contain;
    }
  }

  .pm-cases-slider {
    margin-top: 2rem;
  }

  .pm-cases-slider .slick-dots {
    margin-top: 4.2rem;
    gap: 0.5rem;
  }

  .pm-cases-slider .slick-dots li {
    width: 0.7rem;
    height: 0.7rem;
  }
  .pm-case-slide {
    padding: 0 0.5rem;
  }

  .pm-case-slide-body {
    padding: 1rem 1.2rem 1.4rem;
  }

  .pm-case-slide-img img {
    aspect-ratio: 285/185;
  }

  .pm-case-slide-tag {
    min-height: 2rem;
    padding: 0.2rem 0.8rem;
  }

  .pm-case-slide-body h3 {
    margin-top: 0.5rem;
    font-size: 1.1rem;
  }

  .pm-case-slide-meta {
    margin-top: 1rem;
  }

  .pm-case-slide-company {
    padding-bottom: 0.6rem;
    font-size: 1rem;
  }

  .pm-case-slide-info {
    margin: 0.8rem 0 0;
  }

  .pm-case-slide-info li {
    font-size: 1rem;
  }

  .pm-cases-guide {
    margin-top: 3rem;
  }

  .pm-cases-guide-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pm-cases-guide-head {
    padding: 0.4rem 2rem;
    font-size: 2rem;
  }

  .pm-cases-guide-tags {
    padding: 1.7rem 2.4rem;
    gap: 1.1rem;

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

  .pm-cases-guide-tags li a {
    padding: 0.4rem 2rem 0.4rem 1rem;
    font-size: 1.3rem;
    &::after {
      right: 0.8rem;
    }
  }

  .pm-cases-guide-note {
    flex-direction: column;
    gap: 1.4rem;
    margin-top: 1.6rem;
    dt {
      font-size: 1.6rem;
      &::before {
        width: 1.6rem;
      }
    }
    dd {
      font-size: 1.4rem;
      line-height: 1.4;
    }
  }

  .pm-cases-guide-note span {
    color: #fc8332;
    margin-right: 1.2rem;
  }

  .pm-cases-guide-cta {
    margin-top: 4.8rem;
  }

  .fixedcontainer {
    padding: 5rem 0 5.3rem !important;
  }
  .fixedcontainer .title {
    font-size: 3.4rem;
    line-height: 1.25;
  }
  .justify-content-center {
    justify-content: inherit !important;
    overflow-x: scroll;
  }
  .smartf-comparison-table {
    min-width: 92.8rem;
  }
  .fixedcontainer-btn {
    margin-top: 5rem;
    a {
      width: 33.4rem;
    }
  }

  .pm-flow {
    padding: 5rem 0;
  }

  .pm-flow-list {
    margin-top: 3.4rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 9rem;
  }

  .pm-flow-list article {
    width: 100%;
    max-width: 60%;
    margin-inline: auto;
    &:not(:last-child) {
      &::before {
        top: auto;
        bottom: -6rem;
        right: 50%;
        transform: translate(50%, 0) rotate(90deg);
        width: 2.3rem;
      }
    }
  }
  .pm-flow-head span {
    top: -0.6em;
    left: -0.4em;
  }
  .pm-flow-list h3 {
    min-height: inherit;
    margin-top: 1.5rem;
    font-size: 1.8rem;
  }

  .pm-flow-list p {
    margin-top: 1rem;
  }

  .pm-faq {
    padding: 5rem 0 4.8rem;
  }

  .pm-faq-list {
    margin-top: 7.7rem;
  }

  .pm-faq-item {
    border: 3px solid rgba(252, 131, 50, 0.1);
  }

  .pm-faq-item + .pm-faq-item {
    margin-top: 1.3rem;
  }

  .pm-faq-q {
    padding: 2.4rem 3.4rem 2.4rem 4.1rem;
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .pm-faq-q::before {
    left: 1rem;
    font-size: 2.5rem;
  }

  .pm-faq-q::after {
    right: 0.6rem;
    width: 2.4rem;
  }

  .pm-faq-a {
    padding: 0 0.5rem 2rem 4.1rem;
  }

  .pm-faq-a::before {
    top: -0.3em;
    left: 1rem;
    font-size: 2.5rem;
  }

  .pm-faq-a p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .pm-bottom {
    padding: 5rem 0;
    background: #faf4ea;
  }

  .pm-bottom-cta {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pm-bottom-card {
    padding: 2.3rem 0.4rem 1.5rem 11.8rem;
    &:nth-child(2) {
      padding-left: 10.5rem;
    }
  }

  .pm-bottom-card h3 {
    font-size: 2rem;
  }

  .pm-bottom-card p {
    margin-top: 1.4rem;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .pm-bottom-btn {
    width: 78%;
    height: 2.8rem;
    margin-top: 0.7rem;
    &::before {
      width: 1.4rem;
      background: #fc8332 url(../img/lp-production-management/icon_arrow-white.svg) no-repeat center / 0.9rem 0.7rem;
    }
  }

  .pm-bottom-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
  }
}
