@charset "utf-8";
/* CSS Document */

.news-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PCF3—ñ */
  gap: 20px;
  margin: 30px auto;
  max-width: 1200px;
}

.news-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, opacity 0.3s;
}

.news-item:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* ‰æ‘œ */
.news-item img {
  width: 100%;
  display: block;
  border-bottom: 2px solid #f2f2f2;
}

/* ƒ^ƒCƒgƒ‹‘•ü */
.newstitle {
  font-size: 16px;
  color: #ff7879;
  font-weight: bold;
  margin: 10px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-align: left;
  font-family: "ƒqƒ‰ƒMƒmŠpƒS Pro W3", "Hiragino Kaku Gothic Pro", "ƒƒCƒŠƒI", Meiryo, Osaka, sans-serif;
}

.newstitle span {
  display: block;
  color: #4d4d4d;
  font-size: 14px;
  font-weight: normal;
  margin-top: 5px;
}

/* SP START */
@media (max-width: 768px){
  #header_logo{
    width:100%;
    text-align: center;
  }

.news-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }


} 
/* SP FIN */

@media (min-width: 768px) {
   .for-sp{
      display:none;
    }
}
