.intro {
  width: 100%;
  padding-bottom: min(7.5vw, 80px);
  background: #fff;
}
.intro__ttl {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.intro__ttl span {
  font: inherit;
  color: #F48597;
}
.intro__content {
  width: 100%;
  padding: 40px 60px;
  border: 4px solid #E5EAEF;
  border-radius: 40px;
}
.intro__txt {
  font-size: 18px;
  color: #555555;
  font-weight: 500;
  line-height: 1.8;
}
.intro__txt span {
  font: inherit;
  color: #F48597;
  font-weight: 700;
}
.intro__txt + .intro__txt {
  margin-top: 18px;
}

@media screen and (max-width: 768px) {
  .intro {
    padding-bottom: min(16vw, 80px);
  }
  .intro__ttl {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 2.5;
  }
  .intro__ttl span {
    display: block;
    font-size: 28px;
    line-height: 1.5;
  }
  .intro__content {
    padding: 20px;
    border-radius: 20px;
  }
  .intro__txt {
    font-size: 16px;
  }
  .intro__txt + .intro__txt {
    margin-top: 16px;
  }
}
.strength {
  position: relative;
  width: 100%;
  padding-block: min(18.76vw, 200px) min(7.5vw, 80px);
  background: #fff;
}
.strength::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: min(30vw, 310px);
  background: url("../images/about/strength_bg_pc.jpg") no-repeat top center/100% auto;
  pointer-events: none;
}
.strength__body {
  position: relative;
  width: 100%;
  padding: 60px 50px 0;
  border-radius: 60px 60px 0 0;
  background: #fff;
}
.strength .c-section-head {
  margin-bottom: 36px;
}
.strength__lead {
  margin-bottom: 64px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.strength__groups {
  display: grid;
  align-items: start;
  justify-content: start;
  row-gap: 74px;
  counter-reset: group;
}
.strength__group {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
.strength__group:nth-child(even) {
  flex-direction: row-reverse;
}
.strength__img, .strength__steps {
  flex: 0 0 320px;
}
.strength__img {
  overflow: hidden;
  border-radius: 40px;
}
.strength__img img {
  pointer-events: none;
}
.strength__steps {
  display: grid;
  align-items: start;
  justify-content: start;
  row-gap: 10px;
  padding: 24px;
  border-radius: 40px;
  background: linear-gradient(180deg, #FFCBEB, #FFFCD9);
  counter-reset: step;
}
.strength__step {
  position: relative;
  padding: 14px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  counter-increment: step;
}
.strength__step::before {
  content: "Step " counter(step, decimal-leading-zero);
  position: absolute;
  top: 8%;
  left: 10%;
  transform: translate(-50%, -50%) rotate(-10deg);
  font-family: "Courgette", cursive;
  font-size: 22px;
  pointer-events: none;
}
.strength__step-ttl {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}
.strength__step-txt {
  font-size: 13px;
  color: #888888;
  font-weight: 500;
  line-height: 1.6;
}
.strength__step:first-child::before {
  color: rgba(244, 133, 151, 0.2);
}
.strength__step:first-child .strength__step-ttl {
  color: #F48597;
}
.strength__step:nth-child(2)::before {
  color: rgba(244, 154, 133, 0.2);
}
.strength__step:nth-child(2) .strength__step-ttl {
  color: #F49A85;
}
.strength__step:last-child::before {
  color: rgba(255, 165, 21, 0.2);
}
.strength__step:last-child .strength__step-ttl {
  color: #FFA515;
}
.strength__content {
  flex: 1;
}
.strength__content > * + * {
  margin-top: 20px;
}
.strength__ttl {
  position: relative;
  z-index: 0;
  margin-bottom: 32px;
  font-size: 28px;
  color: #F48597;
  font-weight: 700;
  line-height: 1.5;
  counter-increment: group;
}
.strength__ttl::before {
  content: counter(group, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  z-index: -1;
  font-family: "Figtree", sans-serif;
  font-size: 140px;
  color: rgba(244, 133, 151, 0.1);
  font-weight: 700;
  pointer-events: none;
}
.strength__txt {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
}
.strength__list {
  display: grid;
  align-items: start;
  justify-content: start;
  row-gap: 10px;
  padding: 20px;
  border-radius: 20px;
  background: #F7F7F7;
}
.strength__list-row {
  display: grid;
  grid-template-columns: 15% 1fr;
  align-items: start;
  justify-content: start;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.strength__list-term {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: 16px;
  color: #555555;
  font-weight: 700;
  line-height: 1.575;
}
.strength__list-icon {
  flex: 0 0 18px;
  color: #F48597;
}
.strength__list-desc {
  font-size: 14px;
  color: #555555;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .strength {
    padding-block: min(26.66vw, 133px) min(13.33vw, 67px);
  }
  .strength::before {
    height: min(48vw, 240px);
    background: url("../images/about/strength_bg_sp.jpg") no-repeat top center/100% auto;
  }
  .strength__body {
    position: relative;
    z-index: 0;
    padding: 40px 0 0;
    border-radius: 0;
    background: transparent;
  }
  .strength__body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 111.11%;
    height: 100%;
    border-radius: 30px 30px 0 0;
    background: #fff;
  }
  .strength .c-section-head {
    margin-bottom: 27px;
  }
  .strength__lead {
    margin-bottom: 42px;
    font-size: 16px;
  }
  .strength__groups {
    display: grid;
    row-gap: 43px;
  }
  .strength__group {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    row-gap: 20px;
  }
  .strength__group:nth-child(even) {
    flex-direction: column-reverse;
  }
  .strength__img, .strength__steps {
    flex: 1;
    width: 300px;
    margin-inline: auto;
  }
  .strength__steps {
    padding: 22px;
  }
  .strength__step::before {
    font-size: 20px;
  }
  .strength__step-ttl {
    font-size: 15px;
  }
  .strength__step-txt {
    font-size: 12px;
  }
  .strength__content {
    flex: 1;
  }
  .strength__content > * + * {
    margin-top: 16px;
  }
  .strength__ttl {
    margin-bottom: 24px;
    font-size: 18px;
  }
  .strength__ttl::before {
    font-size: 100px;
  }
  .strength__txt {
    font-size: 14px;
  }
  .strength__list {
    display: grid;
    row-gap: 16px;
    padding: 24px;
  }
  .strength__list-row {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
  .strength__list-term {
    font-size: 14px;
  }
  .strength__list-icon {
    flex: 0 0 16px;
  }
}
.step {
  width: 100%;
  padding-block: min(5.62vw, 60px) min(7.5vw, 80px);
  background: linear-gradient(180deg, rgba(255, 203, 235, 0.6), rgba(255, 252, 217, 0.6));
}
.step .c-section-head {
  margin-bottom: 36px;
}
.step__lead {
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.step__body {
  width: 100%;
  padding: 60px;
  margin-bottom: 48px;
  border-radius: 40px;
  background: #fff;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}
.step__group + .step__group {
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid #EFEFEF;
}
.step__ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 32px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
.step__ttl-icon {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 100%;
}
.step__ttl-icon svg {
  width: 22px;
}
.step__txt {
  margin-bottom: 40px;
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
}
.step__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  justify-content: start;
  -moz-column-gap: 57px;
       column-gap: 57px;
  counter-reset: step;
}
.step__item {
  position: relative;
  counter-increment: step;
}
.step__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translate(100%, -50%);
  width: 25px;
  aspect-ratio: 1/4;
  clip-path: polygon(7% 0, 100% 50%, 7% 100%, 0 100%, 93% 50%, 0 0);
}
.step__item:last-child::before {
  display: none;
}
.step__item-ttl {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}
.step__item-ttl::before {
  content: counter(step, decimal-leading-zero) ". ";
  font: inherit;
  color: inherit;
}
.step__item-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
}
.step__group--search .step__ttl-icon {
  background: rgba(244, 133, 151, 0.1);
}
.step__group--search .step__ttl-icon svg {
  color: #F48597;
}
.step__group--search .step__item::before {
  background: #F48597;
}
.step__group--search .step__item-ttl {
  color: #F48597;
}
.step__group--consult .step__ttl-icon {
  background: rgba(255, 165, 21, 0.1);
}
.step__group--consult .step__ttl-icon svg {
  color: #FFA515;
}
.step__group--consult .step__item::before {
  background: #FFA515;
}
.step__group--consult .step__item-ttl {
  color: #FFA515;
}
.step__actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  width: 860px;
  margin-inline: auto;
}
.step__action-link {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
  will-change: opacity;
}
.step__action-icon {
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.2);
}
.step__action-icon svg {
  width: 32px;
  color: #fff;
}
.step__action-content {
  flex: 1;
}
.step__action-lead, .step__action-txt {
  display: block;
  color: #fff;
  font-weight: 700;
}
.step__action-lead {
  margin-bottom: 15px;
  font-size: 12px;
}
.step__action-txt {
  font-size: 18px;
}
.step__action-arrow {
  width: 30px;
  color: #fff;
}
.step .step__action--search .step__action-link {
  background: #F48597;
}
.step .step__action--consult .step__action-link {
  background: #FFA515;
}

@media screen and (max-width: 768px) {
  .step {
    padding-block: min(10.66vw, 53px) min(13.33vw, 67px);
  }
  .step .c-section-head {
    margin-bottom: 27px;
  }
  .step__lead {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .step__body {
    padding: 20px;
    margin-bottom: 32px;
    border-radius: 20px;
  }
  .step__group + .step__group {
    padding-top: 24px;
    margin-top: 24px;
  }
  .step__ttl {
    display: flex;
    -moz-column-gap: 16px;
         column-gap: 16px;
    margin-bottom: 24px;
    font-size: 18px;
  }
  .step__ttl-icon {
    flex: 0 0 32px;
  }
  .step__ttl-icon svg {
    width: 17px;
  }
  .step__txt {
    margin-bottom: 32px;
    font-size: 14px;
  }
  .step__list {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    row-gap: 40px;
  }
  .step__item::before {
    top: auto;
    bottom: -7.5px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 100%);
    width: 100px;
    aspect-ratio: 4/1;
    clip-path: polygon(0 0, 50% 95%, 100% 0, 100% 5%, 50% 100%, 0 5%);
  }
  .step__actions {
    display: grid;
    -moz-column-gap: 15px;
         column-gap: 15px;
    width: 100%;
  }
  .step__action-link {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    height: 100%;
    padding: 10px;
  }
  .step__action-icon {
    flex: 1;
    width: 40px;
    margin-inline: auto;
  }
  .step__action-icon svg {
    width: 22px;
  }
  .step__action-content {
    text-align: center;
  }
  .step__action-lead {
    margin-bottom: 5px;
    line-height: 1.5;
  }
  .step__action-txt {
    font-size: 16px;
    line-height: 1.375;
  }
  .step__action-arrow {
    width: 20px;
  }
}
@media (hover: hover) {
  .step__action-link:hover,
  .step__action-link:focus-visible {
    opacity: 0.6;
  }
}
.message {
  width: 100%;
  padding-block: min(9.38vw, 100px);
  background: #fff;
}
.message__img {
  margin-bottom: 60px;
  border-radius: 40px;
  overflow: hidden;
}
.message__img img {
  pointer-events: none;
}
.message__head {
  margin-bottom: 42px;
  text-align: center;
}
.message__en {
  margin-bottom: 20px;
  font-family: "Figtree", sans-serif;
  font-size: 68px;
  color: #14A4F0;
  font-weight: 700;
}
.message__ja {
  font-size: 24px;
  color: #14A4F0;
  font-weight: 700;
  line-height: 1.5;
}
.message__content {
  width: 680px;
  margin-inline: auto;
}
.message__txt {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
}
.message__txt + .message__txt {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .message {
    padding-block: min(16vw, 80px) min(21.33vw, 106px);
  }
  .message__img {
    margin-bottom: 32px;
    border-radius: 20px;
  }
  .message__head {
    margin-bottom: 32px;
  }
  .message__en {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .message__ja {
    font-size: 22px;
  }
  .message__content {
    width: 100%;
  }
  .message__txt {
    font-size: 14px;
  }
  .message__txt + .message__txt {
    margin-top: 14px;
  }
}
/*# sourceMappingURL=about.css.map */
