@charset "utf-8";

.title {
  background: #f7f4ef;           /* やわらかい生成り */
  padding: 28px 20px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 32px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
margin-top: 150px;
}

.title h2 {
  font-size: 26px;
  letter-spacing: 0.05em;
  color: #5f6f52;                /* くすみグリーン */
  margin-bottom: 8px;
  font-weight: 600;
}

.title p {
  font-size: 14px;
  color: #7a7a7a;
  line-height: 1.8;
}
.title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d8cfc4;
  margin: 10px auto 0;
  border-radius: 2px;
}

.blog-card {
  background: #fffdf9;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.blog-flex {
  display: flex;
  gap: 20px;
  align-items: center;
}

.blog-text {
  flex: 1;
}

.blog-text h3 {
  font-size: 40px;
  color: #5f6f52;
  margin-bottom: 6px;
}

.date {
  font-size: 25px;
  color: #a0a0a0;
  margin-bottom: 10px;
}

.excerpt {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.blog-img img {
  width: 400px;
  height: auto;
  border-radius: 12px;
}



.month {
  margin: 32px 0 12px;
  font-size: 16px;
  color: #7a7a7a;
  border-left: 4px solid #d8cfc4;
  padding-left: 10px;
}
/* ポップアップ */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.modal-content {
  background: #fffdf9;
  margin: 2% auto;
  padding: 24px;
  border-radius: 16px;
  width: 90%;
  max-width: 1000px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
}

.close {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 22px;
  cursor: pointer;
  color: #999;
}
.blog-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.modal-img {
  text-align: center;
  margin: 14px 0 18px;
}

.modal-img img {
 
  width: 50%;
  border-radius: 12px;
}

.modal-content p{
  font-size: 20px;
  line-height: 25px;
}
.modal-content h3{
  text-align: center;
  font-size: 25px;
  padding: 20px;
  color: #aca3a3;
}


/* ポップアップエンド */

@media (max-width: 768px) {
  .blog-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-img img {
    width: 100%;
  }

  .title{
    margin-top: 70px;
  }

  .blog-card{
    margin-bottom: 100px;
  }
  .blog-card h3{
    font-size: 20px;
  }

  .blog-flex p{
    font-size: 15px;

  }

/* ポップアップ */
.modal-content h3{
  font-size: 16px;
}

.modal-content p{
  font-size: 13px;
}

.modal-img img {
  width: 100%;
}


/* ポップアップエンド */