/* index copy.html (official site) - section variants
   Scoped by .pp-section to avoid impacting other pages. */

:root{
  --pp-accent: #16a085;
  --pp-ink: #0b1f2a;
  --pp-muted: rgba(11, 31, 42, .70);
  --pp-card-shadow: 0 14px 40px rgba(0,0,0,.08);
}

/* Header nav: compact with dropdown submenu */
.navGlobal-dropdown{
  position: relative;
}

.navGlobal-anchor--summary{
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .45em;
}

.navGlobal-anchor--summary::-webkit-details-marker{
  display: none;
}

.navGlobal-anchor--summary::after{
  content: "▼";
  font-size: .65em;
  line-height: 1;
  transition: transform .2s ease;
}

.navGlobal-dropdown[open] .navGlobal-anchor--summary::after{
  transform: rotate(180deg);
}

.navGlobal-submenu{
  list-style: none;
  margin: 12px 0 0;
  padding: 0 0 0 14px;
}

.navGlobal-submenu .navGlobal-item{
  height: auto;
  display: block;
  text-align: left;
}

.navGlobal-submenu .navGlobal-item + .navGlobal-item{
  margin-top: 12px;
  margin-left: 0;
}

.navGlobal-submenu .navGlobal-anchor{
  font-size: 20px;
  font-weight: 500;
  white-space: normal;
}

@media (min-width: 768px){
  .navGlobal-dropdownItem{
    align-items: center;
    display: flex;
  }

  .navGlobal-submenu{
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    margin: 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff;
    z-index: 120;
  }

  .navGlobal-dropdown[open] .navGlobal-submenu{
    display: block;
  }

  .navGlobal-submenu .navGlobal-anchor{
    color: #233839;
    font-size: 14px;
    font-weight: 500;
    display: block;
    padding: 4px 0;
  }
}

/* Hero: gradient background only (hero image is an element, not a background) */
.mainvisualTop{
  background: linear-gradient(315.04deg, rgba(199, 255, 41, 0.6) 0, #00adb8 82.81%), #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: normal;
}

/* Hero: reduce excessive top spacing (scoped to index hero) */
#aboutus .mainvisual-container{
  padding-top: clamp(110px, 14vh, 180px);
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "main"
    "sub"
    "cta"
    "media";
  row-gap: 22px;
  padding-bottom: 32px;
}

@media (min-width: 768px){
  #aboutus .mainvisual-container{
    padding-top: clamp(140px, 14vh, 220px);
    padding-bottom: clamp(50px, 8vh, 90px);
    max-width: none;
    width: 100%;
    height: auto;
    min-height: 640px;
    grid-template-columns: minmax(0, 13fr) minmax(0, 7fr);
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
      "main media"
      "sub  sub"
      "cta  cta";
    column-gap: clamp(18px, 3vw, 48px);
    row-gap: 26px;
  }
}

@media (max-width: 767.98px){
  #aboutus .mainvisual-media{
    justify-self: center;
  }
}

/* Hero grid placement */
#aboutus .mainvisual-message__heading{
  grid-area: main;
  justify-self: start;
  margin: 0;
  max-width: 22ch;
}

#aboutus .mainvisual-message__text{
  grid-area: sub;
  justify-self: start;
  align-self: end;
  width: 100%;
  max-width: none;
  margin: 0;
}

#aboutus .mainvisual-cta__container{
  grid-area: cta;
  justify-self: start;
  width: auto;
  max-width: none;
  margin-top: 0;
  align-self: end;
}

#aboutus .mainvisual-cta__btn{
  width: min(520px, 100%);
  min-height: 90px;
}

@media (min-width: 768px){
  #aboutus .mainvisual-cta__btn{
    aspect-ratio: auto;
    height: 90px;
    font-size: 20px;
    white-space: nowrap;
    padding-left: 24px;
    padding-right: 24px;
  }
}

#aboutus .mainvisual-media{
  grid-area: media;
  align-self: center;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
}

#aboutus .mainvisual-media picture,
#aboutus .mainvisual-media img{
  display: block;
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px){
  #aboutus .mainvisual-media{
    max-width: none;
  }

  #aboutus .mainvisual-media img{
    width: 100%;
    max-width: 560px;
    max-height: none;
    margin-left: auto;
  }
}

.pp-section{
  position: relative;
}

.pp-section .section-heading__small{
  color: #929e9e;
  display: block;
  font-family: "Roboto Condensed";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.pp-section .section-heading__main{
  color: var(--pp-ink);
}

.pp-section--soft{
  background: linear-gradient(180deg, rgba(22,160,133,.06) 0%, rgba(255,255,255,0) 100%);
}

.pp-section--alt{
  background: linear-gradient(180deg, rgba(11,31,42,.035) 0%, rgba(255,255,255,0) 100%);
}

/* Align "運営会社について" section top spacing with other sections */
#personalmessage .Results-inner{
  padding-top: 86px;
  padding-bottom: 75px;
}

@media (min-width: 768px){
  #personalmessage .Results-inner{
    padding-bottom: 86px;
  }
}

/* Card grid (re-using existing about-functions blocks) */
.pp-section .about-functions{
  margin-top: 18px;
}

.pp-section .about-functions-item{
  position: relative;
  border-radius: 18px;
  box-shadow: var(--pp-card-shadow);
  overflow: hidden;
  transform: translateZ(0);
}

.pp-section .about-functions-item-link{
  position: relative;
  padding-top: 22px;
}

.pp-section .about-functions-item__heading{
  letter-spacing: .02em;
}

.pp-section .about-functions-item__description{
  color: var(--pp-muted);
  line-height: 1.75;
}

/* Add a subtle top accent to visually differentiate */
.pp-section .about-functions-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--pp-accent), rgba(22,160,133,.35));
  opacity: .9;
}

/* Scene specific: slightly larger balloons and relaxed layout */
.pp-section--scenes .about-functions-item-link,
.pp-section--strengths .about-functions-item-link,
.pp-section--outcomes .about-functions-item-link{
  min-height: 210px;
}

/* Panels (capabilities / reasons) */
.pp-panel{
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--pp-card-shadow);
  border: 1px solid rgba(11,31,42,.06);
}

.pp-checklist{
  margin: 0;
  padding-left: 1.2em;
}

.pp-checklist li{
  margin: 10px 0;
  color: var(--pp-muted);
}

/* Better 2-column checklist on desktop */
@media (min-width: 900px){
  .pp-checklist{
    columns: 2;
    column-gap: 40px;
  }
  .pp-checklist li{
    break-inside: avoid;
  }
}

/* Static "cards" used for outcomes (non-link) */
.pp-static{
  cursor: default;
}
.pp-static,
.pp-static:hover,
.pp-static:focus{
  text-decoration: none;
}

/* Reasons CTA */
.pp-cta{
  margin-top: 14px;
  text-align: center;
}
.pp-cta a{
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid var(--pp-accent);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  color: var(--pp-accent);
  background: rgba(22,160,133,.06);
}
.pp-cta a:hover{
  background: rgba(22,160,133,.10);
}

/* Scenes: per-item LP buttons */
.pp-scene-cta{
  margin-top: 14px;
}

.pp-scene-cta a{
  display: inline-block;
  padding: 11px 16px;
  border: 1px solid var(--pp-accent);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  color: var(--pp-accent);
  background: rgba(22,160,133,.06);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.pp-scene-cta a:hover{
  background: rgba(22,160,133,.10);
}

.pp-scene-cta--center{
  text-align: center;
  margin-top: 22px;
}

/* Scenes: match spacing rhythm with Capabilities */
.pp-section--scenes .situation-list{
  padding-top: 18px;
}

.pp-section--scenes .situation-item__imgbox{
  margin-top: 14px;
}

@media (min-width: 768px){
  .pp-section--scenes .situation-list{
    padding-top: 18px;
  }

  .pp-section--scenes .situation-item{
    align-items: stretch;
    gap: 18px;
  }

  .pp-section--scenes .situation-item__textbox,
  .pp-section--scenes .situation-item__imgbox{
    width: calc((100% - 18px) / 2);
  }

  .pp-section--scenes .situation-item__textbox{
    padding-top: 20px;
  }

  .pp-section--scenes .situation-item__imgbox{
    margin-top: 0;
  }
}

@media (max-width: 520px){
  .pp-scene-cta a{
    width: 100%;
    text-align: center;
  }
}

/* Strengths: icon cards (different from Scenes layout) */
.pp-strengths-grid{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

@media (min-width: 768px){
  .pp-strengths-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.pp-strength-card{
  display: block;
  padding: 0 18px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(11,31,42,.06);
  box-shadow: var(--pp-card-shadow);
  text-decoration: none;
  color: var(--pp-ink);
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
  overflow: hidden;
}

.pp-strength-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--pp-accent), rgba(22,160,133,.35));
  opacity: .95;
}

.pp-strength-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

.pp-strength-card__media{
  width: calc(100% + 36px);
  margin-left: -18px;
  margin-right: -18px;
  height: 210px;
  background: #f4f7f7;
  overflow: hidden;
}

@media (min-width: 768px){
  .pp-strength-card__media{
    height: 240px;
  }
}

@media (min-width: 1100px){
  .pp-strength-card__media{
    height: 280px;
  }
}

.pp-strength-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pp-strength-card__icon{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(22,160,133,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.pp-strength-card__icon img{
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.pp-strength-card__title{
  margin: 12px 0 8px;
  font-size: 18px;
  letter-spacing: .02em;
}

.pp-strength-card__desc{
  margin: 0;
  color: var(--pp-muted);
  line-height: 1.75;
}

.pp-strength-card__link{
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  color: var(--pp-accent);
}

/* Capabilities: icon cards (2x2 / responsive) */
.pp-capabilities-grid{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.pp-capability{
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(11,31,42,.06);
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.pp-capability::after{
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(22,160,133,.08);
}


.pp-capability__media{
  flex: 0 0 340px;
  height: auto;
  background: #f4f7f7;
  overflow: hidden;
  border-radius: 16px;
}

@media (min-width: 860px){
  .pp-capability__media{
    flex-basis: 460px;
    height: auto;
  }
}

@media (max-width: 620px){
  .pp-capability{
    flex-direction: column;
    gap: 14px;
    padding: 14px;
  }
  .pp-capability__media{
    flex-basis: auto;
    width: 100%;
    height: auto;
  }
}

.pp-capability__media img{
  width: 100%;
  height: auto;
  display: block;
}

.pp-capability__body{
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
  padding: 4px 6px;
}

.pp-capability__head{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.pp-capability__icon{
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(22,160,133,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
  flex: 0 0 70px;
}

.pp-capability__icon img{
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: invert(44%) sepia(48%) saturate(679%) hue-rotate(131deg) brightness(90%) contrast(91%);
}

.pp-capability__title{
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: .02em;
  color: var(--pp-ink);
  position: relative;
  z-index: 1;
}

@media (max-width: 520px){
  .pp-capability__head{ gap: 12px; }
  .pp-capability__icon{
    width: 62px;
    height: 62px;
    border-radius: 18px;
    flex-basis: 62px;
  }
  .pp-capability__title{
    font-size: 20px;
  }
}

.pp-capability__desc{
  margin: 10px 0 0;
  color: var(--pp-muted);
  line-height: 1.75;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Outcomes: benefit bands with photos (not simple) */
.pp-benefits{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pp-benefit{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(11,31,42,.06);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
}

.pp-benefit::before{
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(22,160,133,.08);
}

@media (min-width: 860px){
  .pp-benefit{
    grid-template-columns: 460px 1fr;
    gap: 18px;
    padding: 18px;
    align-items: stretch;
  }
  .pp-benefit--reverse{
    grid-template-columns: 1fr 460px;
  }
  .pp-benefit--reverse .pp-benefit__media{ order: 2; }
  .pp-benefit--reverse .pp-benefit__content{ order: 1; }
}

.pp-benefit__media{
  border-radius: 18px;
  overflow: hidden;
  background: #f4f7f7;
  min-height: 220px;
}

@media (min-width: 860px){
  .pp-benefit__media{ min-height: 280px; }
}

.pp-benefit__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pp-benefit__content{
  position: relative;
  z-index: 1;
  padding: 4px 6px;
}

.pp-benefit__head{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.pp-benefit__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(22,160,133,.14);
  color: var(--pp-accent);
  font-weight: 800;
  letter-spacing: .06em;
  font-size: 26px;
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}

.pp-benefit__title{
  margin: 0;
  font-size: 24px;
  letter-spacing: .02em;
  color: var(--pp-ink);
}

@media (max-width: 520px){
  .pp-benefit__badge{
    width: 62px;
    height: 62px;
    font-size: 24px;
  }
  .pp-benefit__title{
    font-size: 20px;
  }
}

.pp-benefit__lead{
  margin: 10px 0 12px;
  color: var(--pp-muted);
  line-height: 1.75;
  font-weight: 600;
}

.pp-benefit__list{
  margin: 0;
  padding-left: 1.2em;
  color: var(--pp-muted);
}

.pp-benefit__list li{
  margin: 10px 0;
  line-height: 1.7;
}

/* Reasons: photo cards + strong CTA band */
.pp-reasons{
  margin-top: 18px;
}

.pp-reasons-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 860px){
  .pp-reasons-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.pp-reason-card{
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(11,31,42,.06);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  overflow: hidden;
  position: relative;
  padding: 0 18px 16px;
}

.pp-reason-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--pp-accent), rgba(22,160,133,.35));
}

.pp-reason-card__media{
  width: calc(100% + 36px);
  margin-left: -18px;
  margin-right: -18px;
  height: 200px;
  background: #f4f7f7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px;
}

.pp-reason-card__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 360px;
  max-height: 180px;
  display: block;
}

.pp-reason-card__icon{
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: rgba(22,160,133,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -27px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.pp-reason-card__icon img{
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.pp-reason-card__tag{
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11,31,42,.70);
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 12px;
}

.pp-reason-card__title{
  margin: 10px 0 0;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: .02em;
  color: var(--pp-ink);
}

.pp-reason-card__desc{
  margin: 10px 0 0;
  color: var(--pp-muted);
  line-height: 1.75;
  font-weight: 600;
}

.pp-reasons-cta{
  margin-top: 18px;
}

.pp-panel--cta{
  background: linear-gradient(90deg, rgba(22,160,133,.12) 0%, rgba(255,255,255,1) 55%);
}

.pp-reasons-cta__title{
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--pp-ink);
}

.pp-reasons-cta__desc{
  margin: 0 0 14px;
  color: var(--pp-muted);
  line-height: 1.75;
}

/* Flow: timeline */
.pp-flow{
  margin-top: 18px;
  --pp-flow-no-size: 70px;
}

.pp-flow-timeline{
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pp-flow-timeline::before{
  content: "";
  position: absolute;
  left: calc((var(--pp-flow-no-size) / 2) - 1px);
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(22,160,133,.35), rgba(22,160,133,.10));
}

.pp-flow-step{
  display: grid;
  grid-template-columns: var(--pp-flow-no-size) 1fr;
  gap: 14px;
  align-items: center;
  position: relative;
}

.pp-flow-step__no{
  width: var(--pp-flow-no-size);
  height: var(--pp-flow-no-size);
  border-radius: 20px;
  background: #def2ee;
  color: var(--pp-accent);
  font-weight: 800;
  font-family: "Roboto Condensed", "Noto Sans CJK JP", sans-serif;
  letter-spacing: .06em;
  font-size: 26px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
  position: relative;
  z-index: 2;
}

.pp-flow-step__card{
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(11,31,42,.06);
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
  padding: 16px 16px 14px;
  position: relative;
  overflow: hidden;
}

.pp-flow-step__card::before{
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(22,160,133,.07);
}

/* FAQ */
.pp-faq-list{
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

/* Match the Flow section container width (about-inner). */
#faq .pp-panel{
  max-width: none;
  margin: 0;
}

.pp-faq-q{
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: .02em;
  color: var(--pp-ink);
}

.pp-faq-a{
  margin: 10px 0 0;
  color: var(--pp-muted);
  line-height: 1.75;
  font-weight: 600;
}

#contact > .contact-inner > .contact-tagline{
  margin: 18px 0 0;
  color: var(--pp-muted);
  line-height: 1.75;
  font-weight: 600;
}

#contact .privacy-head{
  margin: 28px 0 0;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: .02em;
  color: var(--pp-ink);
}

#contact .privacy-text{
  margin-top: 10px;
  color: var(--pp-muted);
  line-height: 1.75;
  font-weight: 600;
}

.pp-flow-step__icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(22,160,133,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.pp-flow-step__icon img{
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.pp-flow-step__title{
  margin: 10px 0 0;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: .02em;
  color: var(--pp-ink);
  position: relative;
  z-index: 1;
}

.pp-flow-step__desc{
  margin: 10px 0 0;
  color: var(--pp-muted);
  line-height: 1.75;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.pp-flow-cta{
  margin-top: 18px;
}

@media (max-width: 520px){
  #contact .privacy-head{
    font-size: 20px;
  }
  .pp-faq-q{
    font-size: 20px;
  }
  .pp-reason-card__title,
  .pp-flow-step__title{
    font-size: 20px;
  }
  .pp-flow{
    --pp-flow-no-size: 62px;
  }
  .pp-flow-step{
    gap: 12px;
  }
  .pp-flow-step__no{
    border-radius: 20px;
    font-size: 24px;
  }
}
