.p-layout {
  --p-blue: #0072bc;
  --p-blue-deep: #003b5f;
  --p-blue-soft: #e7f5ff;
  --p-orange: #f58220;
  --p-orange-soft: #fff0df;
  --p-ink: #191919;
  --p-muted: #67727a;
  --p-line: #dce8ee;
  --p-shell: 1000px;
  color: var(--p-ink);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, Arial, sans-serif;
  line-height: 1.75;
  overflow: hidden;
  max-width: 1200px;
  margin-inline: auto;
}

.p-layout *,
.p-layout *::before,
.p-layout *::after {
  box-sizing: border-box;
}

.p-layout img {
  max-width: 100%;
  display: block;
}

.p-layout a {
  color: inherit;
}

.p-layout .p-shell {
  width: min(var(--p-shell), calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.p-layout .p-section {
  position: relative;
  padding: 50px 0;
  z-index: 1;
}

.p-layout main {
  position: relative;
  isolation: isolate;
  background: #fff;
}

.p-layout main::before,
.p-layout main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.p-layout main::before {
  background:
    linear-gradient(154deg,
      transparent 0 13%,
      rgba(69,189,232,.12) 13% 28%,
      transparent 28% 56%,
      rgba(69,189,232,.11) 56% 70%,
      transparent 70%);
}

.p-layout main::after {
  background:
    linear-gradient(27deg,
      transparent 0 34%,
      rgba(246,162,58,.11) 34% 49%,
      transparent 49% 78%,
      rgba(246,162,58,.10) 78% 91%,
      transparent 91%);
}

.p-layout h1,
.p-layout h2,
.p-layout h3,
.p-layout p {
  margin: 0;
  font-weight: normal;
      font-size: 15px;
}

.p-layout h2 {
  font-size: clamp(28px, 4vw, 45px);
  line-height: 1.35;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0;
}

.p-layout h3 {
  font-size: clamp(20px, 2.3vw, 32px);
  line-height: 1.35;
  font-weight: 900;
}

.p-layout .p-logo {
  width: 25px;
  height: 25px;
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  vertical-align: -6px;
  margin-right: 8px;
}

.p-layout .p-logo::before,
.p-layout .p-logo::after {
  content: "";
  display: block;
  grid-row: span 2;
  background: linear-gradient(180deg, var(--p-blue) 0 50%, #35d28b 50%);
}

.p-layout .p-logo::after {
  background: linear-gradient(180deg, var(--p-orange) 0 50%, #ffcf52 50%);
}

.p-layout .p-photo {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.p-layout .p-photo::before,
.p-layout .p-photo::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.p-layout .p-photo::before {
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.78), transparent 48%);
}

.p-layout .p-photo::after {
  width: 42%;
  aspect-ratio: 1;
  right: 9%;
  top: 18%;
  border-radius: 50%;
  border: 10px solid rgba(255,255,255,.58);
}

.p-layout .p-hero {
  position: relative;
  min-height: 680px;
  padding: 58px 0 42px;
  background: #fff;
  isolation: isolate;
}

.p-layout .p-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../img/design-source.png") center top / cover no-repeat;
  opacity: .92;
}

.p-layout .p-hero::after {
  content: none;
}

.p-layout .p-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  column-gap: 34px;
  align-items: center;
  min-height: 580px;
}

.p-layout .p-hero h1 {
  max-width: 610px;
  margin-top: 26px;
  color: #062333;
  font-size: clamp(38px, 4.2vw, 45px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
}

.p-layout .p-hero h1::after {
  content: "";
  display: block;
  width: 148px;
  height: 3px;
  margin-top: 28px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--p-orange), #ffd174 68%, var(--p-blue));
}

.p-layout .p-hero__content {
  width: 100%;
  padding-top: 2px;
  position: relative;
  z-index: 1;
}

.p-layout .p-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 9px 20px;
  border-left: 0px solid var(--p-orange);
  background: rgba(234,248,255,.92);
  color: var(--p-blue-deep);
  font-size: clamp(22px, 2.6vw, 27px);
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 30px rgba(39, 113, 145, .1);
}

.p-layout .p-hero__product {
  position: relative;
  z-index: 1;
  margin: 0;
  align-self: center;
}

.p-layout .p-hero__product::before {
  content: none;
}

.p-layout .p-hero__product img {
  width: min(100%, 540px);
  margin-inline: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.p-layout .p-hero__actions {
  margin-top: 34px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.p-layout .p-hero__actions-center {
    text-align: center;
    display: block;
}

.p-layout .p-hero__btn {
  min-width: 205px;
  min-height: 62px;
      min-width: 190px;
    min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-size: clamp(18px, 2vw, 22px);
      font-size: clamp(18px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 14px 28px rgba(8, 57, 78, .12);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.p-layout .p-hero__btn--primary {
  background: var(--p-blue-deep);
  color: #fff;
}

.p-layout .p-hero__btn--secondary {
  border-color: rgba(11,48,65,.7);
  background: rgba(255,255,255,.9);
  color: var(--p-blue-deep);
}

.p-layout .p-hero__btn:hover {
  transform: translateY(-2px);
}

.p-layout .p-hero__btn--primary:hover {
  background: #063c55;
}

.p-layout .p-hero__btn--secondary:hover {
  border-color: var(--p-orange);
  color: #9a5a10;
}

.p-layout .p-hero__cards {
  grid-column: 1 / -1;
  width: min(620px, 100%);
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(69,189,232,.32);
  border-top: 4px solid var(--p-blue);
      border-top: 4px solid #ebf8ff;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 34px rgba(44, 119, 149, .1);
}

.p-layout .p-hero__cards article {
  min-height: 112px;
  padding: 24px 36px;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  color: #38505d;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.65;
}

.p-layout .p-hero__cards article + article {
  border-left: 0;
}

.p-layout .p-hero__cards span {
  display: block;
  margin-bottom: 6px;
  color: var(--p-blue-deep);
  font-size: 22px;
  font-weight: 900;
}

.p-layout .p-section--issue {
  padding-top: 80px;
}

.p-layout .p-section--issue::before {
  content: none;
}

.p-layout .p-issue-grid {
  width: min(760px, 100%);
  margin: 44px auto 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: center;
      margin-bottom: 7%;
}

.p-layout .p-issue-point{
      font-size: clamp(26px, 3vw, 30px);
    line-height: 1.2;
    color: var(--p-orange);
    margin: auto;
    text-align: center;
        font-weight: 600;
}

.p-layout .p-issue-grid article {
  display: grid;
  gap: 14px;
}

.p-layout .p-issue-grid h3 {
  font-size: 18px;
}

.p-layout .p-issue-grid .p-photo {
  height: 150px;
  box-shadow: 0 16px 32px rgba(37,68,84,.16);
}

.p-layout .p-photo--challenge-time {
  background-image: url("../img/issue-troubleshooting.png");
}

.p-layout .p-photo--challenge-cost {
  background-image: url("../img/issue-delay.png");
}

.p-layout .p-photo--challenge-work {
  background-image: url("../img/issue-security.png");
}

.p-layout .p-photo--challenge-time::before,
.p-layout .p-photo--challenge-time::after,
.p-layout .p-photo--challenge-cost::before,
.p-layout .p-photo--challenge-cost::after,
.p-layout .p-photo--challenge-work::before,
.p-layout .p-photo--challenge-work::after {
  content: none;
}

.p-layout .p-cause {
  width: min(760px, 100%);
  margin-inline: auto;
  padding: 0 46px 42px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(38,70,84,.16);
  text-align: center;
  font-size: 14px;
  color: var(--p-muted);
  position: relative;
  overflow: visible;
}

.p-layout .p-cause::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 2px;
  height: 34px;
  background: #7a878d;
  transform: translateX(-50%);
}

.p-layout .p-source-note {
  width: min(760px, 100%);
  margin: 42px auto 0;
  color: #879097;
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

.p-layout .p-source-note {
      position: absolute;
    bottom: 9%;
    right: 12%;
}

.p-layout .p-cause__top {
  margin: 0 -46px;
  padding: 36px 56px 54px;
  background: #e3e3e3;
      background: #eaeaea;
  color: #4d5960;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  font-size: 16px;
  font-weight: 700;
}

.p-layout .p-cause__top strong {
  color: var(--p-blue-deep);
  font-size: 1.22em;
}

.p-layout .p-cause__pin {
  width: 2px;
  height: 44px;
  margin: -2px auto 14px;
  background: #7a878d;
}

.p-layout .p-cause h3 {
  margin-bottom: 28px;
  color: #111;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  color: var(--p-orange);
}

.p-layout .p-cause__cols {
  margin: 0 0 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  color: var(--p-ink);
  font-size: 20px;
  line-height: 1.65;
}

.p-layout .p-cause__cols strong {
  padding: 8px 26px;
}

.p-layout .p-cause__cols strong + strong {
  border-left: 1px dashed #b8c1c6;
}

.p-layout .p-cause__cols strong:nth-child(2) span {
  /*color: var(--p-orange);*/
}

.p-layout .p-lead {
  margin-bottom: 28px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.55;
      margin-top: 6%;
}

.p-layout .p-section--solution{
    padding-top: 10px;  
}

.p-layout .p-section--solution h2 em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--p-orange);
  text-decoration-thickness: 6px;
  text-underline-offset: 5px;
}

.p-layout .p-section--solution h2 em {
  display: inline-block;
  margin-top: 6px;
}

.p-layout .p-photo--solution-dashboard {
  width: min(790px, 100%);
  height: 365px;
  margin: 34px auto 30px;
  background-image: url("../img/course-lab.png");
  background-size: cover;
  box-shadow: 0 16px 30px rgba(42, 113, 145, .16);
}

.p-layout .p-photo--solution-dashboard::after {
  content: none;
}

.p-layout .p-photo--solution-dashboard::before {
  content: none;
}

.p-layout .p-copy {
  width: min(790px, 100%);
  margin-inline: auto;
  font-size: 15px;
  /*color: var(--p-muted);*/
}

.p-layout .p-split {
  width: min(790px, 100%);
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 34px;
  align-items: center;
}

.p-layout .p-photo--solution-research {
  height: 230px;
  background-image: url("../img/course-hands.png");
}

.p-layout .p-photo--solution-research::before,
.p-layout .p-photo--solution-research::after {
  content: none;
}

.p-layout .p-split p {
  font-size: 15px;
}

.p-layout .p-section--points {
  padding-top: 80px;
}

.p-layout .p-section--points::before {
  content: none;
}

.p-layout .p-brand,
.p-layout .p-sub {
  text-align: center;
}

.p-layout .p-brand {
  font-size: 30px;
  font-weight: 900;
}

.p-layout .p-brand-tt{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 3%;
}

.p-layout .p-brand-point{
  font-size: 22px;
  font-weight: 700;
  margin-top: 3%;
      color: #cc0000;
}

.p-layout .p-section--points h2 strong {
  color: var(--p-blue);
  font-size: 1.4em;
}

.p-layout .p-point-nav {
  width: min(820px, 100%);
  margin: 28px auto 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10%;
}

.p-layout .p-point-nav a {
  padding: 8px;
  text-decoration: none;
  border-bottom: 2px solid var(--p-line);
}

.p-layout .p-point-nav a:hover {
  color: var(--p-blue);
  border-color: var(--p-orange);
}

.p-layout .p-point-card {
  width: min(810px, 100%);
  min-height: 390px;
  margin: 0 auto 78px;
  padding: 72px 42px 42px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: center;
  border: 1px solid var(--p-line);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 24px rgba(43,78,92,.08);
  overflow: visible;
  margin-bottom: 8%!important;
}

.p-layout .p-point-card--reverse {
  grid-template-columns: 320px minmax(0, 1fr);
}

.p-layout .p-num {
  position: absolute;
  top: -48px;
  left: 26px;
  color: rgba(246,162,58,.22);
  font-size: 118px;
  font-weight: 900;
  line-height: 1;
  z-index: 2;
}

.p-layout .p-point-card:nth-of-type(3n) .p-num,
.p-layout .p-point-card:nth-of-type(4n) .p-num {
  color: rgba(69,189,232,.22);
}

.p-layout .p-point-card__text-time {
      position: absolute;
    right: 2%;
    bottom: 2%;
    font-size: 1.7rem;
    font-weight: 900;
}

.p-layout .p-point-card__text {

}

.p-layout .p-point-card__text-ss{
    font-size: 12px;
 }

.p-layout .p-point-card__text p {
  margin-top: 24px;
  font-size: 14px;
  color: var(--p-muted);
}

.p-layout .p-point-card .p-photo {
  height: 245px;
  position: relative;
  z-index: 2;
  margin-right: -78px;
  border-radius: 0;
  background-color: transparent;
  background-size: contain;
  background-position: center;
  box-shadow: none;
}

.p-layout .p-point-card--reverse .p-photo {
  margin-right: 0;
  margin-left: -78px;
}

.p-layout .p-photo--point-01 {
  background-image: url("../img/point-01-cutout.png");
}

.p-layout .p-photo--point-02 {
  background-image: url("../img/point-02-cutout.png");
}

.p-layout .p-photo--point-03 {
  background-image: url("../img/point-03-cutout.png");
}

.p-layout .p-photo--point-04 {
  background-image: url("../img/point-04-cutout.png");
}

.p-layout .p-photo--point-01::before,
.p-layout .p-photo--point-01::after,
.p-layout .p-photo--point-02::before,
.p-layout .p-photo--point-02::after,
.p-layout .p-photo--point-03::before,
.p-layout .p-photo--point-03::after,
.p-layout .p-photo--point-04::before,
.p-layout .p-photo--point-04::after {
  content: none;
}

.p-layout .p-section--cases{
      padding-top: 50px;
}

.p-layout .p-section--cases h2 {
  margin-bottom: 42px;
}

.p-layout .p-case-grid {
  width: min(760px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 34px;
}

.p-layout .p-case-grid article {
  text-align: center;
  font-weight: 800;
  font-size: 14px;
}

.p-layout .p-case-grid strong {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--p-blue-deep);
  font-size: 17px;
}

.p-layout .p-case-grid .p-photo {
  height: 205px;
  margin-bottom: 14px;
  border-radius: 8px;
  box-shadow: 0 13px 24px rgba(37,70,84,.15);
}

.p-layout .p-photo--case-01 {
  background-image: url("../img/audience-beginner.png");
}

.p-layout .p-photo--case-02 {
  background-image: url("../img/audience-engineer.png");
}

.p-layout .p-photo--case-03 {
  background-image: url("../img/audience-si.png");
}

.p-layout .p-photo--case-04 {
  background-image: url("../img/audience-manager.png");
  background-size: cover;
}

.p-layout .p-photo--case-01::before,
.p-layout .p-photo--case-01::after,
.p-layout .p-photo--case-02::before,
.p-layout .p-photo--case-02::after,
.p-layout .p-photo--case-03::before,
.p-layout .p-photo--case-03::after,
.p-layout .p-photo--case-04::before,
.p-layout .p-photo--case-04::after {
  content: none;
}

.p-layout .p-final-message {
  margin-top: 52px;
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.45;
}

.p-layout .p-final-message strong {
  font-size: 1.2em;
  font-weight: 900;
}

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

.p-layout .p-contact-lead {
  width: min(720px, 100%);
  margin: 18px auto 38px;
  text-align: center;
  color: var(--p-muted);
  font-size: 14px;
}

.p-layout .p-contact-box {
  width: min(780px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  border: 4px solid var(--p-blue-soft);
  background: #fff;
  box-shadow: 0 14px 28px rgba(42,78,92,.1);
}

.p-layout .p-contact-box section {
  position: relative;
  min-height: 330px;
  padding: 30px;
}

.p-layout .p-contact-box section + section {
  border-left: 4px solid var(--p-orange-soft);
}

.p-layout .p-contact-box h3 {
  margin-bottom: 20px;
  color: #248bb8;
  font-size: 28px;
}

.p-layout .p-contact-box p,
.p-layout .p-contact-box dl,
.p-layout .p-contact-box ul {
  margin: 0;
  color: #52656d;
  font-size: 14px;
}

.p-layout .p-contact-box dt {
  float: left;
  clear: left;
  width: 64px;
  color: #248bb8;
  font-weight: 900;
}

.p-layout .p-contact-box dd {
  margin-left: 78px;
  margin-bottom: 9px;
}

.p-layout .p-contact-box ul {
  margin-top: 20px;
  padding-left: 1.2em;
}

.p-layout .p-btn {
  display: inline-flex;
  min-height: 44px;
  margin-top: 18px;
  padding: 9px 18px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--p-orange);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.p-layout .p-person {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 220px;
  height: 215px;
  background: url("../img/customer-service.png") center bottom / contain no-repeat;
  filter: drop-shadow(0 10px 12px rgba(0,0,0,.12));
}

.p-layout .p-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.p-layout .p-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
      margin-bottom: 2%;
}

@media (max-width: 780px) {
  .p-layout .p-shell {
    width: min(100% - 28px, var(--p-shell));
  }

  .p-layout .p-section {
    padding: 68px 0;
  }

  .p-layout .p-hero {
    min-height: auto;
    padding: 34px 0 46px;
  }

  .p-layout .p-hero::before {
    inset: 0;
    width: 100%;
    background: url("../img/design-source.png") center top / cover no-repeat;
    opacity: .9;
  }

  .p-layout .p-hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    align-content: start;
    row-gap: 28px;
  }

  .p-layout .p-hero h1 {
    margin-top: 22px;
    font-size: clamp(30px, 8.8vw, 44px);
    line-height: 1.38;
  }

  .p-layout .p-hero h1::after {
    width: 112px;
    height: 3px;
    margin-top: 20px;
  }

  .p-layout .p-hero__eyebrow {
    min-height: 0;
    padding: 8px 14px;
    border-left-width: 5px;
    font-size: clamp(20px, 6vw, 30px);
  }

  .p-layout .p-hero__actions {
    margin-top: 28px;
    gap: 14px;
  }

  .p-layout .p-hero__btn {
    min-width: 0;
    width: calc(50% - 7px);
    min-height: 64px;
    border-radius: 10px;
  }

  .p-layout .p-hero__product {
    margin-top: 4px;
  }

  .p-layout .p-hero__product img {
    width: min(100%, 500px);
    max-height: 330px;
    object-fit: cover;
    object-position: center 45%;
  }

  .p-layout .p-hero__cards {
    width: 100%;
    margin-top: 20px;
    grid-template-columns: 1fr;
  }

  .p-layout .p-hero__cards article + article {
    border-left: 0;
    border-top: 1px solid rgba(69,189,232,.24);
  }

  .p-layout .p-issue-grid,
  .p-layout .p-case-grid,
  .p-layout .p-contact-box,
  .p-layout .p-cause__cols,
  .p-layout .p-split,
  .p-layout .p-point-card,
  .p-layout .p-point-card--reverse {
    grid-template-columns: 1fr;
  }

  .p-layout .p-cause {
    padding: 0 22px 30px;
  }

  .p-layout .p-cause::after {
    bottom: -28px;
    height: 28px;
  }

  .p-layout .p-source-note {
    margin-top: 36px;
    font-size: 11px;
  }

  .p-layout .p-cause__top {
    margin: 0 -22px;
    padding: 28px 24px 46px;
    font-size: 14px;
  }

  .p-layout .p-cause__pin {
    height: 34px;
    margin-bottom: 12px;
  }

  .p-layout .p-cause h3 {
    margin-bottom: 18px;
  }

  .p-layout .p-cause__cols {
    font-size: 18px;
  }

  .p-layout .p-cause__cols strong {
    padding: 18px 8px;
  }

  .p-layout .p-cause__cols strong + strong {
    border-top: 1px dashed #b8c1c6;
    border-left: 0;
  }

  .p-layout .p-photo--solution-dashboard {
    height: 240px;

  }

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

  .p-layout .p-point-card {
    min-height: auto;
    margin-bottom: 58px;
    padding: 62px 22px 28px;
  }

  .p-layout .p-point-card .p-photo,
  .p-layout .p-case-grid .p-photo,
  .p-layout .p-issue-grid .p-photo,
  .p-layout .p-photo--solution-research {
    min-height: 210px;
  }

  .p-layout .p-point-card .p-photo {
    margin-right: 0;
    margin-left: 0;
  }

  .p-layout .p-num {
    top: -34px;
    left: 18px;
    font-size: 86px;
  }

  .p-layout .p-contact-box section + section {
    border-top: 4px solid var(--p-orange-soft);
    border-left: 0;
  }
}

@media (max-width: 480px) {
  .p-layout .p-hero {
    min-height: auto;
  }

  .p-layout .p-hero::before {
    background-size: cover;
    background-position: center top;
  }

  .p-layout .p-hero h1 {
    font-size: clamp(28px, 10.2vw, 38px);
  }

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

  .p-layout .p-hero__btn {
    width: 100%;
  }

  .p-layout .p-hero__product img {
    max-height: 280px;
  }

  .p-layout .p-section--issue {
    padding-top: 76px;
  }

  .p-layout .p-photo {
    background-size: cover;
  }

  .p-layout .p-contact-box section {
    padding: 24px 20px;
  }

  .p-layout .p-person {
    opacity: .42;
  }
}
