@charset "UTF-8";

body {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: #333;
  background: #faf7f2;
  margin: 0;
  padding: 20px;
}
.wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 36px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.blog-header {
  border-bottom: 4px solid #44617b;
  padding-bottom: 14px;
  margin-bottom: 28px;
  position: relative;/*相対配置*/

}
.blog-header h1 {
  font-size: 28px;
  margin: 0 0 6px 0;
  position: absolute;/*絶対配置*/
  color:#44617b;
  /*text-shadow: 1px 1px #44617b;*/ 
  top: 42%;
  left: 14%;
  /*color: #2d4a33;*/
  transform: translate(0%, -50%);

}
.blog-header p {
  font-size: 14px;
  position: absolute;/*絶対配置*/
  color: #white;
  top: 55%;
  left: 14%;
  height:40px;
  margin: 4px 0;
}
.blog-header .gyomuicon {
  position: absolute;/*絶対配置*/
  top: 15%;
  left: 90%;
  height:60%;
  margin: 4px 0;
}
.blog-header .update-date {
  font-size: 12px;
  position: absolute;/*絶対配置*/
  color: #white;
  top: 60%;
  left: 90%;
  height:60%;
  margin: 4px 0;
}
.blog-header .office {
  font-size: 12px;
  position: absolute;/*絶対配置*/
  color: #white;
  top: 7%;
  left: 88%;
  margin: 4px 0;
}
.category-section {
  margin-bottom: 32px;
}
.category-section h2 {
  font-size: 20px;
  margin: 0 0 12px 0;
  padding-left: 12px;
  border-left: 5px solid #44617b;
  color: #2d4a33;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}
.article-card {
  background: #f9fbf9;
  border: 1px solid #e0e8e0;
  border-radius: 8px;
  padding: 12px 14px;
  transition: 0.2s;
}
.article-card:hover {
  background: #eaf3ec;
  border-color: #4a7c59;
}
.article-card a {
  text-decoration: none;
  color: inherit;
}
.article-card .category-tag {
  display: inline-block;
  font-size: 11px;
  background: #d4edda;
  color: #2d4a33;
  padding: 1px 8px;
  border-radius: 10px;
  margin-bottom: 4px;
}
.article-card h3 {
  font-size: 15px;
  margin: 4px 0;
  color: #2d4a33;
}
.article-card p {
  font-size: 12px;
  color: #666;
  margin: 2px 0 0 0;
}
.blog-header .update-date {
  font-size: 12px;
  color: #aaa;
}
.site-footer {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 2px solid #e0e0e0;
  font-size: 13px;
  color: #999;
  text-align: center;
}


