@charset "utf-8";
.p-top-scene {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}
.p-top-scene .pc_mv-wrapper {
  position: absolute;
  top: calc(((100vw * (768 / 1366)) - 100vh) / 2 * -1);
  left: 0;
  width: 100vw;
  height: auto;
  aspect-ratio: 1361 / 768;
  margin: 0 auto;
  overflow: hidden;
}

.p-top-scene .sp_mv-wrapper {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-aspect-ratio: 1366/768) {
    .p-top-scene .pc_mv-wrapper {
      top: 0;
      left: calc(((100vh * (1366 / 768)) - 100vw) / 2 * -1);
      width: auto;
      height: 100%;
    }
}
.p-top-scene img.bg,
.p-top-scene img.ov {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-scene img.river {
  position: absolute;
  top: 29.3%;
  left: 39%;
  width: 56%;
  height: 85%;
  object-fit: cover;
}

.p-top-scene .logo {
  position: absolute;
  padding: 3% 3% 2% 3%;
  top: 0;
  left: 0;
  width: 23%;
  height: auto;
  z-index: 1;
  background: #FFF;
  border-bottom-right-radius: 15px;
  font-size: 0;
}
.p-top-scene .logo a {
  display: block;
}
.p-top-scene .logo img {
    width: 100%;
}

.p-top-menu {
  position: absolute;
  top: 5%;
  right: 3%;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 2%;
}
.p-top-menu .p-top-menu-btn {
  width: 20%;
  transition: all 0.3s ease;
}
.p-top-menu .menu-btn {
  width: 5%;
}
.p-top-menu .p-top-menu-btn:hover {
  transform: scale(1.05);
}
.p-top-menu a {
  display: block;
}
.p-top-menu img {
    width: 100%;
}

.footer {
  position: absolute;
  bottom: 0%;
  left: 0%;
  z-index: 1;
  width: 100%;
  height: 11%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  transform: translateY(100%);
  animation: footer-move 0.5s linear forwards;
  animation-delay: 1s;
}
.footer a {
  display: block;
}
.footer img {
    width: 100%;
}
@keyframes footer-move {
  0% { }
  100% { transform: translateY(0); }
}

.worker {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 5.4%;
  height: 5.3%;
}
.worker::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/map_worker_a.gif) no-repeat center center;
  background-size: contain;
}
.worker::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/map_worker_b.gif) no-repeat center center;
  background-size: contain;
}

.worker:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.35);
  border-radius: 12px;
}

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

.worker--1 {
  --worker-time: 32s;
  --posX: 31%;
  --posY: 56%;
  animation: worker1-path var(--worker-time) linear infinite;
  left: var(--posX);
  top: var(--posY);
}
.worker--1::before {
  animation: worker1-facing1 var(--worker-time) linear infinite;
}
.worker--1::after {
  animation: worker1-facing2 var(--worker-time) linear infinite;
}
@keyframes worker1-path {
  0% { left: var(--posX); top: var(--posY); }
  15% { left: calc(var(--posX) + 3%); top: calc(var(--posY) + 2%); }
  30% { left: calc(var(--posX) + 0%); top: calc(var(--posY) + 6%); }
  45% { left: calc(var(--posX) - 3%); top: calc(var(--posY) + 9%); }
  60% { left: calc(var(--posX) + 0%); top: calc(var(--posY) + 6%); }
  75% { left: calc(var(--posX) + 3%); top: calc(var(--posY) + 2%); }
  100% { left: var(--posX); top: var(--posY); }
}
@keyframes worker1-facing1 {
  0%, 14% { transform: scaleX(-1); opacity: 1; }
  15%, 44% { transform: scaleX(1); opacity: 1; }
  45%, 100% { opacity: 0; }
}
@keyframes worker1-facing2 {
  0%, 44% { opacity: 0;}
  45%, 59% { transform: scaleX(1); opacity: 1; }
  60%, 74% { transform: scaleX(1); opacity: 1; }
  75%, 100% { transform: scaleX(-1); opacity: 1; }
}

.worker--4 {
  --worker-time: 25s;
  --posX: 55%;
  --posY: 27%;
  animation: worker1-path var(--worker-time) linear infinite;
  left: var(--posX);
  top: var(--posY);
}
.worker--4::before {
  animation: worker1-facing1 var(--worker-time) linear infinite;
}
.worker--4::after {
  animation: worker1-facing2 var(--worker-time) linear infinite;
}

.worker--5 {
  --worker-time: 20s;
  --posX: 62%;
  --posY: 16%;
  animation: worker1-path var(--worker-time) linear infinite;
  left: var(--posX);
  top: var(--posY);
}
.worker--5::before {
  animation: worker1-facing1 var(--worker-time) linear infinite;
}
.worker--5::after {
  animation: worker1-facing2 var(--worker-time) linear infinite;
}

.worker--2 {
  --worker-time: 25s;
  --posX: 43%;
  --posY: 38%;
  animation: worker2-path var(--worker-time) linear infinite;
  left: var(--posX);
  top: var(--posY);
}
.worker--2::before {
  animation: worker2-facing1 var(--worker-time) linear infinite;
}
.worker--2::after {
  animation: worker2-facing2 var(--worker-time) linear infinite;
}
@keyframes worker2-path {
  0% { left: var(--posX); top: var(--posY); }
  50% { left: calc(var(--posX) + 12%); top: calc(var(--posY) - 15%); }
  100% { left: var(--posX); top: var(--posY); }
}
@keyframes worker2-facing1 {
  0%, 49% { opacity: 0;}
  50%, 100% { transform: scaleX(1); opacity: 1; }
}
@keyframes worker2-facing2 {
  0%, 49% { transform: scaleX(1); opacity: 1; }
  50%, 100% { opacity: 0; }
}

.worker--3 {
  --worker-time: 30s;
  --posX: 69%;
  --posY: 46%;
  animation: worker2-path var(--worker-time) linear infinite;
  left: var(--posX);
  top: var(--posY);
}
.worker--3::before {
  animation: worker2-facing1 var(--worker-time) linear infinite;
}
.worker--3::after {
  animation: worker2-facing2 var(--worker-time) linear infinite;
}


.crane {
  position: absolute;
  width: 6%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 28%;
  height: 40%;
}
.crane::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/map_crane.gif) no-repeat center center;
  background-size: cover;
}
.crane--1 {
  left: 61%;
  top: -6%;
}
.crane--2 {
  left: 37%;
  top: -13%;
  transform: scaleX(-1);
}

.digger {
  position: absolute;
  width: 6%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 12%;
  height: 12%;
}
.digger::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/map_digger.gif) no-repeat center center;
  background-size: cover;
}
.digger--1 {
  left: 65%;
  top: 55%;
}
.digger--2 {
  left: 40%;
  top: 22%;
  transform: scaleX(-1);
}

.track {
  position: absolute;
  width: 6%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 8%;
  height: 14%;
  opacity: 1;
}
.track::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/map_track1.gif) no-repeat center center;
  background-size: contain;
  opacity: 1;
}
.track::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/map_track2.gif) no-repeat center center;
  background-size: contain;
  opacity: 0;
}
.track.track--1 {
  left: 37%;
  top: 35%;
  animation: track-move 30s linear infinite;
}
.track.track--1::before {
  animation: track-move-before 30s linear infinite;
}
.track.track--1::after {
  animation: track-move-after 30s linear infinite;
}
@keyframes track-move {
  0% { left: 37%; top: 35%; transform: scaleX(-1); }
  30% { left: 37%; top: 35%; transform: scaleX(-1); }
  40% { transform: scaleX(-1); }
  40.1% { left: 54%; top: 58%; transform: scaleX(1); }
  55% { left: 24%; top: 97%; transform: scaleX(1); }
  65% { left: 24%; top: 97%; transform: scaleX(1); }
  80% { left: 54%; top: 58%; transform: scaleX(1); }
  80.1% { transform: scaleX(-1); }
  100% { left: 37%; top: 35%; transform: scaleX(-1); }
}
@keyframes track-move-before {
  0% { opacity: 1; }
  65% { opacity: 1; }
  65.1% { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes track-move-after {
  0% { opacity: 0; }
  65% { opacity: 0; }
  65.1% { opacity: 1; }
  100% { opacity: 1; }
}

.office {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 12%;
  height: 21%;
  background: url(../img/map_office.png?202512181028) no-repeat center center;
  background-size: contain;
  top: 40%;
  left: 32%;
}
.pin.pin--5:hover + .office {
  filter: drop-shadow(2px 4px 6px black) drop-shadow(2px 4px 40px #FFF);
}
.site-office {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 12%;
  height: 21%;
  background: url(../img/map_site-office.png?202512181028) no-repeat center center;
  background-size: contain;
  top: 50%;
  left: 40%;
}
.pin.pin--6:hover + .site-office {
  filter: drop-shadow(2px 4px 6px black) drop-shadow(2px 4px 40px #FFF);
}
.morning-assembly {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 14%;
  height: 26%;
  background: url(../img/map_morning-assembly.png?202512181028) no-repeat center center;
  background-size: contain;
  top: 58%;
  left: 32%;
}
.pin.pin--4:hover + .morning-assembly {
  filter: drop-shadow(2px 4px 6px black) drop-shadow(2px 4px 40px #FFF);
}
.material-yard {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 16%;
  height: 27%;
  background: url(../img/map_material-yard.png?202512181028) no-repeat center center;
  background-size: contain;
  top: 24%;
  left: 59%;
}
.pin.pin--2:hover + .material-yard {
  filter: drop-shadow(2px 4px 6px black) drop-shadow(2px 4px 40px #FFF);
}
.construction-site {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 42%;
  height: 60%;
  background: url(../img/map_construction-site.png?202512181028) no-repeat center center;
  background-size: contain;
  top: -19%;
  left: 41%;
}
.pin.pin--1:hover + .construction-site,
.pin.pin--1:hover + .construction-site + .crane,
.pin.pin--1:hover + .construction-site + .crane + .crane,
.pin.pin--1:hover + .construction-site + .crane + .crane + .digger {
  filter: drop-shadow(2px 4px 6px black) drop-shadow(2px 4px 40px #FFF);
}
.civil-site {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 56%;
  height: 70%;
  background: url(../img/map_civil-site.png?202512181028) no-repeat center center;
  background-size: contain;
  top: 34%;
  left: 34.2%;
}
.pin.pin--3:hover + .civil-site,
.pin.pin--3:hover + .civil-site + .digger,
.pin.pin--3:hover + .civil-site + .digger + .bridge {
  filter: drop-shadow(2px 4px 6px black) drop-shadow(2px 4px 40px #FFF);
}

.bridge {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 20%;
  height: 30%;
  top: 59%;
  left: 61%;
}
.bridge::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/map_bridge.gif?202512181028) no-repeat center center;
  background-size: cover;
}

.db {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 5%;
  height: 7%;
}
.db.db--1 {
  top: 50%;
  left: 62.7%;
}
.db.db--2 {
  top: 68.7%;
  left: 47.23%;
}
.db.db--3 {
  top: 79.3%;
  left: 38.8%;
}
.db.db--4 {
  top: 39.6%;
  left: 70.99%;
}
.db::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/map_db.gif?202512181028) no-repeat center center;
  background-size: contain;
}

.eisei {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 23%;
  height: 37%;
}
.eisei::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/map_eisei.gif?202512181028) no-repeat center center;
  background-size: contain;
}
.eisei.eisei--1 {
  top: 4%;
  left: 81%;
}

.denpa {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 1.5%;
  height: 2.5%;
}
.denpa::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/map_denpa.gif?202512181028) no-repeat center center;
  background-size: contain;
}
.denpa.denpa--1 {
  top: 39%;
  left: 37.5%;
}
.denpa.denpa--2 {
  top: 49%;
  left: 45.5%;
}
.denpa.denpa--3 {
  top: 70%;
  left: 62%;
}

.denpa2 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 1.5%;
  height: 2.5%;
}
.denpa2::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/map_denpa2.gif?202512181028) no-repeat center center;
  background-size: contain;
}
.denpa2.denpa2--1 {
  top: 36%;
  left: 51%;
}

.pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  outline: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  width: 7%;
  height: 11%;
  margin: 0;
  animation: pin-init-move 1s ease forwards;
  animation-delay: 1s;
  opacity: 0;
  cursor: pointer;
  z-index: 9;
}
.pin .pin-label {
  width: 100%;
  height: 34%;
  object-fit: contain;
  transition: all 0.3s ease;
}
.pin .pin-icon {
  width: 100%;
  height: 60%;
  object-fit: contain;
  animation: pin-icon-move 3s ease infinite;
  transition: all 0.3s ease;
}
.pin:hover .pin-label {
  filter: invert(1);
}
.pin:hover .pin-icon {
  /* animation: none; */
  filter: drop-shadow(2px 4px 6px black);
}

@keyframes pin-init-move {
  0% { transform: translateY(-20%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes pin-icon-move {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15%); }
  100% { transform: translateY(0); }
}

.pin--1 {
  left: 49%;
  top: 28%;
  animation-delay: 1s;
}
.pin--2 {
  left: 65%;
  top: 27%;
  animation-delay: 1.2s;
}
.pin--3 {
  left: 72%;
  top: 50%;
  animation-delay: 1.4s;
}
.pin--4 {
  left: 36%;
  top: 63%;
  animation-delay: 1.6s;
}
.pin--5 {
  left: 36%;
  top: 41%;
  animation-delay: 1.8s;
}
.pin--6 {
  left: 44%;
  top: 50%;
  animation-delay: 2.0s;
}

.p-top-scene .sp_mv-wrapper .pin {
  width: 27%;
  height: 9%;
}
.p-top-scene .sp_mv-wrapper .pin .pin-label {
  width: 100%;
  height: 39%;
}
.p-top-scene .sp_mv-wrapper .pin .pin-icon {
  width: 100%;
  height: 43%;
}
.p-top-scene .sp_mv-wrapper .pin--1 {
  left: 55%;
  top: 11%;
}
.p-top-scene .sp_mv-wrapper .pin--2 {
  left: 69%;
  top: 22%;
}
.p-top-scene .sp_mv-wrapper .pin--3 {
  left: 63%;
  top: 56%;
}
.p-top-scene .sp_mv-wrapper .pin--4 {
  left: 13%;
  top: 47%;
}
.p-top-scene .sp_mv-wrapper .pin--5 {
  left: 17%;
  top: 28%;
}
.p-top-scene .sp_mv-wrapper .pin--6 {
  left: 36%;
  top: 35%;
}

.popup {
  top: 0;
  width: 60%;
  height: 100%;
  background: #FFF;
  z-index: 99;
  position: absolute;
  box-shadow: 0 0 10px 0px #000;
  transition: all 0.3s ease;
}
.popup.popup-left {
  left: 0;
  transform: translateX(-120%);
}
.popup.popup-right {
  right: 0;
  transform: translateX(120%);
}
.popup.is-active {
  display: block;
  transform: translateX(0);
}
.popup-header {
  position: absolute;
  width: 100%;
  height: 8%;
  text-align: right;
  padding: 1%;
  box-sizing: border-box;
  z-index: 10;
}
.popup-header .close-btn {
  width: 8%;
  height: 100%;
  border: 0;
  background: none;
  cursor: pointer;
}
.popup-header .close-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.popup-header .close-btn:hover {
  filter: brightness(0.5);
}
.popup-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  padding: 0;
  overflow-y: auto;
  padding-bottom: 30px;
  box-sizing: border-box;
  z-index: 1;
}
.popup-content .popup-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1 / 0.167;
    color: #FFF;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 28px;
    font-weight: 500;
    padding: 0 3rem;
}
.popup-content .popup-title::before {
  content: "";
  display: inline-block;
  height: 3px;
  width: 20px;
  background: #FFF;
}
.popup-content .popup-title::after {
  content: "";
  display: inline-block;
  height: 3px;
  width: 20px;
  background: #FFF;
}
.popup-image {
  width: 100%;
  margin: 0 auto;
}
.popup-image img {
  width: 100%;
  height: auto;
  display: block;
}
.popup-body {
  display: flex;
  flex-wrap: wrap;
  align-self: flex-start;
  justify-content: center;
  box-sizing: border-box;
  padding: 1rem;
  margin: 1rem 1rem 0;
  border: 2px solid #2fbadc;
  border-radius: 10px;
}
.popup-body .item {
  width: 30%;
  margin: 1%;
}
.popup-body .item a {
  text-decoration: none;
  text-align: center;
  display: block;
  color: #000000;
  font-size: var(--fsize-small);
  transition: all 0.3s ease;
}
.popup-body .item a > * {
  color: #000000;
  font-size: var(--fsize-small);
}
.popup-body .item img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}
.popup-body .item a:hover img {
  filter: drop-shadow(2px 4px 6px black);
}
.popup-body .item a:hover {
  color: #2fbadc;
}

.popup-footer {
  margin-top: 20px;
  text-align: center;
}
.popup-footer a.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2EBADC;
  color: #FFF;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}
.popup-footer a.button:hover {
  background-color: #FFF;
  color: #2EBADC;
}

.p-footer-menu {
  display: none;
}

@media only screen and (max-width: 768px) {
  .p-top-scene {
    width: 100vw;
    min-height: calc(100vw * 1.4);
    height: 100vh;
  }
  .p-top-scene .sp_mv-wrapper {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  .p-top-scene .pc_mv-wrapper {
    display: none;
  }
  .p-top-scene .header .p-logo {
    max-width: 60vw;
  }

  .p-footer-menu {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100vw;
    gap: 1px;
    background: #FFF;
    z-index: 9;
  }
  .p-footer-menu > a.btn01 {
    --btn-bgColor: #d26e5f;
    --btn-txtColor: #fff;
  }
  .p-footer-menu > a.btn02 {
    --btn-bgColor: #a9c25d;
    --btn-txtColor: #fff;
  }
  .p-footer-menu > a.btn03 {
    --btn-bgColor: #469099;
    --btn-txtColor: #fff;
  }
  .p-footer-menu > a {
    display: flex;
    position: relative;
    width: 33.33%;
    text-align: center;
    padding: 1rem 2rem 1rem 1rem;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: var(--btn-bgColor);
    color: var(--btn-txtColor);
    text-decoration: none;
    --v-iconColor: var(--btn-txtColor);
  }
  .p-footer-menu > a .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
  }
  .p-footer-menu > a:hover {
    color: var(--btn-bgColor);
    --v-iconColor: var(--btn-bgColor);
    background-color: var(--btn-txtColor);
  }

}

