/* テキストブロック重なり対策 */
.topAbout_contents{
  position: relative;
  z-index: 2;
}

.topAbout_logo {
  background: none;
  width: 480px;
  height: auto;
  aspect-ratio: 1;
  display: grid;
  align-items: center;
  justify-content: center;
  transform: translateY(-20px);
}

.topAbout_logo .topAbout_logoRoute {
  width: 120px;
  height: 120px;
  grid-row: 1;
  grid-column: 1;
  justify-self: center;
  align-self: center;
}

.topAbout_logo .topAbout_logoRoute #logoRoute {
  stroke: none;
  fill: none;
}

.topAbout_logo .topAbout_logoBox {
  transform: rotate(-15deg);
  grid-row: 1;
  grid-column: 1;
}

.topAbout_logo .topAbout_logoSvg {
  width: 400px;
  height: auto;
  overflow: visible;
}

.topAbout_logo .topAbout_logoBox .topAbout_logoSvg path,
.topAbout_logo .topAbout_logoBox .topAbout_logoSvg circle {
  fill: #005ead;
}

@media screen and (max-width: 1000px) {
  .topAbout_logo {
    width: auto;
  }

  .topAbout_logo .topAbout_logoSvg {
    width: 40vw;
  }
}

@media screen and (max-width: 768px) {
  .topAbout_logo {
    width: 100%;
    transform: translate(4%, 0);
    margin-block: 10vw 0;
  }

  .topAbout_logo .topAbout_logoRoute {
    width: 22.5vw;
    height: 22.5vw;
  }

  .topAbout_logo .topAbout_logoSvg {
    width: 85vw;
  }
}

@media screen and (max-width: 500px) {
  .topAbout_logo .topAbout_logoRoute {
    width: 20vw;
    height: 20vw;
  }
}