@charset "UTF-8";
/*--------------------------------------*
 * foundation
 *--------------------------------------*/
html {
  font-size: 62.5%;
  line-height: 1.75;
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  min-width: 350px;
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

span.bold {
  font-weight: 600;
}

.facebook-wrapper {
  max-width: 500px; /* Facebook Page Plugin の最大幅 */
  margin: 0 auto;
}

.facebook-wrapper > .fb-page {
  width: 100%;
}

.facebook-wrapper > .fb-page > span,
.facebook-wrapper iframe {
  width: 100% !important;
  height: 400px !important;
}

source {
  width: fit-content;
  display: block;
  margin: 0 auto;
}

/*--------------------------------------*
 * layout
 *--------------------------------------*/
.l-header {
  width: 100%;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 1000;
  background-color: #fff;
}
@media (max-width: 959px) {
  .l-header {
    padding: 16px 16px;
  }
}
@media (max-width: 1280px) {
  .l-header__nav.c-nav {
    position: fixed;
    top: 0;
    right: -120%;
  }
}
.l-header__navBtn {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  position: relative;
  z-index: 1000;
  background-color: #FE5054;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1280px) {
  .l-header__navBtn {
    display: flex;
  }
}
.l-header__navBtn::before {
  content: url(../img/menu.svg);
  line-height: 1;
}
.l-header__navBtn.active {
  background-color: #fff;
}
.l-header__navBtn.active::before {
  content: url(../img/close.svg);
}
.l-header__nav {
  transition: all 0.5s ease-in-out;
}
.l-header__nav.panelactive {
  display: block;
  height: 100vh;
  right: 0;
  background-color: #FE5054;
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
  color: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}
.l-header__nav.panelactive .c-btn {
  background-color: #fff;
  color: #333333;
}
.l-header__nav.panelactive .c-btn::after {
  content: url(../img/btnicon-sub.svg);
}

.l-worries {
  background-color: #F5F5F5;
  padding: 80px 16px;
}
.l-worries__headline {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 959px) {
  .l-worries__headline {
    font-size: 2rem;
  }
}
.l-worries__content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background-color: #fff;
  border: 4px solid #4582F8;
  border-radius: 20px;
  padding: 40px 40px 0;
}
@media (max-width: 959px) {
  .l-worries__content {
    padding: 40px 16px 0;
  }
}
.l-worries__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-weight: 600;
}
.l-worries__listItem {
  padding-left: 36px;
  position: relative;
}
.l-worries__listItem::before {
  content: url(../img/listIcon-blue.svg);
  position: absolute;
  top: 0;
  left: 0;
}

.blue {
  color: #4582F8;
}

.l-conclusion {
  width: fit-content;
  margin: 40px auto 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.l-conclusion__lead {
  font-size: 2.4rem;
  font-weight: 600;
}
@media (max-width: 959px) {
  .l-conclusion__lead {
    font-size: 2rem;
  }
}
.l-conclusion__lead__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}
.l-conclusion__lead-line1 {
  padding-bottom: 2px;
  line-height: 1;
}
@media (max-width: 959px) {
  .l-conclusion__lead-line1 {
    text-align: center;
  }
}
.l-conclusion__lead-line2 {
  padding-bottom: 0;
}
.l-conclusion__underline {
  font-size: 3.2rem;
  line-height: 1.5;
}
@media (max-width: 959px) {
  .l-conclusion__underline {
    font-size: 2.4rem;
  }
}

.l-point {
  max-width: 960px;
  margin: 0 auto 120px;
  padding: 24px 80px 40px;
  background-color: #F5F5F5;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 959px) {
  .l-point {
    width: calc(100% - 32px);
    padding: 24px 16px 40px;
  }
}
.l-point__ttl {
  font-family: "Alumni Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #FE5054;
  text-align: center;
  margin-bottom: 8px;
}
.l-point__lead {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 959px) {
  .l-point__lead {
    font-size: 2rem;
  }
}

.l-contact {
  background-color: #FE5054;
  padding: 40px 16px;
}
.l-contact__body {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
}
.l-contact__body::before {
  content: url(../img/contact.png);
  position: absolute;
  bottom: -40px;
  left: -76px;
  line-height: 0.9;
}
@media (max-width: 959px) {
  .l-contact__body::before {
    display: none;
  }
}

.l-news {
  background-color: #F5F5F5;
  padding: 80px 0;
}
@media (max-width: 959px) {
  .l-news {
    padding: 80px 16px;
  }
}
.l-news .c-detail {
  margin-top: 40px;
}
.l-news__content {
  max-width: 960px;
  margin: 64px auto 0;
  display: flex;
  justify-content: center;
  gap: 80px;
}
@media (max-width: 959px) {
  .l-news__content {
    flex-direction: column;
  }
}
.l-news__item {
  width: calc(50% - 40px);
}
@media (max-width: 959px) {
  .l-news__item {
    width: 100%;
  }
}
.l-news__item__ttl {
  margin-bottom: 24px;
  font-family: "Alumni Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #FE5054;
  display: flex;
  gap: 16px;
}
.l-news__item__ttl::after {
  content: "";
  flex-grow: 1;
  height: 14px;
  border-bottom: 1px solid #FE5054;
}

.l-company {
  background-color: #F5F5F5;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 959px) {
  .l-company {
    padding: 80px 16px;
  }
}

.l-footer {
  background-color: #F5F5F5;
}
.l-footer__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
}
@media (max-width: 959px) {
  .l-footer__body {
    flex-direction: column;
    gap: 40px;
  }
}

.l-copyright {
  text-align: center;
  width: 100%;
  display: block;
}

/*--------------------------------------*
 * object-component
 *--------------------------------------*/
.c-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
@media (max-width: 959px) {
  .c-nav {
    flex-direction: column;
    gap: 24px;
  }
}
.c-nav__menu {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  font-weight: 600;
}
@media (max-width: 959px) {
  .c-nav__menu {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.c-nav__menu__item {
  height: 56px;
  display: flex;
  align-items: center;
}

.c-btn {
  background-color: #FE5054;
  font-weight: 600;
  color: #fff;
  width: fit-content;
  height: 56px;
  border-radius: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-left: 24px;
  padding-right: 24px;
}
.c-btn::after {
  content: url(../img/btnicon.svg);
  line-height: 0;
}
.c-btn-sub {
  background-color: #fff;
  color: #FE5054;
  border: 1px solid #FE5054;
}
.c-btn-sub::after {
  content: url(../img/btnicon-sub.svg);
  line-height: 0;
}

.c-break {
  display: none;
}
@media (max-width: 959px) {
  .c-break {
    display: block;
  }
}

.c-break-pc {
  display: block;
}
@media (max-width: 959px) {
  .c-break-pc {
    display: none;
  }
}

.c-section {
  margin-bottom: 120px;
}

.c-underline {
  background: linear-gradient(transparent 80%, #F9DD4B 20%);
}

.c-ttl {
  font-family: "Alumni Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 3.2rem;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.c-ttl::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #FE5054;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.c-lead {
  font-size: 2.4rem;
  font-weight: 600;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
}
@media (max-width: 959px) {
  .c-lead {
    font-size: 2rem;
    text-align: center;
    row-gap: 8px;
  }
}
.c-lead__emp {
  font-family: "Alumni Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 6.4rem;
  line-height: 42px;
  text-transform: uppercase;
  color: #FE5054;
}
@media (max-width: 959px) {
  .c-lead__emp {
    font-size: 4.8rem;
    line-height: 30px;
  }
}
.c-lead__emp-jp {
  font-size: 4rem;
  line-height: 42px;
  color: #FE5054;
}
@media (max-width: 959px) {
  .c-lead__emp-jp {
    font-size: 3.6rem;
    line-height: 1;
  }
}
.c-lead__text {
  line-height: 1;
}

.c-lead__inner {
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 959px) {
  .c-lead__inner {
    width: 100%;
  }
}

.c-detail {
  margin-top: 24px;
  text-align: center;
  padding: 0 16px;
}
@media (max-width: 959px) {
  .c-detail {
    text-align: left;
  }
}
.c-detail-bold {
  margin-top: 0;
  font-weight: 600;
}
@media (max-width: 959px) {
  .c-detail-bold {
    padding: 0;
    text-align: center;
  }
}

.c-pc {
  display: block;
}
@media (max-width: 959px) {
  .c-pc {
    display: none;
  }
}

.c-sp {
  display: none;
}
@media (max-width: 959px) {
  .c-sp {
    display: block;
  }
}

.c-smallPC-flex {
  display: none;
}
@media (max-width: 1280px) {
  .c-smallPC-flex {
    display: flex;
  }
}

.c-pc-flex {
  display: flex;
}
@media (max-width: 959px) {
  .c-pc-flex {
    display: none;
  }
}

.c-sp-flex {
  display: none;
}
@media (max-width: 959px) {
  .c-sp-flex {
    display: flex;
  }
}

/*--------------------------------------*
 * object-project 7powers
 *--------------------------------------*/
.p-fv-7p {
  height: 612px;
  background-image: url(../img/7powers/fv-7p.png);
  background-repeat: no-repeat;
  background-position: 80px bottom;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.p-fv-7p::before {
  content: "";
  width: 172px;
  height: 400px;
  background-color: #FE5054;
  border-radius: 0 20px 20px 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 959px) {
  .p-fv-7p::before {
    display: none;
  }
}
@media (max-width: 1280px) {
  .p-fv-7p {
    background-size: 40%;
  }
}
@media (max-width: 959px) {
  .p-fv-7p {
    background-position: 80% bottom;
  }
}
@media (max-width: 767px) {
  .p-fv-7p {
    height: 640px;
    background-size: 80%;
    display: block;
    padding-top: 120px;
    background-position: left bottom;
  }
}
.p-fv-7p__text {
  width: 50%;
}
@media (max-width: 1280px) {
  .p-fv-7p__text {
    width: 65%;
  }
}
@media (max-width: 959px) {
  .p-fv-7p__text {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .p-fv-7p__text {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-fv-7p__headline {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-fv-7p__headline img {
    width: 280px;
    margin: 0 auto;
  }
}
.p-fv-7p__lead {
  margin-bottom: 48px;
  font-size: 2.4rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .p-fv-7p__lead {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .p-fv-7p__btn {
    margin: 0 auto;
  }
}

.p-logo-7p {
  display: inline;
}

.p-worries-7p__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.p-about-7p {
  position: relative;
}
.p-about-7p::before {
  content: "";
  width: 80px;
  height: 90%;
  background-color: #FE5054;
  border-radius: 0 20px 20px 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1280px) {
  .p-about-7p::before {
    display: none;
  }
}
.p-about-7p::after {
  content: "";
  width: 80px;
  height: 90%;
  background-color: #FE5054;
  border-radius: 20px 0 0 20px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1280px) {
  .p-about-7p::after {
    display: none;
  }
}
.p-about-7p__text {
  margin-bottom: 40px;
}
.p-about-7p__img {
  margin: 0 auto 56px;
}
.p-about-7p__list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
@media (max-width: 959px) {
  .p-about-7p__list {
    justify-content: center;
    gap: 24px;
  }
}
.p-about-7p__item {
  width: calc(50% - 20px);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 40px;
  border-radius: 10px;
  border: 2px solid #FE5054;
}
@media (max-width: 959px) {
  .p-about-7p__item {
    width: calc(50% - 28px);
    padding: 16px 20px;
    flex-direction: column;
    gap: 0px;
  }
}
@media (max-width: 767px) {
  .p-about-7p__item {
    width: calc(100% - 32px);
    max-width: 360px;
  }
}
.p-about-7p__item__num {
  font-family: "Alumni Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 8rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #FE5054;
}
@media (max-width: 959px) {
  .p-about-7p__item__num {
    font-size: 4.8rem;
  }
}
.p-about-7p__item__text__ttl {
  font-size: 2.4rem;
  font-weight: 600;
}
@media (max-width: 959px) {
  .p-about-7p__item__text__ttl {
    font-size: 2rem;
    text-align: center;
  }
}

.p-feature-7p__text {
  margin-bottom: 56px;
}
.p-feature-7p__list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 40px;
  column-gap: 80px;
}
.p-feature-7p__item {
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-feature-7p__item img {
  margin-bottom: 16px;
}
.p-feature-7p__item__ttl {
  font-family: "Alumni Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #FE5054;
  margin-bottom: 8px;
}
.p-feature-7p__item__lead {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.p-program-7p__img {
  overflow: scroll;
  width: calc(100% - 16px);
  margin: 40px auto;
}
.p-program-7p__img img {
  max-width: none;
  width: 800px;
  margin: 0 auto;
}
.p-program-7p__note {
  width: 100%;
  display: none;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 600;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .p-program-7p__note {
    display: flex;
  }
}

/*--------------------------------------*
* object-project power discussion
*--------------------------------------*/
.p-fv-pd {
  max-width: 1200px;
  margin: 0 auto;
  height: 612px;
  display: flex;
  align-items: center;
  background-image: url(../img/powerdiscussion/fv.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 0 24px;
}
@media (max-width: 959px) {
  .p-fv-pd {
    background-size: 60%;
    padding: 0 16px;
  }
}
@media (max-width: 767px) {
  .p-fv-pd {
    height: 640px;
    background-size: 80%;
  }
}
.p-fv-pd__headline {
  font-size: 6.4rem;
  font-weight: 600;
  margin-bottom: 64px;
}
@media (max-width: 1280px) {
  .p-fv-pd__headline {
    font-size: 4.8rem;
    margin-bottom: 24px;
  }
}
@media (max-width: 959px) {
  .p-fv-pd__headline {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .p-fv-pd__headline {
    font-size: 2.8rem;
  }
}
.p-fv-pd__lead {
  margin-bottom: 24px;
  font-size: 2.4rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .p-fv-pd__lead {
    font-size: 2rem;
  }
}
.p-worries-pd__content {
  padding-bottom: 40px;
  display: flex;
  gap: 40px;
}
@media (max-width: 959px) {
  .p-worries-pd__content {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.p-worries-pd__content img {
  max-width: 160px;
}

.p-conclusion-pd {
  margin-bottom: 120px;
}
.p-conclusion-pd .l-conclusion__lead-line1 {
  line-height: 1.5;
}

.p-about-pd {
  position: relative;
}
.p-about-pd::before {
  content: "";
  width: 80px;
  height: 90%;
  background-color: #FE5054;
  border-radius: 0 20px 20px 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1280px) {
  .p-about-pd::before {
    display: none;
  }
}
.p-about-pd::after {
  content: "";
  width: 80px;
  height: 90%;
  background-color: #FE5054;
  border-radius: 20px 0 0 20px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1280px) {
  .p-about-pd::after {
    display: none;
  }
}
.p-about-pd__text {
  max-width: 940px;
  margin: 24px auto;
  text-align: left;
}
.p-about-pd img {
  margin: 56px auto 40px;
}
@media (max-width: 959px) {
  .p-about-pd img {
    width: calc(100% - 32px);
  }
}

.p-effects-pd {
  position: relative;
}
.p-effects-pd__list {
  max-width: 960px;
  padding: 0 16px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}
.p-effects-pd__list::before {
  content: "";
  width: 100%;
  height: 90%;
  border-radius: 20px;
  background-color: #FE5054;
  position: absolute;
  z-index: -1;
}
.p-effects-pd__item {
  max-width: 720px;
  width: 100%;
  padding: 24px 40px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 2rem;
}
@media (max-width: 959px) {
  .p-effects-pd__item {
    padding: 16px 16px 24px;
    flex-direction: column;
    gap: 0;
  }
}
.p-effects-pd__item__num {
  font-family: "Alumni Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 8rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #FE5054;
}
@media (max-width: 959px) {
  .p-effects-pd__item__num {
    font-size: 6.4rem;
  }
}
.p-effects-pd__item__text-emp {
  font-size: 2.4rem;
  font-weight: 600;
}
@media (max-width: 959px) {
  .p-effects-pd__item__text-emp {
    font-size: 1.8rem;
  }
}
.p-effects-pd__img {
  position: absolute;
  right: 24px;
  bottom: -80px;
}
@media (max-width: 1280px) {
  .p-effects-pd__img {
    display: none;
  }
}

.p-flow-pd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.p-flow-pd__content {
  overflow: scroll;
  width: calc(100% - 16px);
  margin: 0 auto;
}
.p-flow-pd__content img {
  max-width: none;
  width: 800px;
  margin: 0 auto;
}
.p-flow-pd__note {
  width: 100%;
  display: none;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 600;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .p-flow-pd__note {
    display: flex;
  }
}

.p-feature-pd {
  margin-bottom: 120px;
  position: relative;
}
@media (max-width: 959px) {
  .p-feature-pd {
    margin-bottom: 160px;
  }
}
.p-feature-pd::before {
  content: "";
  width: 80px;
  height: 90%;
  background-color: #FE5054;
  border-radius: 0 20px 20px 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1280px) {
  .p-feature-pd::before {
    display: none;
  }
}
.p-feature-pd::after {
  content: "";
  width: 80px;
  height: 90%;
  background-color: #FE5054;
  border-radius: 20px 0 0 20px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1280px) {
  .p-feature-pd::after {
    display: none;
  }
}
.p-feature-pd__headline {
  margin-bottom: 56px;
}
.p-feature-pd__list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 48px;
  row-gap: 40px;
}
@media (max-width: 959px) {
  .p-feature-pd__list {
    width: calc(100% - 32px);
  }
}
.p-feature-pd__item {
  width: calc(33.3333333333% - 48px);
  position: relative;
}
@media (max-width: 959px) {
  .p-feature-pd__item {
    width: calc(50% - 32px);
  }
}
@media (max-width: 767px) {
  .p-feature-pd__item {
    width: calc(100% - 32px);
  }
}
.p-feature-pd__item__num {
  font-family: "Alumni Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 6.4rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #FE5054;
  position: absolute;
  top: 0;
  left: 24px;
}
.p-feature-pd__item__img {
  margin-bottom: 16px;
}
.p-feature-pd__item__ttl {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.p-catch-pd {
  font-size: 2.4rem;
  font-weight: 600;
  vertical-align: bottom;
  width: fit-content;
  margin: 0 auto 80px;
  position: relative;
}
@media (max-width: 959px) {
  .p-catch-pd {
    margin-bottom: 40px;
  }
}
.p-catch-pd::before {
  content: "";
  width: 100vw;
  height: 48px;
  background-color: #F79A2D;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 959px) {
  .p-catch-pd::before {
    content: url(../img/powerdiscussion/triangle-orange.svg);
    background-color: unset;
    width: unset;
    height: unset;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-catch-pd__content {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 0 40px;
  align-items: center;
  transform: skewX(-15deg);
}
@media (max-width: 959px) {
  .p-catch-pd__content {
    padding: 0 16px;
    transform: unset;
  }
}
.p-catch-pd__content__wrapper {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-end;
  transform: skewX(15deg);
}
@media (max-width: 959px) {
  .p-catch-pd__content__wrapper {
    transform: unset;
  }
}
@media (max-width: 959px) {
  .p-catch-pd__content__wrapper-sp {
    flex-direction: column;
    align-items: center;
  }
}
.p-catch-pd img {
  display: inline;
}
.p-catch-pd span {
  line-height: 1;
}
.p-catch-pd__emp {
  color: #FE5054;
  font-size: 44px;
}
@media (max-width: 959px) {
  .p-catch-pd__emp {
    font-size: 3.6rem;
  }
}

.p-method-pd {
  max-width: 960px;
  width: calc(100% - 32px);
  margin: 0 auto 80px;
  padding: 40px;
  border-radius: 20px;
  background-color: #F5F5F5;
}
@media (max-width: 959px) {
  .p-method-pd {
    padding: 40px 16px;
  }
}
.p-method-pd__headline {
  margin-bottom: 24px;
}
.p-method-pd__text {
  margin-bottom: 40px;
  text-align: left;
}

.p-howto-pd {
  margin-bottom: 80px;
}
.p-howto-pd__headline {
  margin-bottom: 24px;
}
.p-howto-pd__content {
  width: fit-content;
  margin: 0 auto;
  border: 2px solid #FE5054;
  border-radius: 20px;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 959px) {
  .p-howto-pd__content {
    width: calc(100% - 32px);
    padding: 40px 16px;
  }
}
.p-howto-pd__item {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 959px) {
  .p-howto-pd__item {
    gap: 16px;
  }
}
.p-howto-pd__item__num {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F79A2D;
  color: #fff;
  border-radius: 20px;
}
@media (max-width: 959px) {
  .p-howto-pd__item__num {
    width: 32px;
    height: 32px;
  }
}
.p-howto-pd__item__ttl {
  font-size: 2rem;
  font-weight: 600;
  flex: 1;
}
@media (max-width: 959px) {
  .p-howto-pd__item__ttl {
    font-size: 1.6rem;
  }
}
.p-howto-pd__item__ttl img {
  display: inline-block;
  height: 35px;
}
@media (max-width: 959px) {
  .p-howto-pd__item__ttl img {
    height: 28px;
  }
}

.p-program-pd {
  margin-bottom: 120px;
}
.p-program-pd__headline {
  margin-bottom: 24px;
}
.p-program-pd__content {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px;
  border: 2px solid #FE5054;
  border-radius: 20px;
  overflow: scroll;
  width: calc(100% - 16px);
}
.p-program-pd__content img {
  max-width: none;
  width: 800px;
  margin: 0 auto;
}
.p-program-pd__note {
  width: 100%;
  display: none;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 600;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .p-program-pd__note {
    display: flex;
  }
}