.innovation {
  overflow: hidden;
}

.breadcrumb.-top {
  max-width: 1300px;
  margin-bottom: 40px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 80px;
  max-width: 1280px;
  margin: auto;
}

.hero__text {
  max-width: 600px;
}

.hero h1 {
  font-size: 14rem;
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: -100;
}

.hero-title {
  line-height: 1.1;
}

.hero-title span {
  display: block;
}


.hero__lead {
  margin-top: 24px;
  font-size: 3rem;
  color: #004fa3;
  font-weight: 600;
  line-height: 1.8;
}

.hero__lead span {
  font-size: 2.4rem;
}

/* コンテンツ */
.content {
  position: relative;
  max-width: 1300px;
  display: flex;
  gap: 80px;
  padding: 192px 20px 160px;
  margin: 0 auto;
  align-items: flex-end;
}

.sec-ttl {
  font-size: 2.6rem;
  font-weight: bold;
  color: #014694;
  margin-bottom: 30px;
}

.sec-txt {
  font-size: 1.6rem;
  line-height: 2;
}

.innovation-support {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.pillar {
  display: flex;
  gap: 45px;
  margin-top: 56px;
  align-items: start;
}

.pillar-item {
  max-width: 390px;
  text-align: center;
}

.pillar-item__img,
.deeptech-card__img {
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  border-radius: 20px;
}

.pillar-item__img.circle {
  border-radius: 999px;
}

.pillar-item img,
.deeptech-card__img img {
  height: auto;
  transition: transform .6s ease;
}

.pillar-item:hover .pillar-item__img img,
.deeptech-card:hover .deeptech-card__img img {
  transform: scale(1.1);
}

.pillar-item:hover .sec-dec h3,
.deeptech-card:hover .sec-dec h3 {
  color: #e6001a;
}

.pillar-item:nth-of-type(2) {
  margin-top: -56px;
}

.pillar-item:nth-of-type(3) {
  margin-top: -112px;
}

.pillar-item h3 {
  margin: 24px 0 12px;
  color: #014694;
  font-size: 1.8rem;
  font-weight: bold;
}

/* Pick up */
.pickup {
  margin-top: 213px;
  margin-bottom: 160px;
}

.pickup-list {
  display: flex;
  gap: 56px;
  margin-top: 80px;
}

.deeptech-card {
  position: relative;
}

.deeptech-card:nth-of-type(2) {
  bottom: 140px;
}

.deeptech-card__content {
  position: absolute;
  bottom: clamp(-25px, 3.91vw - 56.25px, 0px);
  left: 0;
}

.deeptech-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #003a8f;
  margin: 0 0 8px;
}

.bg-curve {
  position: relative;
}

.bg-curve::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 73%;
  background: #F5F5F5;
  border-radius: 50%;
  top: -16%;
  left: -30%;
  transform: rotate(-8deg);
  z-index: -2;
}

@media (max-width: 767px) {
  .hero {
    padding: 0 20px;
  }

  .hero__visual {
    margin: 40px 0 0;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero__lead {
    font-size: 22px;
    text-align: left;
  }

  .hero__lead span {
    font-size: 16px;
  }

  .content {
    flex-direction: column-reverse;
    padding: 280px 15px 140px;
    align-items: center;
    gap: 32px;
  }

  .sec-ttl {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .sec-txt {
    font-size: 14px;
  }

  .pillar {
    flex-direction: column;
    margin-top: 32px;
    align-items: center;
  }

  .pillar-item:nth-of-type(2) {
    margin-top: 0;
  }

  .pillar-item:nth-of-type(3) {
    margin-top: 0;
  }

  .pickup {
    margin-top: 140px;
  }

  .pickup-list {
    flex-direction: column-reverse;
    margin-top: 32px;
  }

  .deeptech-card:nth-of-type(2) {
    margin-top: 0;
  }

  .deeptech-card__content {
    bottom: -3rem !important;
  }

  .bg-curve::before {
    width: 500%;
    height: 80%;
    top: -8%;
    left: -227%;
  }
}

.circle-animation {
  position: relative;
  width: min(684px, 90vw);
  height: min(684px, 90vw);
}

.circle-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation-name: fade-in;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-play-state: paused;
}

.img1 {
  width: 684px;
  height: auto;
}

.img2 {
  width: 481px;
  height: auto;
}

.img3 {
  width: 276px;
  height: auto;
}

.img1 {
  animation-delay: 0s;
}

.img2 {
  animation-delay: 1.2s;
}

.img3 {
  animation-delay: 2.4s;
}

.circle-animation.is-active .circle-img {
  animation-play-state: running;
}

@media (max-width: 768px) {
  .circle-animation {
    width: 333px;
    height: 333px;
  }

  .img1 {
    width: 333px;
  }

  .img2 {
    width: 234px;
  }

  .img3 {
    width: 134px;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media print,
screen and (min-width: 375px) and (max-width: 767px) {
  .container {
    padding-right: 0;
    padding-left: 0;
  }
}

.circle-mid {
  width: clamp(180px, 26vw, 300px);
    height: clamp(180px, 26vw, 300px);
    position: absolute;
    object-fit: cover;
    z-index: 99;
    border-radius: 50%;
    right: -32px;
    top: clamp(70px, -6.25vw + 160px, 110px);
}

.circle-large {
  width: clamp(294px, 36vw, 544px);
  height: clamp(294px, 36vw, 544px);
  position: absolute;
  object-fit: cover;
  z-index: 99;
  border-radius: 50%;
  right: clamp(125px, 18vw, 305px);
  top: clamp(295px, 23vw, 215px);
}

.circle-small {
  width: clamp(150px, 20vw, 200px);
    height: clamp(150px, 20vw, 200px);
    position: absolute;
    object-fit: cover;
    z-index: 99;
    border-radius: 50%;
    right: clamp(20px, 2vw, 40px);
    top: clamp(640px, 60vw, 790px);
}

@media screen and (max-width: 767px) {
  .circle-mid {
    width: 170px;
    height: 170px;
    right: 46px;
    top: 143px;
    z-index: 0;
  }

  .circle-large {
    width: 220px;
    height: 220px;
    right: -68px;
    top: 66px;
    z-index: 0;
  }

  .circle-small {
    width: 90px;
    height: 90px;
    right: 20px;
    top: 450px;
    z-index: 0;
  }
}
