.p-pono-wrap {
  --color-pono: #9b295c;
  --width-inner: 1500;
  --gutter: 15px;
}

.p-pono-wrap :is(h1, h2, h3, h4) {
  font-family: "Hiragino Kaku Gothic ProN", "\30E1\30A4\30EA\30AA", "Noto Sans JP", sans-serif;
}

/* mv
---------------------------------------------- */
.p-pono-mv {
  position: relative;
  padding-top: 112px;
  padding-bottom: 94px;
  overflow: hidden;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.p-pono-mv__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.p-pono-mv__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-pono-mv__inner {
  position: relative;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.p-pono-mv__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-areas: "left right";
  column-gap: 6%;
}

.p-pono-mv__left {
  grid-area: left;
}

.p-pono-mv__right {
  grid-area: right;
}

.p-pono-mv__sub {
  font-size: 34px;
  line-height: 1.5;
  font-weight: 600;
  margin-top: calc((1em - 1lh) / 2);
}

.p-pono-mv__heading {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.4;
}

.p-pono-mv__heading-parts {
  display: inline-block;
}
.p-pono-mv__logo {
  margin-top: 45px;
}

.p-pono-mv__logo-img {
  height: auto;
}

.p-pono-mv__text {
  margin-top: 45px;
  font-size: 24px;
  line-height: calc(40 / 24);
  font-weight: 500;
}

.p-pono-mv__pic-img {
  border: 10px solid white;
}

/* worry
---------------------------------------------- */

.p-pono-worry {
  padding-top: 52px;
  padding-bottom: 60px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.p-pono-worry__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.p-pono-worry__layout {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  grid-template-areas: "left right";
  align-items: center;
}

.p-pono-worry__left {
  grid-area: left;
}

.p-pono-worry__right {
  grid-area: right;
  align-self: flex-end;
  padding-right: 2%;
}

.p-pono-worry__heading {
  font-size: 34px;
  font-weight: 600;
  line-height: calc(50 / 34);
  color: var(--color-pono);
}

.p-pono-worry__list {
  list-style: none;
  margin-top: 35px;
}

.p-pono-worry__item {
  font-size: 24px;
  font-weight: 500;
  line-height: calc(40 / 24);
}

/* lead
---------------------------------------------- */
.p-pono-lead {
  background-color: #f3f1e2;
  padding: 40px var(--gutter);
}

.p-pono-lead__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.p-pono-lead__catch {
  font-size: 34px;
  font-weight: 600;
  line-height: calc(50 / 34);
  color: var(--color-pono);
}

/* detail
---------------------------------------------- */

.p-pono-detail {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 75px;
  padding-bottom: 20px;
}

.p-pono-detail__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.p-pono-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "lead pic"
    "outline pic";
}

.p-pono-detail__lead {
  grid-area: lead;
  padding-right: 4%;
  padding-left: 15%;
}

.p-pono-detail__outline {
  padding-right: 4%;
  padding-left: 15%;
  grid-area: outline;
}

.p-pono-detail__pic {
  grid-area: pic;
  align-self: start;
  padding-top: 8px;
}

.p-pono-detail__lead-heading {
  font-size: 34px;
  font-weight: 600;
  line-height: calc(50 / 34);
  color: var(--color-pono);
}

.p-pono-detail__lead-text {
  margin-top: 36px;
  font-size: 24px;
  line-height: calc(40 / 24);
}

.p-pono-detail__name {
  font-size: 16px;
  line-height: calc(28 / 16);
  margin-top: 80px;
}

.p-pono-detail__outline-heading {
  font-size: 34px;
  font-weight: 600;
  line-height: calc(50 / 34);
  color: var(--color-pono);
}

.p-pono-detail__outline-list {
  display: flex;
  padding: 8px 0;
}

.p-pono-detail__outline-list:first-of-type {
  margin-top: 8px;
}

.p-pono-detail__outline-head {
  width: 154px;
  flex-shrink: 0;
  font-size: 19px;
  line-height: calc(32 / 19);
}

.p-pono-detail__outline-body {
  font-size: 19px;
  line-height: calc(32 / 19);
}

.p-pono-detail__pic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* responsive
---------------------------------------------- */
@media screen and (max-width: 1024px) {
  /* mv */
  .p-pono-mv {
    padding-top: 48px;
    padding-bottom: 40px;
  }
  .p-pono-mv__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right";
    row-gap: 30px;
  }
  .p-pono-mv__sub {
    text-align: center;
    font-size: 20px;
  }
  .p-pono-mv__heading {
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 20px;
  }
  .p-pono-mv__text {
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
  }
  .p-pono-mv__logo {
    margin-top: 20px;
    max-width: 300px;
    display: grid;
    place-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .p-pono-mv__pic {
    display: grid;
    place-items: center;
  }
  .p-pono-mv__pic-img {
    border-width: 6px;
    max-width: 400px;
    width: 100%;
  }

  .p-pono-mv__chara {
    display: grid;
    place-items: center;
  }
  /* worry */
  .p-pono-worry {
    padding-top: 32px;
    padding-bottom: 36px;
  }
  .p-pono-worry__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right";
    row-gap: 24px;
  }
  .p-pono-worry__right {
    padding-right: 0;
  }
  .p-pono-worry__heading {
    font-size: 20px;
    text-align: center;
  }

  .p-pono-worry__list {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }
  .p-pono-worry__item {
    font-size: 18px;
  }

  .p-pono-worry__chara {
    display: grid;
    place-items: center;
  }

  /* lead */
  .p-pono-lead {
    padding: 28px var(--gutter);
  }
  .p-pono-lead__catch {
    text-align: center;
    font-size: 20px;
  }

  /* detail */
  .p-pono-detail {
    padding-top: 30px;
  }
  .p-pono-detail__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "pic"
      "lead"
      "outline";
    row-gap: 24px;
  }
  .p-pono-detail__lead {
    padding-left: 0;
    padding-right: 0;
  }
  .p-pono-detail__outline {
    padding-left: 0;
    padding-right: 0;
  }
  .p-pono-detail__lead-heading {
    font-size: 20px;
  }
  .p-pono-detail__lead-text {
    font-size: 18px;
    margin-top: 20px;
  }
  .p-pono-detail__name {
    font-size: 14px;
    margin-top: 20px;
  }
  .p-pono-detail__outline-heading {
    font-size: 20px;
  }
  .p-pono-detail__outline-head {
    width: 100px;
    font-size: 16px;
  }
  .p-pono-detail__outline-body {
    font-size: 16px;
  }
}
