@charset "utf-8";

/* =============================================================

fv

*  ============================================================= */

.fv {
  position: relative;
  min-height: 760px;
  padding: 180px 0 0;
  overflow: hidden;
}

.fv::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -80px;
  z-index: 0;
  width: min(760px, 58vw);
  height: 360px;
  background: radial-gradient(
    circle at 38% 58%,
    rgba(221, 132, 33, 0.14) 0%,
    rgba(221, 132, 33, 0.08) 26%,
    rgba(221, 132, 33, 0.03) 42%,
    transparent 58%
  );
  transform: translateX(-560px);
  pointer-events: none;
}

.fv__inner {
  position: relative;
  z-index: 2;
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
}

.fv__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 28px;
  border-radius: 999px;
  color: #dd8421;
  font-size: 1.3rem;
  font-weight: 500;
  background-color: #fff;
}

.fv__title {
  margin-top: 24px;
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1.32;
}

.fv__body {
  margin-top: 40px;
}

.fv__lead {
  padding-bottom: 48px;
}

.fv__text {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

.fv__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 320px;
  height: 56px;
  margin-top: 96px;
  padding: 0 20px;
  border: 2px solid #fff;
  border-radius: 56px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background-image: linear-gradient(
    90deg,
    rgba(245, 151, 0, 1),
    rgba(245, 170, 0, 1)
  );
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.fv__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #fff;
  transform: translateY(-50%);
}

.fv__button:hover {
  opacity: 0.78;
  transform: translateY(-2px);
}

/* =============================================================

FV candidate background animation

*  ============================================================= */

.fv__candidate-animation {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 91.25%;
  max-width: 1280px;
  height: 100%;
  overflow: visible;
  transform: translateX(-50%);
  pointer-events: none;
}

.candidate-flow {
  position: absolute;
  z-index: 1;
  top: 320px;
  right: -240px;
  width: 760px;
  height: 650px;
  pointer-events: none;
  transform: rotate(-31deg);
  transform-origin: center;
}

.flow-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.card-column {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 26px;
}

.card-column:nth-child(odd) {
  transform: translateY(74px);
}

.card-column:nth-child(even) {
  transform: translateY(0);
}

.candidate-card {
  position: relative;
  width: 210px;
  min-height: 122px;
  padding: 15px 15px 13px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0.58;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  will-change: transform, opacity;
}

.candidate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    transparent 46%
  );
  pointer-events: none;
}

.candidate-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.candidate-name {
  color: rgba(0, 0, 0, 0.72);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.candidate-score {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  color: #c9781b;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  white-space: nowrap;
  background: rgba(221, 132, 33, 0.16);
}

.candidate-career {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.candidate-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.candidate-tags span {
  padding: 4px 7px;
  border-radius: 999px;
  color: rgba(0, 0, 0, 0.44);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.045);
}

.candidate-card.is-picked {
  z-index: 20;
  opacity: 1;
  border-color: rgba(221, 132, 33, 0.46);
  box-shadow:
    0 0 0 1px rgba(221, 132, 33, 0.18),
    0 24px 60px rgba(221, 132, 33, 0.2),
    0 18px 42px rgba(0, 0, 0, 0.07);
  animation: pickCandidate 1.75s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.candidate-card.is-picked::after {
  content: "候補者をピックアップ";
  position: absolute;
  top: -34px;
  left: 18px;
  display: flex;
  align-items: center;
  height: 24px;
  padding: 0 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  background: rgba(221, 132, 33, 0.92);
  box-shadow: 0 8px 20px rgba(221, 132, 33, 0.24);
  opacity: 0;
  animation: pickLabel 1.75s ease forwards;
}

.candidate-card.is-removed {
  visibility: hidden;
  opacity: 0;
}

@keyframes pickCandidate {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  18% {
    opacity: 1;
    transform: translate3d(-8px, -18px, 0) scale(1.04);
  }

  48% {
    opacity: 1;
    transform: translate3d(-14px, -44px, 0) scale(1.07);
  }

  100% {
    opacity: 0;
    transform: translate3d(-20px, -112px, 0) scale(1.02);
  }
}

@keyframes pickLabel {
  0%,
  10% {
    opacity: 0;
    transform: translateY(6px);
  }

  28%,
  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

.pickup-glow {
  position: absolute;
  z-index: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(221, 132, 33, 0.18) 0%,
    rgba(221, 132, 33, 0.06) 36%,
    transparent 70%
  );
  opacity: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.pickup-glow.is-active {
  animation: glowPulse 1.35s ease forwards;
}

@keyframes glowPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.65);
  }

  35% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.35);
  }
}

/* =============================================================

responsive

*  ============================================================= */

@media (min-width: 1440px) {
  .candidate-flow {
    right: -120px;
  }
}

@media (max-width: 1200px) {
  .candidate-flow {
    right: -220px;
    width: 720px;
  }
}

@media (max-width: 1024px) {
  .fv__inner {
    padding-left: 0;
  }
}

@media (max-width: 960px) {
  .fv {
    min-height: auto;
    padding: 120px 0 144px;
    overflow: hidden;
  }

  .fv::before {
    left: -120px;
    bottom: -80px;
    width: 620px;
    height: 300px;
    transform: none;
  }

  .fv__inner {
    max-width: 560px;
  }

  .fv__title {
    margin-top: 32px;
    font-size: 3.6rem;
    line-height: 1.42;
  }

  .fv__body {
    grid-template-columns: 1fr;
    row-gap: 56px;
    margin-top: 32px;
  }

  .fv__lead {
    padding-bottom: 0;
  }

  .fv__text {
    font-size: 1.5rem;
    line-height: 2;
  }

  .fv__button {
    width: 100%;
    max-width: 320px;
    margin-top: 56px;
  }

  .fv__candidate-animation {
    left: 0;
    width: 100%;
    max-width: none;
    transform: none;
  }

  .candidate-flow {
    top: 430px;
    right: -420px;
    width: 720px;
  }

  .candidate-card.is-picked,
  .candidate-card.is-picked::after,
  .pickup-glow.is-active {
    animation: none;
  }
}

@media (max-width: 480px) {
  .fv__label {
    background-color: #fff;
  }

  .fv__title {
    font-size: 9.6vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .candidate-card.is-picked,
  .candidate-card.is-picked::after,
  .pickup-glow.is-active {
    animation: none;
  }
}

/* =============================================================

issues

*  ============================================================= */

.issues {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  min-height: 720px;
  padding: 160px 0 80px;
  color: #fff;
  background-image: url("../img/home/issues-bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.issues__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../img/home/issues-bg-wmn.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 100%;
  pointer-events: none;
  max-width: 1280px;
  margin: 0 auto;
}

.issues__inner {
  z-index: 1;
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
}

.issues__label {
  color: #fff;
  font-family: "Gabarito", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.issues__title {
  margin-top: 5px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.08em;
}

.issues__list {
  position: relative;
  margin-left: 16px;
  margin-top: 50px;
  padding-left: 40px;
}

.issues__list::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 4px;
  width: 1px;
  height: 260px;
  background-color: #fff;
}

.issues__list::after {
  content: "";
  position: absolute;
  top: -44px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #fff;
}

.issues__item {
  position: relative;
  min-height: 40px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.issues__item + .issues__item {
  margin-top: 24px;
}

.issues__item::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: -40px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-50%);
}

.issues__item:last-child::after {
  content: "";
  position: absolute;
  left: -36px;
  top: 0.8em;
  width: 1px;
  height: 59px;
  background-image: linear-gradient(
    to bottom,
    #fff 0,
    #fff 24px,
    transparent 24px,
    transparent 34px,
    #fff 34px,
    #fff 44px,
    transparent 44px,
    transparent 54px,
    #fff 54px,
    #fff 59px
  );
}

.issues__message {
  margin-top: 64px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

@media (max-width: 1200px) {
  .issues__title {
    font-size: 3.8rem;
  }

  .issues__item {
    font-size: 2rem;
  }

  .issues__message {
    font-size: 3rem;
  }
}

@media (max-width: 960px) {
  .issues {
    min-height: auto;
    padding: 88px 0 80px;
    background-position: right center;
  }

  .issues__bg {
    display: none;
  }

  .issues__inner {
    max-width: 560px;
  }

  .issues__title {
    margin-top: 16px;
    font-size: 3.2rem;
    line-height: 1.5;
  }

  .issues__list {
    margin-left: 0;
    margin-top: 40px;
    padding-left: 32px;
  }

  .issues__list::before,
  .issues__list::after {
    display: none;
  }

  .issues__item {
    min-height: auto;
    font-size: 1.8rem;
    line-height: 1.7;
  }

  .issues__item + .issues__item {
    margin-top: 20px;
  }

  .issues__item::before {
    top: 0.85em;
    left: -32px;
    width: 8px;
    height: 8px;
  }

  .issues__item:last-child::after {
    display: none;
  }

  .issues__message {
    margin-top: 48px;
    font-size: 2.4rem;
    line-height: 1.7;
  }

  .issues__message br {
    display: none;
  }
}

@media (max-width: 480px) {
  .issues {
    padding: 72px 0 64px;
    background-position: right center;
  }

  .issues__title {
    font-size: 8vw;
  }

  .issues__list {
    margin-top: 64px;
  }

  .issues__item {
    font-size: 5.2vw;
    line-height: 1.4;
  }

  .issues__item + .issues__item {
    margin-top: 40px;
  }

  .issues__message {
    margin-top: 64px;
    font-size: 5.6vw;
  }
}

/* =============================================================

workflow

*  ============================================================= */

.workflow {
  padding-top: 160px;
}

.workflow__inner {
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
}

.workflow__head {
  display: flex;
  align-items: flex-end;
  column-gap: 20px;
}

.workflow__title {
  flex: 0 0 auto;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.32;
}

.workflow__title span {
  color: #f5aa00;
}

.workflow__lead {
  font-size: 1.4rem;
  line-height: 2;
}

.workflow__body {
  margin-top: 80px;
}

.workflow__label {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0;
  color: #dd8421;
  font-family: "Gabarito", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.workflow__label img {
  display: block;
  width: 184px;
  height: auto;
  margin-top: 0;
}

.workflow__scroll {
  margin-top: 32px;
}

.workflow__flow {
  width: 100%;
}

/* =============================================================

screening flow animation base

*  ============================================================= */

.screening-flow {
  width: 970px;
  height: 240px;
  background: transparent;
  overflow: hidden;
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic",
    "YuGothic", "Meiryo", sans-serif;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.04em;
}

.screening-flow__svg {
  display: block;
  width: 970px;
  height: 240px;
}

.stage {
  opacity: 0.42;
  transform-box: fill-box;
  transform-origin: center;
}

.stage-card {
  fill: #fff;
  stroke: rgba(245, 151, 0, 0.2);
  stroke-width: 1.4;
  filter: url(#softShadow);
}

.stage-title {
  font-size: 17px;
  font-weight: 700;
  fill: #000;
  letter-spacing: 0.04em;
}

.flow-line {
  fill: none;
  stroke: rgba(245, 151, 0, 0.26);
  stroke-width: 2;
  stroke-linecap: round;
}

.flow-dot {
  fill: #f59700;
  opacity: 0;
}

.doc rect,
.chip-bg,
.axis-chip,
.result-doc {
  fill: #f7f7f7;
  stroke: rgba(0, 0, 0, 0.08);
  stroke-width: 1;
}

.doc path {
  fill: none;
  stroke: rgba(0, 0, 0, 0.34);
  stroke-width: 3;
  stroke-linecap: round;
}

.doc-label,
.chip-text,
.axis-text,
.score-label,
.result-text {
  fill: #000;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.doc-label {
  font-size: 10.5px;
}

.doc {
  opacity: 1;
}

.summary-group,
.axis-group,
.score-group,
.result-paper {
  opacity: 0;
}

.chip-dot {
  fill: #f59700;
}

.chip-text {
  font-size: 11.5px;
}

.axis-check {
  fill: #f59700;
}

.axis-checkmark {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.axis-text {
  font-size: 11.5px;
}

.score-percent {
  fill: #f59700;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
}

.score-bar-bg {
  fill: rgba(0, 0, 0, 0.1);
}

.score-bar-fill {
  fill: #f59700;
  transform-box: fill-box;
  transform-origin: left center;
  transform: scaleX(0);
}

.score-label {
  font-size: 11.5px;
}

.score-value {
  fill: #f59700;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.result-paper {
  transform-box: fill-box;
  transform-origin: center;
}

.rank-mark {
  fill: #f59700;
}

.rank-letter {
  font-size: 13px;
  font-weight: 700;
  fill: #fff;
  letter-spacing: 0;
}

.result-text {
  font-size: 9.8px;
}

/* =============================================================

screening flow animation trigger

*  ============================================================= */

.workflow.is-animated .stage-1 {
  animation: stage1 22s ease-in-out forwards;
}

.workflow.is-animated .stage-2 {
  animation: stage2 22s ease-in-out forwards;
}

.workflow.is-animated .stage-3 {
  animation: stage3 22s ease-in-out forwards;
}

.workflow.is-animated .stage-4 {
  animation: stage4 22s ease-in-out forwards;
}

.workflow.is-animated .stage-5 {
  animation: stage5 22s ease-in-out forwards;
}

.workflow.is-animated .stage-1 .stage-card {
  animation: card1 22s ease-in-out forwards;
}

.workflow.is-animated .stage-2 .stage-card {
  animation: card2 22s ease-in-out forwards;
}

.workflow.is-animated .stage-3 .stage-card {
  animation: card3 22s ease-in-out forwards;
}

.workflow.is-animated .stage-4 .stage-card {
  animation: card4 22s ease-in-out forwards;
}

.workflow.is-animated .stage-5 .stage-card {
  animation: card5 22s ease-in-out forwards;
}

.workflow.is-animated .flow-dot-1 {
  animation: dotMove1 22s ease-in-out forwards;
}

.workflow.is-animated .flow-dot-2 {
  animation: dotMove2 22s ease-in-out forwards;
}

.workflow.is-animated .flow-dot-3 {
  animation: dotMove3 22s ease-in-out forwards;
}

.workflow.is-animated .flow-dot-4 {
  animation: dotMove4 22s ease-in-out forwards;
}

.workflow.is-animated .doc {
  animation: docsState 22s ease-in-out forwards;
}

.workflow.is-animated .summary-group {
  animation: summaryState 22s ease-in-out forwards;
}

.workflow.is-animated .summary-chip-1 {
  animation: chipPop1 22s ease-in-out forwards;
}

.workflow.is-animated .summary-chip-2 {
  animation: chipPop2 22s ease-in-out forwards;
}

.workflow.is-animated .summary-chip-3 {
  animation: chipPop3 22s ease-in-out forwards;
}

.workflow.is-animated .summary-chip-4 {
  animation: chipPop4 22s ease-in-out forwards;
}

.workflow.is-animated .axis-group {
  animation: axisState 22s ease-in-out forwards;
}

.workflow.is-animated .score-group {
  animation: scoreState 22s ease-in-out forwards;
}

.workflow.is-animated .score-bar-fill {
  animation: scoreBarGrow 22s ease-in-out forwards;
}

.workflow.is-animated .result-paper {
  animation: resultState 22s ease-in-out forwards;
}

/* =============================================================

screening flow static state

*  ============================================================= */

.workflow.is-static .screening-flow * {
  animation: none !important;
}

.workflow.is-static .stage,
.workflow.is-static .doc,
.workflow.is-static .summary-group,
.workflow.is-static .axis-group,
.workflow.is-static .score-group,
.workflow.is-static .result-paper {
  opacity: 1;
}

.workflow.is-static .score-bar-fill {
  transform: scaleX(1);
}

.workflow.is-static .flow-dot {
  opacity: 0;
}

.workflow.is-static .stage-card {
  stroke: #f59700;
  stroke-width: 2.4;
}

/* =============================================================

screening flow keyframes

*  ============================================================= */

@keyframes stage1 {
  0%,
  13.6% {
    opacity: 1;
    transform: translateY(-2px) scale(1.012);
  }

  16%,
  90% {
    opacity: 0.42;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes stage2 {
  0%,
  20.4% {
    opacity: 0.42;
    transform: translateY(0) scale(1);
  }

  22.8%,
  36.4% {
    opacity: 1;
    transform: translateY(-2px) scale(1.012);
  }

  38.8%,
  90% {
    opacity: 0.42;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes stage3 {
  0%,
  43.2% {
    opacity: 0.42;
    transform: translateY(0) scale(1);
  }

  45.6%,
  59.1% {
    opacity: 1;
    transform: translateY(-2px) scale(1.012);
  }

  61.5%,
  90% {
    opacity: 0.42;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes stage4 {
  0%,
  65.9% {
    opacity: 0.42;
    transform: translateY(0) scale(1);
  }

  68.3%,
  81.8% {
    opacity: 1;
    transform: translateY(-2px) scale(1.012);
  }

  84.2%,
  90% {
    opacity: 0.42;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes stage5 {
  0%,
  88.6% {
    opacity: 0.42;
    transform: translateY(0) scale(1);
  }

  91%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes card1 {
  0%,
  13.6% {
    stroke: #f59700;
    stroke-width: 2.4;
  }

  16%,
  90% {
    stroke: rgba(245, 151, 0, 0.2);
    stroke-width: 1.4;
  }

  100% {
    stroke: #f59700;
    stroke-width: 2.4;
  }
}

@keyframes card2 {
  0%,
  20.4% {
    stroke: rgba(245, 151, 0, 0.2);
    stroke-width: 1.4;
  }

  22.8%,
  36.4% {
    stroke: #f59700;
    stroke-width: 2.4;
  }

  38.8%,
  90% {
    stroke: rgba(245, 151, 0, 0.2);
    stroke-width: 1.4;
  }

  100% {
    stroke: #f59700;
    stroke-width: 2.4;
  }
}

@keyframes card3 {
  0%,
  43.2% {
    stroke: rgba(245, 151, 0, 0.2);
    stroke-width: 1.4;
  }

  45.6%,
  59.1% {
    stroke: #f59700;
    stroke-width: 2.4;
  }

  61.5%,
  90% {
    stroke: rgba(245, 151, 0, 0.2);
    stroke-width: 1.4;
  }

  100% {
    stroke: #f59700;
    stroke-width: 2.4;
  }
}

@keyframes card4 {
  0%,
  65.9% {
    stroke: rgba(245, 151, 0, 0.2);
    stroke-width: 1.4;
  }

  68.3%,
  81.8% {
    stroke: #f59700;
    stroke-width: 2.4;
  }

  84.2%,
  90% {
    stroke: rgba(245, 151, 0, 0.2);
    stroke-width: 1.4;
  }

  100% {
    stroke: #f59700;
    stroke-width: 2.4;
  }
}

@keyframes card5 {
  0%,
  88.6% {
    stroke: rgba(245, 151, 0, 0.2);
    stroke-width: 1.4;
  }

  91%,
  100% {
    stroke: #f59700;
    stroke-width: 2.4;
  }
}

@keyframes dotMove1 {
  0%,
  16% {
    opacity: 0;
    transform: translateX(170px);
  }

  17% {
    opacity: 1;
    transform: translateX(170px);
  }

  18.4%,
  19.5% {
    opacity: 1;
    transform: translateX(183.75px);
  }

  20.4% {
    opacity: 0;
    transform: translateX(197.5px);
  }

  20.5%,
  100% {
    opacity: 0;
    transform: translateX(197.5px);
  }
}

@keyframes dotMove2 {
  0%,
  38.8% {
    opacity: 0;
    transform: translateX(367.5px);
  }

  39.8% {
    opacity: 1;
    transform: translateX(367.5px);
  }

  41.2%,
  42.3% {
    opacity: 1;
    transform: translateX(381.25px);
  }

  43.2% {
    opacity: 0;
    transform: translateX(395px);
  }

  43.3%,
  100% {
    opacity: 0;
    transform: translateX(395px);
  }
}

@keyframes dotMove3 {
  0%,
  61.5% {
    opacity: 0;
    transform: translateX(565px);
  }

  62.5% {
    opacity: 1;
    transform: translateX(565px);
  }

  63.9%,
  65% {
    opacity: 1;
    transform: translateX(578.75px);
  }

  65.9% {
    opacity: 0;
    transform: translateX(592.5px);
  }

  66%,
  100% {
    opacity: 0;
    transform: translateX(592.5px);
  }
}

@keyframes dotMove4 {
  0%,
  84.2% {
    opacity: 0;
    transform: translateX(762.5px);
  }

  85.2% {
    opacity: 1;
    transform: translateX(762.5px);
  }

  86.6%,
  87.7% {
    opacity: 1;
    transform: translateX(776.25px);
  }

  88.6% {
    opacity: 0;
    transform: translateX(790px);
  }

  88.7%,
  100% {
    opacity: 0;
    transform: translateX(790px);
  }
}

@keyframes docsState {
  0%,
  13.6% {
    opacity: 1;
  }

  16%,
  90% {
    opacity: 0.42;
  }

  100% {
    opacity: 1;
  }
}

@keyframes summaryState {
  0%,
  22.8% {
    opacity: 0;
  }

  26%,
  36.4% {
    opacity: 1;
  }

  38.8%,
  90% {
    opacity: 0.42;
  }

  100% {
    opacity: 1;
  }
}

@keyframes chipPop1 {
  0%,
  23% {
    opacity: 0;
  }

  25%,
  100% {
    opacity: 1;
  }
}

@keyframes chipPop2 {
  0%,
  25% {
    opacity: 0;
  }

  27%,
  100% {
    opacity: 1;
  }
}

@keyframes chipPop3 {
  0%,
  27% {
    opacity: 0;
  }

  29%,
  100% {
    opacity: 1;
  }
}

@keyframes chipPop4 {
  0%,
  29% {
    opacity: 0;
  }

  31%,
  100% {
    opacity: 1;
  }
}

@keyframes axisState {
  0%,
  45.6% {
    opacity: 0;
  }

  49%,
  59.1% {
    opacity: 1;
  }

  61.5%,
  90% {
    opacity: 0.42;
  }

  100% {
    opacity: 1;
  }
}

@keyframes scoreState {
  0%,
  68.3% {
    opacity: 0;
  }

  72%,
  81.8% {
    opacity: 1;
  }

  84.2%,
  90% {
    opacity: 0.42;
  }

  100% {
    opacity: 1;
  }
}

@keyframes scoreBarGrow {
  0%,
  70% {
    transform: scaleX(0);
  }

  74%,
  100% {
    transform: scaleX(1);
  }
}

@keyframes resultState {
  0%,
  91% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  94%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =============================================================

workflow responsive

*  ============================================================= */

@media (max-width: 1024px) {
  .workflow__title {
    font-size: 4rem;
    line-height: 1.4;
  }
}

@media (max-width: 960px) {
  .workflow {
    padding-top: 120px;
  }

  .workflow__inner {
    max-width: 560px;
  }

  .workflow__head {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 24px;
  }

  .workflow__body {
    margin-top: 56px;
  }

  .workflow__scroll {
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0 max(4.375vw, calc((100vw - 560px) / 2)) 24px;
    -webkit-overflow-scrolling: touch;
  }

  .workflow__flow {
    width: 970px;
  }

  .workflow .screening-flow * {
    animation: none !important;
  }

  .workflow .stage,
  .workflow .doc,
  .workflow .summary-group,
  .workflow .axis-group,
  .workflow .score-group,
  .workflow .result-paper {
    opacity: 1;
  }

  .workflow .score-bar-fill {
    transform: scaleX(1);
  }

  .workflow .flow-dot {
    opacity: 0;
  }

  .workflow .stage-card {
    stroke: #f59700;
  }
}

@media (max-width: 480px) {
  .workflow {
    padding-top: 96px;
  }

  .workflow__title {
    font-size: 8vw;
  }

  .workflow__lead {
    font-size: 4vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow .screening-flow * {
    animation: none !important;
  }

  .workflow .stage,
  .workflow .doc,
  .workflow .summary-group,
  .workflow .axis-group,
  .workflow .score-group,
  .workflow .result-paper {
    opacity: 1;
  }

  .workflow .score-bar-fill {
    transform: scaleX(1);
  }

  .workflow .flow-dot {
    opacity: 0;
  }

  .workflow .stage-card {
    stroke: #f59700;
  }
}

/* =============================================================

workflow improvement

*  ============================================================= */

.workflow__improvement {
  position: relative;
  margin-top: 80px;
}

.workflow__improvement-inner {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 24px;
}

.workflow__improvement-inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 420px;
  height: 520px;
  background-image: url("../img/home/workflow-bg.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events: none;
  max-width: 1280px;
}

.workflow__improvement-timeline {
  position: relative;
  z-index: 1;
  width: 24px;
}

.workflow__improvement-timeline::before,
.workflow__improvement-timeline::after,
.workflow__improvement-timeline span {
  display: none;
}

.workflow__improvement-list {
  position: relative;
  z-index: 1;
  display: grid;
  row-gap: 32px;
  padding-bottom: 80px;
}

.workflow__improvement-item {
  position: relative;
  display: grid;
  row-gap: 8px;
}

.workflow__improvement-item::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: -32px;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000;
  transform: translateY(-50%);
}

.workflow__improvement-item::after {
  content: "";
  position: absolute;
  top: 0.8em;
  left: -28px;
  z-index: 1;
  width: 1px;
  height: calc(100% + 32px);
  background-color: #000;
}

.workflow__improvement-item:last-child::after {
  height: calc(100% + 80px);
}

.workflow__before {
  display: flex;
  align-items: center;
  column-gap: 16px;
  color: #818181;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}

.workflow__before span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 20px;
  border-radius: 999px;
  color: #656565;
  background-color: #e6e6e6;
  font-family: "Gabarito", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.workflow__after {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 72px;
  padding: 12px 24px 12px 64px;
  border-radius: 8px;
  background-color: rgba(248, 181, 0, 0.1);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.workflow__after span:not(.workflow__check) {
  color: #f59700;
  font-size: 2.2rem;
}

.workflow__check {
  position: absolute;
  top: 50%;
  left: 28px;
  width: 18px;
  height: 18px;
  background-image: url("../img/home/check.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translateY(-50%);
}

/* =============================================================

workflow message

*  ============================================================= */

.workflow__message {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #fff;
  background-color: #f59700;
}

.workflow__message-inner {
  position: relative;
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0 48px;
}

.workflow__message-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  width: 9px;
  height: 65px;
  background:
    radial-gradient(circle at 50% 60px, #000 0, #000 4.5px, transparent 4.6px),
    linear-gradient(#000, #000) center top / 1px 60px no-repeat;
  pointer-events: none;
}

.workflow__message::after {
  content: "";
  position: absolute;
  left: calc((100vw - 1280px) / 2 + 16px);
  bottom: -28px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 14px 0 14px;
  border-color: #f59700 transparent transparent transparent;
}

.workflow__message p {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.55;
}

@media (max-width: 1320px) {
  .workflow__message::after {
    left: calc(4.375vw + 16px);
  }
}

@media (max-width: 1200px) {
  .workflow__after {
    font-size: 1.8rem;
  }

  .workflow__after span:not(.workflow__check) {
    font-size: 2rem;
  }

  .workflow__message p {
    font-size: 2.8rem;
  }
}

@media (max-width: 1100px) {
  .workflow__improvement-inner::after {
    right: -80px;
  }
}

@media (max-width: 960px) {
  .workflow__improvement {
    margin-top: 48px;
    padding: 56px 0 0;
  }

  .workflow__improvement-inner {
    display: block;
    width: auto;
    max-width: none;
  }

  .workflow__improvement-inner::after {
    display: none;
  }

  .workflow__improvement-timeline {
    display: none;
  }

  .workflow__improvement-list {
    row-gap: 24px;
    padding-bottom: 0;
  }

  .workflow__improvement-item::before,
  .workflow__improvement-item::after {
    display: none;
  }

  .workflow__before {
    align-items: flex-start;
    column-gap: 12px;
    font-size: 1.2rem;
    line-height: 1.7;
  }

  .workflow__before span {
    flex: 0 0 auto;
    margin-top: 0.2em;
  }

  .workflow__after {
    display: block;
    width: 100%;
    min-height: auto;
    padding: 16px 20px 16px 52px;
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .workflow__after span:not(.workflow__check) {
    font-size: 1.7rem;
  }

  .workflow__check {
    top: 1.45em;
    left: 22px;
    transform: translateY(-50%);
  }

  .workflow__message {
    margin-top: 56px;
  }

  .workflow__message-inner {
    width: 91.25%;
    max-width: 560px;
    padding: 40px 0;
  }

  .workflow__message-inner::before {
    display: none;
  }

  .workflow__message::after {
    left: calc((100vw - min(560px, 91.25vw)) / 2 + 16px);
  }

  .workflow__message p {
    font-size: 2.4rem;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .workflow__improvement {
    padding-top: 48px;
  }

  .workflow__after {
    font-size: 5.6vw;
  }

  .workflow__after span:not(.workflow__check) {
    font-size: 5.6vw;
  }

  .workflow__message-inner {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .workflow__message p {
    font-size: 6.4vw;
  }
}

/* =============================================================

workflow criteria

*  ============================================================= */

.workflow__criteria {
  position: relative;
  padding-top: 40px;
}

.workflow__criteria-inner {
  max-width: 1280px;
}

.workflow__criteria-compare {
  display: flex;
  align-items: center;
  width: 970px;
  min-height: 104px;
  padding: 22px 0 22px 56px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.12);
}

.workflow__criteria-compare-title {
  padding-right: 56px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.workflow__criteria-compare-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  border-radius: 8px;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.workflow__criteria-plus {
  padding: 0 16px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.workflow__criteria-main {
  position: relative;
  width: 980px;
  margin-top: 22px;
  padding: 56px 48px 0;
  border: 4px solid #f5b500;
  border-radius: 20px;
  background-color: #fff;
}

.workflow__criteria-logo {
  width: 240px;
}

.workflow__criteria-formula {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.workflow__criteria-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 70px;
  border: 4px solid #f5b500;
  border-radius: 12px;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.workflow__criteria-chip--wide {
  min-width: 220px;
  background-color: rgba(248, 181, 0, 0.1);
  font-size: 2rem;
}

.workflow__criteria-chip span {
  color: #f59700;
}

.workflow__criteria-formula-plus {
  padding: 0 10px;
  color: #f59700;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.workflow__criteria-content {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  column-gap: 80px;
  align-items: end;
  margin-top: 40px;
}

.workflow__criteria-woman {
  align-self: end;
  width: 130px;
  margin-left: 40px;
}

.workflow__criteria-points {
  align-self: center;
  padding-bottom: 48px;
}

.workflow__criteria-points li {
  position: relative;
  padding-left: 1em;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
}

.workflow__criteria-points li + li {
  margin-top: 12px;
}

.workflow__criteria-points li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.workflow__criteria-points span {
  color: #f59700;
}

.workflow__criteria-note {
  display: flex;
  align-items: center;
  column-gap: 14px;
  margin-top: 26px;
  padding-left: 20px;
  color: #f59700;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.workflow__criteria-note span {
  flex: 0 0 auto;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/home/check.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.workflow__criteria-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 300px);
  column-gap: 40px;
  width: 980px;
  margin-top: 20px;
  margin-bottom: -48px;
}

.workflow__criteria-step {
  position: relative;
  width: 300px;
  padding: 40px 24px 32px;
  border: 4px solid #f5b500;
  border-radius: 20px;
  background-color: #fff;
}

.workflow__criteria-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32%;
  right: -25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #f59700;
  transform: translateY(-50%);
}

.workflow__criteria-step h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}

.workflow__criteria-step p {
  margin-top: 18px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.workflow__criteria-cta {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-top: 0;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 124px 0 40px;
  color: #fff;
  background-color: #f59700;
}

.workflow__criteria-cta-inner {
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
}

.workflow__criteria-cta-title {
  color: #fff;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.5;
}

.workflow__criteria-cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 320px;
  height: 56px;
  margin-top: 20px;
  padding: 0 20px;
  border: 2px solid #fff;
  border-radius: 56px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background-image: linear-gradient(
    90deg,
    rgba(245, 151, 0, 1),
    rgba(245, 170, 0, 1)
  );
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.workflow__criteria-cta-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #fff;
  transform: translateY(-50%);
}

.workflow__criteria-cta-button:hover {
  opacity: 0.78;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .workflow__criteria-compare {
    width: 100%;
  }

  .workflow__criteria-main {
    padding: 48px 32px 0;
    width: 100%;
  }

  .workflow__criteria-steps {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 5%;
    width: 100%;
  }

  .workflow__criteria-step {
    width: auto;
    padding: 32px 16px 20px;
  }

  .workflow__criteria-cta-title {
    font-size: 3.6rem;
  }
}

@media (max-width: 960px) {
  .workflow__criteria {
    padding-top: 40px;
  }

  .workflow__criteria-inner {
    width: 91.25%;
    max-width: 560px;
    margin: 0 auto;
  }

  .workflow__criteria-compare {
    display: block;
    width: 100%;
    min-height: auto;
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
  }

  .workflow__criteria-compare-title {
    padding-right: 0;
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .workflow__criteria-compare-box {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 54px;
    margin-top: 16px;
    padding: 0 20px;
    font-size: 1.6rem;
  }

  .workflow__criteria-plus {
    display: none;
  }

  .workflow__criteria-main {
    width: 100%;
    margin-top: 18px;
    padding: 34px 22px 0;
    border-width: 3px;
    border-radius: 16px;
  }

  .workflow__criteria-logo {
    width: 170px;
  }

  .workflow__criteria-formula {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 12px;
    margin-top: 24px;
  }

  .workflow__criteria-chip,
  .workflow__criteria-chip--wide {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 18px;
    border-width: 3px;
    font-size: 1.6rem;
  }

  .workflow__criteria-chip--wide {
    font-size: 1.8rem;
  }

  .workflow__criteria-formula-plus {
    display: none;
  }

  .workflow__criteria-content {
    display: block;
    margin-top: 28px;
  }

  .workflow__criteria-woman {
    display: none;
  }

  .workflow__criteria-points {
    padding-bottom: 32px;
    margin-top: 28px;
  }

  .workflow__criteria-points li {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .workflow__criteria-points li + li {
    margin-top: 10px;
  }

  .workflow__criteria-note {
    align-items: flex-start;
    column-gap: 12px;
    margin-top: 22px;
    padding-left: 0;
    font-size: 1.5rem;
    line-height: 1.7;
  }

  .workflow__criteria-note span {
    width: 20px;
    height: 20px;
    margin-top: 0.35em;
  }

  .workflow__criteria-steps {
    grid-template-columns: 1fr;
    row-gap: 16px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .workflow__criteria-step {
    width: auto;
    padding: 28px 24px;
    border-width: 3px;
    border-radius: 14px;
  }

  .workflow__criteria-step:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -15px;
    border-width: 10px 7px 0 7px;
    border-color: #f5b500 transparent transparent transparent;
    transform: translateX(-50%);
  }

  .workflow__criteria-step h3 {
    font-size: 1.9rem;
    line-height: 1.5;
  }

  .workflow__criteria-step p {
    margin-top: 12px;
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .workflow__criteria-cta {
    margin-top: 48px;
    padding: 56px 0 64px;
  }

  .workflow__criteria-cta-inner {
    width: 91.25%;
    max-width: 560px;
  }

  .workflow__criteria-cta-title {
    font-size: 2.8rem;
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .workflow__criteria-main {
    padding-right: 18px;
    padding-left: 18px;
  }

  .workflow__criteria-logo {
    width: 80%;
    margin: 0 auto;
  }

  .workflow__criteria-chip,
  .workflow__criteria-chip--wide {
    font-size: 5.6vw;
  }

  .workflow__criteria-points li {
    font-size: 4.8vw;
  }

  .workflow__criteria-note {
    font-size: 1.4rem;
  }

  .workflow__criteria-step h3 {
    font-size: 5.2vw;
  }

  .workflow__criteria-cta-title {
    font-size: 7.2vw;
  }

  .workflow__criteria-cta-button {
    width: 100%;
    min-width: 0;
  }
}

/* =============================================================

poc

*  ============================================================= */
.poc {
  position: relative;
  padding-top: 160px;
}

.poc__inner {
  position: relative;
  z-index: 1;
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
}

.poc__heading {
  display: flex;
  align-items: flex-end;
  column-gap: 32px;
}

.poc__title {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.32;
}

.poc__title span {
  display: block;
  color: #f5aa00;
}

.poc__lead {
  font-size: 1.4rem;
  line-height: 2;
}

.poc__numbers {
  display: grid;
  grid-template-columns: repeat(4, 224px);
  column-gap: 24px;
  margin-top: 32px;
}

.poc__number-card {
  padding: 28px 0 24px;
  border-radius: 16px;
  color: #fff;
  background-color: #f59700;
  text-align: center;
}

.poc__number-label {
  font-size: 2rem;
  font-weight: 700;
}

.poc__number-value {
  margin-top: 8px;
  font-size: 7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.poc__number-value span {
  margin-left: 4px;
  font-size: 2rem;
}

.poc__number-text {
  margin-top: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
}

.poc__note {
  display: flex;
  align-items: center;
  column-gap: 14px;
  margin-top: 32px;
  padding-left: 20px;
  color: #f59700;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
}

.poc__note img {
  flex: 0 0 auto;
  display: block;
  width: 18px;
  height: auto;
}

.poc__scroll {
  position: relative;
  margin-top: 28px;
}

.poc__scroll::after {
  content: "";
  position: absolute;
  left: 970px;
  bottom: 36px;
  width: 254px;
  height: 158px;
  background-image: url("../img/home/poc-bg.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events: none;
}

.poc__table {
  width: 970px;
  overflow: hidden;
  border: 4px solid #f5aa00;
  border-radius: 20px;
  background-color: #fff;
}

.poc__table-row {
  display: grid;
  grid-template-columns: 200px 300px 1fr;
}

.poc__table-row:not(:last-child) {
  border-bottom: 1px solid rgba(221, 132, 33, 0.28);
}

.poc__table-row--head {
  color: #fff;
  background-color: #f5aa00;
}

.poc__table-cell {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px 0 16px 40px;
  font-size: 1.7rem;
  line-height: 1.6;
}

.poc__table-row--head .poc__table-cell {
  color: #fff;
  font-size: 1.7rem;
}

.poc__table-row--head .poc__table-cell.poc__table-cell--strong {
  font-size: 2rem;
  font-weight: 700;
}

.poc__table-cell--strong {
  column-gap: 14px;
  font-size: 2rem;
  font-weight: 700;
}

.poc__table-cell--strong img {
  flex: 0 0 auto;
  display: block;
  width: 18px;
  height: auto;
}

.poc__message {
  position: relative;
  width: 100vw;
  margin-top: -36px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 116px 0 40px;
  color: #fff;
  background-color: #f59700;
}

.poc__message-inner {
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
}

.poc__message p {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .poc__title {
    font-size: 4rem;
  }
}

@media (max-width: 1024px) {
  .poc__lead {
    font-size: 1.3rem;
  }

  .poc__numbers {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 18px;
  }

  .poc__number-card {
    padding-right: 16px;
    padding-left: 16px;
  }

  .poc__number-label {
    font-size: 1.7rem;
  }

  .poc__number-value {
    font-size: 6rem;
  }

  .poc__table {
    width: 100%;
  }

  .poc__scroll::after {
    display: none;
  }

  .poc__message {
    padding: 80px 0 40px;
  }

  .poc__message p {
    font-size: 2.8rem;
  }
}

@media (max-width: 960px) {
  .poc {
    padding-top: 96px;
  }

  .poc__inner {
    max-width: 560px;
  }

  .poc__heading {
    display: block;
  }

  .poc__title {
    font-size: 3.2rem;
    line-height: 1.45;
  }

  .poc__lead {
    margin-top: 16px;
    padding-bottom: 0;
    font-size: 1.3rem;
  }

  .poc__numbers {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
  }

  .poc__number-card {
    min-height: 150px;
    padding: 24px 14px 20px;
    border-radius: 14px;
  }

  .poc__number-label {
    font-size: 1.5rem;
  }

  .poc__number-value {
    font-size: 5.2rem;
  }

  .poc__number-value span {
    font-size: 1.6rem;
  }

  .poc__number-text {
    margin-top: 10px;
    font-size: 1.2rem;
  }

  .poc__note {
    align-items: flex-start;
    column-gap: 12px;
    margin-top: 28px;
    padding-left: 0;
    font-size: 1.5rem;
  }

  .poc__note img {
    margin-top: 0.45em;
  }

  .poc__scroll {
    overflow-x: auto;
    margin-top: 24px;
    padding-bottom: 12px;
  }

  .poc__table {
    width: 900px;
    border-width: 3px;
    border-radius: 14px;
  }

  .poc__table-row {
    grid-template-columns: 180px 280px 1fr;
  }

  .poc__table-cell {
    min-height: 60px;
    padding: 14px 28px;
    font-size: 1.5rem;
  }

  .poc__table-row--head .poc__table-cell {
    font-size: 1.5rem;
  }

  .poc__table-cell--strong {
    column-gap: 12px;
    font-size: 1.7rem;
  }

  .poc__table-cell--strong img {
    width: 18px;
  }

  .poc__message {
    margin-top: 56px;
    padding: 56px 0;
  }

  .poc__message-inner {
    max-width: 560px;
  }

  .poc__message p {
    font-size: 2.4rem;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .poc {
    padding-top: 80px;
  }

  .poc__title {
    font-size: 8vw;
  }

  .poc__lead {
    font-size: 4vw;
  }

  .poc__numbers {
    grid-template-columns: 1fr;
  }

  .poc__number-card {
    min-height: auto;
  }

  .poc__message p {
    font-size: 7.2vw;
  }
}

/* =============================================================

faq section

*  ============================================================= */

.faq-section {
  padding-top: 160px;
}

.faq-section__inner {
  position: relative;
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
}

.faq-section__inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 184px;
  background-image: url("../img/home/faq.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.faq-section__heading {
  display: flex;
  align-items: flex-end;
  column-gap: 32px;
}

.faq-section__title {
  font-size: 3.2rem;
  font-weight: 700;
}

.faq {
  width: 970px;
  margin-top: 40px;
}

.faq__item {
  border: 1px solid #f5aa00;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.4);
}

.faq__item + .faq__item {
  margin-top: 24px;
}

.faq__heading {
  margin: 0;
}

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  padding: 24px 16px;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-ja);
  letter-spacing: 0.12em;
  text-align: left;
}

.faq__qText {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.faq__icon {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #f59700;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.faq__icon::before {
  width: 16px;
  height: 2px;
}

.faq__icon::after {
  width: 2px;
  height: 16px;
}

.faq__item.is-open .faq__icon::after {
  opacity: 0;
}

.faq__a {
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq__aInner {
  padding: 16px 32% 20px 16px;
  font-family: var(--font-ja);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 2;
}

@media (max-width: 1100px) {
  .faq-section__inner::after {
    display: none;
  }
}

@media (max-width: 1024px) {
  .faq {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .faq-section {
    padding-top: 96px;
  }

  .faq-section__inner {
    max-width: 560px;
  }

  .faq-section__heading {
    display: block;
  }

  .faq__item + .faq__item {
    margin-top: 16px;
  }

  .faq__q {
    padding: 18px 16px;
  }

  .faq__aInner {
    padding: 0 16px 20px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding-top: 80px;
  }

  .faq-section__title {
    font-size: 7.2vw;
  }

  .faq__qText {
    font-size: 4.8vw;
  }

  .faq__aInner {
    font-size: 4.4vw;
  }
}

/* =============================================================

price

*  ============================================================= */

.price {
  position: relative;
  padding-top: 160px;
}

.price__inner {
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
}

.price__title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.5;
}

.price__scroll {
  margin-top: 40px;
}

.price__image {
  width: 100%;
}

.price__image img {
  display: block;
  width: 100%;
  height: auto;
}

.price__note-list {
  margin-top: 40px;
}

.price__note-list li {
  display: grid;
  grid-template-columns: 24px 88px minmax(0, 1fr);
  column-gap: 0;
  font-size: 1.4rem;
  line-height: 1.9;
}

.price__note-list li + li {
  margin-top: 10px;
}

.price__note-list li::before {
  content: "※";
  grid-column: 1;
  grid-row: 1;
}

.price__note-list span {
  grid-column: 2;
  grid-row: 1;
  display: inline-block;
}

/* =============================================================

price cta

*  ============================================================= */

.price__cta {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-top: 48px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 80px 0 40px;
  color: #fff;
  background-color: #f59700;
}

.price__cta-inner {
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
}

.price__cta-title {
  color: #fff;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.5;
}

.price__cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 360px;
  height: 56px;
  margin-top: 20px;
  padding: 0 20px;
  border: 2px solid #fff;
  border-radius: 56px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background-image: linear-gradient(
    90deg,
    rgba(245, 151, 0, 1),
    rgba(245, 170, 0, 1)
  );
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.price__cta-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #fff;
  transform: translateY(-50%);
}

.price__cta-button:hover {
  opacity: 0.78;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .price__title {
    font-size: 3.6rem;
  }

  .price__cta-title {
    font-size: 3.6rem;
  }
}

@media (max-width: 960px) {
  .price {
    padding-top: 96px;
  }

  .price__inner {
    max-width: 560px;
  }

  .price__title {
    font-size: 3.2rem;
    line-height: 1.45;
  }

  .price__scroll {
    overflow-x: auto;
    margin-top: 32px;
    padding-bottom: 12px;
  }

  .price__image {
    width: 1168px;
  }

  .price__note-list {
    margin-top: 28px;
  }

  .price__note-list li {
    grid-template-columns: 24px 88px minmax(0, 1fr);
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .price__note-list li + li {
    margin-top: 20px;
  }

  .price__cta {
    margin-top: 48px;
    padding: 56px 0 64px;
  }

  .price__cta-inner {
    max-width: 560px;
  }

  .price__cta-title {
    font-size: 2.8rem;
    line-height: 1.55;
  }

  .price__cta-button {
    width: 320px;
    max-width: 100%;
    height: 54px;
    padding: 0 42px 0 16px;
    font-size: 1.5rem;
  }

  .price__cta-button::after {
    right: 18px;
  }
}

@media (max-width: 480px) {
  .price {
    padding-top: 80px;
  }

  .price__title {
    font-size: 7.2vw;
  }

  .price__note-list li {
    grid-template-columns: 24px 88px minmax(0, 1fr);
    font-size: 1.3rem;
    line-height: 1.9;
  }

  .price__cta-title {
    font-size: 7.2vw;
  }

  .price__cta-button {
    width: 100%;
    min-width: 0;
  }
}

/* =============================================================

fade up animation

*  ============================================================= */

.js-fadeup {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.2s ease-out,
    transform 1.2s ease-out;
  will-change: opacity, transform;
}

.js-fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}
