@charset "UTF-8";
#RESULTS-CONTENT .container {
  display: flex;
  justify-content: space-between;
}
#RESULTS-CONTENT .container .left {
  width: 70%;
}
#RESULTS-CONTENT .container .left .time {
  text-align: right;
  margin-bottom: 40px;
  color: #888;
}
#RESULTS-CONTENT .container .left .content .ttl {
  font-weight: bold;
}
#RESULTS-CONTENT .container .left .content .ttl::before {
  content: "■";
  margin-right: 8px;
}
#RESULTS-CONTENT .container .left .content .text {
  margin-bottom: 24px;
}
#RESULTS-CONTENT .container .left .content .text:last-child {
  margin-bottom: 0;
}
#RESULTS-CONTENT .container .left .content .text li {
  list-style: disc;
  margin-left: 24px;
}
#RESULTS-CONTENT .container .left .connection h3 {
  text-align: left;
}
#RESULTS-CONTENT .container .left .connection .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
#RESULTS-CONTENT .container .left .connection .grid .card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
#RESULTS-CONTENT .container .left .connection .grid .card .img img {
  transition: transform 0.3s ease;
}
#RESULTS-CONTENT .container .left .connection .grid .card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
#RESULTS-CONTENT .container .left .connection .grid .card:hover .img img {
  transform: scale(1.05);
}
#RESULTS-CONTENT .container .left .connection .grid .card .text {
  padding: 16px;
}
#RESULTS-CONTENT .container .left .connection .grid .card .text .name {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#RESULTS-CONTENT .container .left .connection .grid .card .text .date {
  display: block;
  font-size: 12px;
  color: #888;
}
#RESULTS-CONTENT .container .left hr {
  border: none;
  border-bottom: 1px solid #ccc;
  margin: 40px 0;
}
#RESULTS-CONTENT .container .left .bnr {
  padding: 80px 0 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
#RESULTS-CONTENT .container .left .bnr:has(.img:nth-child(2)):not(:has(.img:nth-child(3))) {
  grid-template-columns: repeat(2, 48%);
  justify-content: space-between;
}
#RESULTS-CONTENT .container .left .bnr .img a:hover {
  opacity: 0.7;
  transition: 0.3s ease;
}
#RESULTS-CONTENT .container .right {
  width: 25%;
}
#RESULTS-CONTENT .container .right .img {
  margin-bottom: 24px;
}
#RESULTS-CONTENT .container .right .img:last-of-type {
  margin-bottom: 0;
}
#RESULTS-CONTENT .container .right .img a:hover {
  opacity: 0.7;
  transition: 0.3s ease;
}
@media (max-width: 768px) {
  #RESULTS-CONTENT .container {
    flex-direction: column;
  }
  #RESULTS-CONTENT .container .left {
    width: 100%;
  }
  #RESULTS-CONTENT .container .left .connection .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  #RESULTS-CONTENT .container .left .bnr {
    padding: 40px 0 60px;
    grid-template-columns: repeat(1, 1fr);
  }
  #RESULTS-CONTENT .container .left .bnr:has(.img:nth-child(2)):not(:has(.img:nth-child(3))) {
    grid-template-columns: repeat(1, 100%);
  }
  #RESULTS-CONTENT .container .right {
    display: none;
  }
}