/* --- Section --- */
.section-group-link {
  margin-bottom: 0px;
  margin-top: 50px;
}
 
.section-group-link__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}
 
/* --- Card --- */
.group-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 20px 28px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease;
}
 
.group-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
 
/* --- Logo Area --- */
.group-card__logo {
  flex-shrink: 0;
  width: 120px;
  height: auto;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.group-card__logo-img {
  max-width: 80%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
}
 
/* --- Body --- */
.group-card__body {
  flex: 1;
  min-width: 0;
}
 
.group-card__name {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
 
.group-card__sub {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}
 
/* --- Arrow --- */
.group-card__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #004ea2;
  position: relative;
}
 
.group-card__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-60%, -50%) rotate(45deg);
}
 
/* --- 1024px以下 --- */
@media screen and (max-width: 1024px) {
  .section-group-link {
    padding: 40px 0;
  }
 
  .group-card {
    gap: 20px;
    padding: 18px 24px;
  }
}
 
/* --- 599px以下 --- */
/* --- 599px以下 --- */
@media screen and (max-width: 599px) {
  .section-group-link {
    padding: 32px 0;
  }

  .section-group-link__inner {
    padding: 0 16px;
  }

  .group-card {
    gap: 12px;
    padding: 14px 16px;
    /* flex-direction: column; ← これを削除 */
  }

  .group-card__logo {
    width: 70px;
  }

  .group-card__logo-img {
    max-width: 100%;
  }

  .group-card__name {
    font-size: 14px;
  }

  .group-card__sub {
    font-size: 11px;
  }

  .group-card__arrow {
    width: 28px;
    height: 28px;
  }
}
