/* footer {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #cfeaff;
  padding: 20px;
  font-family: sans-serif;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  top: 1200vh;
} */



.footer-left {
  display: flex;
  flex-direction: column;
  margin-left: 2.5%;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  margin-left: 0%;
}

.sns-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-right: 20%;
}

.sns-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit; 
  font-size: 30px; 
  /* margin: 0 10px; */
  transition: transform 0.3s ease, color 0.3s ease;
}

.sns-icons a:hover {
  transform: scale(1.2);     /* 拡大 */
}


.sns-icons img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}



.footer-right {
  position: relative;
  max-width: 55%;
}

.footer-right .landing {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  position: absolute; 
  bottom: 55%;      
  right: 40%;          
  width: 20%;       /* サイズ */
  height: auto;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;

  animation: jump 3s infinite ease-in-out;
}

.footer-right .landing.show {
  display: block;
  opacity: 1;
}

.footer-right .landing.hide {
  opacity: 0;
}

@keyframes jump {
  0%, 30%, 70%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20vh);
  }
}

.campus-photo {
  width: 100%;
  border-radius: 10px;
  z-index: 2;
}

.campus-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: white;
  padding: 10px 20px;
  border-radius: 10px;
  text-align: left;
}

.label-small {
  font-size: 12px;
  color: #71aee6;
  display: block;
  margin-bottom: 4px;
}

.label-large {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
