@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url("https://fonts.googleapis.com/css2?family=DotGothic16&family=Montserrat&family=Oswald:wght@500&family=VT323&display=swap");
@import url(https://use.fontawesome.com/releases/v6.4.2/css/all.css);
@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

body {
  font-family: "Roboto", Arial, sans-serif;
  background: #e9e9e9;
  margin: 0;
  padding: 0;
}

.hub-header {
  background: #ff8040;
  color: #ffffff;
  padding: 2rem 0 1rem 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.hub-header h1 {
  font-family: "DotGothic16", sans-serif;
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
}
.hub-header p {
  margin: 0.5rem 0 0 0;
  font-size: 1.2rem;
  font-weight: 400;
}

.topics__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.topics__item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 140px;
}
.topics__item:hover {
  box-shadow: 0 4px 24px rgba(78, 84, 200, 0.15);
}
.topics__item--list {
  flex-direction: row;
  min-height: 120px;
}
.topics__pic img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.topics__pic--list {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .topics__pic--list {
    width: 175px;
    height: 175px;
    min-width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .topics__pic--list {
    width: 125px;
    height: 125px;
    min-width: 150px;
  }
}
.topics__pic--list img {
  object-fit: cover;
  border-radius: 8px;
}
@media only screen and (min-width: 768px) {
  .topics__pic--list img {
    width: 150px;
    height: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .topics__pic--list img {
    width: 125px;
    height: 125px;
  }
}
.topics__content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
@media only screen and (min-width: 768px) {
  .topics__content {
    height: 175px;
  }
}
@media only screen and (max-width: 767px) {
  .topics__content {
    height: 150px;
  }
}
.topics__ttl {
  margin-bottom: 0.5rem;
}
.topics__ttl h3 {
  font-family: "DotGothic16", sans-serif;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .topics__ttl h3 {
    position: absolute;
    font-size: 25px;
    top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .topics__ttl h3 {
    position: absolute;
    top: 10px;
    font-size: 20px;
  }
}
.topics__ttl p {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .topics__ttl p {
    font-size: 1.25rem;
    font-weight: 700;
  }
}
@media only screen and (max-width: 767px) {
  .topics__ttl p {
    font-size: 1rem;
    font-weight: 700;
  }
}
.topics__ttl a {
  text-decoration: none;
  color: #262831;
  text-align: left;
  transition: color 0.2s;
}
.topics__ttl a:hover {
  color: #0046ff;
}
.topics__date {
  position: absolute;
  color: #0046ff;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: right;
  bottom: 10px;
  right: 20px;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .hub-header h1 {
    font-size: 1.5rem;
  }
  .topics__list {
    padding: 1rem;
    gap: 1rem;
  }
}/*# sourceMappingURL=style.css.map */