.summer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 16px 80px;
  background: #fff;
}

.summer-wrap .summer-link {
  display: inline-block;
  padding: 22px 60px;
  background: #c8161d;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.summer-wrap .summer-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.summer-wrap .summer-img {
  display: block;
  width: 100%;
  max-width: 960px;
  height: auto;
}

@media screen and (max-width: 700px) {
  .summer-wrap {
    padding: 74px 8px 48px;
    gap: 16px;
  }

  .summer-wrap .summer-link {
    padding: 14px 16px;
    font-size: 15px;
  }

  /* メニュートグル（ハンバーガー）位置を明示 — static position計算の差異対策 */
  #toggle {
    top: 0 !important;
    margin-top: 0 !important;
  }
  #toggle span {
    top: 24px;
  }
}
