.site-footer {
    background-color: #4a74ff;
    color: white;
    padding: 40px 20px;
  }
  
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-col {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-left .logo {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
  }
  
  .footer-left .jp {
    font-size: 18px;
    font-weight: normal;
  }
  
  .footer-left p,
  .footer-left a {
    font-size: 14px;
    line-height: 1.8;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    display: inline-block;
    padding-bottom: 2px;
  }
  
  .footer-right iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 6px;
  }
  
  @media screen and (max-width: 768px) {
    .footer-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-right iframe {
      height: 250px;
    }
  
    .footer-col {
      width: 100%;
    }
  }
  