/**
@media screen and (max-width: 767px) {
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
}
@media screen and (min-width: 1280px) and (max-width: 1519px) {
}
@media screen and (min-width: 1520px) and (max-width: 1759px){
}
@media screen and (min-width: 1760px) {
}
 */

 /*  p-intro
 --------------------------------------------- */
 .p-intro {
  font-family: var(--ff-zen);

  @media screen and (min-width: 1024px) {
    padding-right: 107px;
    padding-left: 97px;
  }
}

.p-intro__ttl {
  display: grid;
  place-items: center;
  text-align: center;
}

.p-intro__ttl-label {
  margin-top: 25px;
  font-size: 30px;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: 0.1em;

  @media screen and (max-width: 767px) {
    font-size: 26px;
  }
 }

 .p-intro__lead {
  margin-top: 50px;
  font-size: 20px;
  color: var(--color-accent);
  font-weight: bold;
  line-height: 2.4;
  text-align: center;

  @media screen and (max-width: 767px) {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.8;
  }
 }

 .p-intro__note {
   font-size: 14px;
   font-weight: 500;
   text-align: center;
   line-height: 1.8;

   @media screen and (max-width: 767px) {
    margin-top: 5px;
    text-align: left;
  }
 }

 .p-intro__body {
  position: relative;

  @media screen and (min-width: 768px) {
    padding-right: calc(100px + 10px);
    padding-left: calc(100px + 10px);
  }

  @media screen and (min-width: 1280px) {
    padding-left: calc(169px + 10px);
    padding-right: calc(165px + 10px);
  }
 }

 .p-intro__obj-wrap {


  @media screen and (max-width: 767px) {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 250px;
    margin-top: 30px;
    margin-inline: auto;
  }
 }

 .p-intro__obj-1 {
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 169px;
  height: auto;

  @media screen and (max-width: 1279px) {
    width: 100px;
  }

  @media screen and (max-width: 767px) {
    position: static;
    width: 70px;
  }
 }

.p-intro__obj-2 {
  position: absolute;
  bottom: -24px;
  right: 0;
  width: 165px;
  height: auto;

  @media screen and (max-width: 1279px) {
    width: 100px;
  }

  @media screen and (max-width: 767px) {
    position: static;
    width: 70px;
  }
 }

 /*  p-feature-block
 --------------------------------------------- */
 .p-feature-block {
   padding: 50px 50px 30px;
   background: var(--color-tertiary);
   border-radius: 10px;
   font-family: var(--ff-zen);

  @media screen and (max-width: 767px) {
    padding: 15px 20px 20px;
  }
 }

 .p-feature-block__head {
  display: flex;
  align-items: center;
  column-gap: min(40px, calc(40 / 440 * 100%));

  @media screen and (max-width: 767px) {
    column-gap: 20px;
  }
 }

 .p-feature-block__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 120px;
  aspect-ratio: 1 / 1;
  background-color: var(--color-white);
  border-radius: 10px;

  @media screen and (max-width: 767px) {
    width: 40px;
  }

  img {
    @media screen and (max-width: 767px) {
      zoom: 0.4;
    }
  }
 }

 .p-feature-block__ttl {
  font-size: 26px;
  font-weight: bold;
  color: var(--color-primary);
  line-height: 1.6;
  letter-spacing: 0.1em;

  @media screen and (min-width: 768px) and (max-width: 1279px) {
    font-size: 20px;
  }

  @media screen and (max-width: 767px) {
    font-size: 18px;
  }

  .large {
    font-size: calc(40 / 26 * 1em);
    color: var(--color-accent);
  }
 }

 .p-feature-block__lead {
  margin-top: 33px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;

  @media screen and (max-width: 767px) {
    margin-top: 20px;
    font-size: 14px;
  }
 }

 .p-feature-block__note {
  margin-top: 0.7em;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
 }

 /*  p-question-box
--------------------------------------------- */
.p-question-box {
  position: relative;
  border: 1px solid var(--color-gray-2);
  border-radius: 10px;
  padding-top: 44px;
  padding-bottom: 54px;
  padding-inline: 20px;
  max-width: 1080px;
  margin-inline: auto;
  font-family: var(--ff-zen);

  @media screen and (max-width: 767px) {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.p-question-box__triangle {
  position: absolute;
  z-index: 1;
  bottom: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);

  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  background-color: var(--color-gray-2);
  width: 30px;
  height: 30px;

  &::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: var(--color-white);
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
  }
}

.p-question-box__ttl {
  width: fit-content;
  margin-inline: auto;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.1em;

  @media screen and (max-width: 767px) {
    font-size: 17px;
  }
}

.p-question-box__answer {
  width: fit-content;
  margin-inline: auto;
  margin-top: 23px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
  color: var(--color-accent);

  @media screen and (max-width: 767px) {
    margin-top: 20px;
    font-size: 18px;
  }
}

.p-question-box__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  width: fit-content;
  margin-top: 9px;
  margin-inline: auto;

  @media screen and (max-width: 767px) {
    display: block;
    width: auto;
  }
}

.p-question-box__item {
  font-size: 16px;
  line-height: 1.8;
  font-weight: bold;

  span {
    font-size: calc(14 / 16 * 1em);
    font-weight: normal;
  }
}

.p-question-box__note-list {
  width: fit-content;
  margin-top: 14px;
  margin-inline: auto;

  @media screen and (max-width: 767px) {
    width: auto;
  }
}

.p-question-box__note-item {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
  line-height: 1.8;
}


/* p-title-slash
--------------------------------------------- */
.p-title-slash {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1em;

  @media screen and (max-width: 767px) {
    zoom: 0.8;
  }


  svg {
    position: relative;
    top: .2em;
  }
}

/*  p-extension
--------------------------------------------- */
.p-extension {
  display: flex;
  flex-direction: row-reverse;
  gap: calc(80 / 817 * 100%);
  max-width: 817px;
  margin-inline: auto;
  line-height: 1.8;

  @media screen and (max-width: 767px) {
    display: block;
  }
}

.p-extension__ttl {
  font-size: 20px;
  font-weight: bold;
}

.p-extension__txt {
  margin-top: 11px;
  font-size: 16px;
  font-weight: 500;

  @media screen and (max-width: 767px) {
    margin-top: 15px;
  }

  & + & {
    margin-top: 0.6em;
  }
}

.p-extension__img {
  @media screen and (max-width: 767px) {
    flex-shrink: 0;
    display: block;
    width: fit-content;
    margin-top: 20px;
    margin-inline: auto;
  }
}


/*  p-block-fuzui
--------------------------------------------- */
.p-block-fuzui {
  display: grid;
  grid-template-columns: calc(600 / 1200 * 100%) auto;
  border-radius: 10px;
  overflow: hidden;
  font-family: var(--ff-zen);
  background-color: var(--color-tertiary);

  @media screen and (max-width: 1279px) {
    display: block;
  }
}

.p-block-fuzui__left {
  padding-right: 40px;

  @media screen and (max-width: 1279px) {
    padding-right: 20px;
  }
}

.p-block-fuzui__ttl {
  padding-block: 28px;
  padding-inline: 60px 2em;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  border-radius: 0 0 100px 0;

  @media screen and (max-width: 1279px) {
    padding-block: 15px;
    padding-inline: 20px 2em;
    font-size: 20px;
  }
}

.p-block-fuzui__txt-wrap {
  padding-left: 60px;
  padding-bottom: 47px;

  @media screen and (max-width: 1279px) {
    padding-bottom: 0;
    padding-left: 20px;
  }
}

.p-block-fuzui__txt {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;

  @media screen and (max-width: 1279px) {
    margin-top: 20px;
  }

  & + & {
    margin-top: 0.7em;
  }
}

.p-block-fuzui__right {
  padding-top: 40px;
  padding-right: 74px;
  padding-left: 26px;

  @media screen and (max-width: 1279px) {
    padding-bottom: 40px;
    padding-inline: 20px;
  }
}

.p-block-fuzui__ttl-2 {
  padding-block: 11px;
  font-size: 20px;
  color: var(--color-primary);
  background-color: var(--color-white);
  text-align: center;
  border-radius: 30px;
  letter-spacing: 0.1em;
  line-height: 1.4;

  @media screen and (max-width: 1279px) {
    font-size: 18px;
    padding-inline: 20px;
  }
}

.p-block-fuzui__dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  margin-top: 24px;

  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
    row-gap: 30px;
    margin-top: 30px;
  }
}

.p-block-fuzui__dt {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-secondary);
  letter-spacing: 0.1em;
  text-align: center;
}

.p-block-fuzui__dd {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  display: block;
  width: fit-content;
  margin-inline: auto;
}
