
section#info {
  margin-top: 150px;
  text-align: center;
}
section#info p#logo {
  margin: 10px;
  width: auto;
  text-align: center;
}
section#info p#logo img {
  width: 400px;
  height: auto;
  margin: 0px auto;
}
section#info p#cmt {
  text-align: center;
  font-size: 26px;
}




div.topimage_wrap {
  width: 100%;
}
@media (min-width: 599px) {
  div.topimage_wrap a {
    display: flex;
    justify-content: center;     /* 横方向中央（任意） */
    align-items: center;
    width: 100%;         /* 縦方向中央揃え */
    max-width: 1180px;
    aspect-ratio: 2 / 1;        /* 縦横比を1:1に固定（正方形） */
    object-fit: cover;          /* はみ出しを調整したい場合 */
    overflow: hidden;            /* はみ出し防止 */
    text-decoration: none;
  }
}
@media (max-width: 600px) {
  div.topimage_wrap a {
    display: flex;
    justify-content: center;     /* 横方向中央（任意） */
    align-items: center;
    width: 100%;         /* 縦方向中央揃え */
    max-width: 1180px;
    aspect-ratio: 1 / 1;        /* 縦横比を1:1に固定（正方形） */
    object-fit: cover;          /* はみ出しを調整したい場合 */
    overflow: hidden;            /* はみ出し防止 */
    text-decoration: none;
  }
}
div.topimage_wrap a img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 599px) {
  section.information {
    width: 50%;
    margin-top: 20px;
    padding: 10px;
  }
}
@media (max-width: 600px) {
  section.information {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
  }
}
section.information h3 {
  padding: 0px 5px 10px;
  font-size: 20px;
}
section.information article {
  margin: 0px 0px 0px;
  padding: 0px 8px 8px;
  width: 100%;
  border-bottom: 1px dotted #333333;
}
section.information article time {
  font-size: 11px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  
}
section.information article time::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 4px;
  vertical-align: middle;

  /* 右向き三角形 */
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid #000; /* 三角の色（黒） */
}
section.information article p {
  font-size: 14px;
}

@media (min-width: 599px) {
  section.category {
    width: 50%;
    margin-top: 20px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    gap: 5px;
  }
}
@media (max-width: 600px) {
  section.category {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    gap: 5px;
  }
}

section.category h3 {
  width: 100%;
  padding: 0px 5px 10px;
  font-size: 20px;
}
section.category a.category_link {
  border: 2px solid #eeeeee;
  border-radius: 10px;
  background-color: #eeeeee;
  width: calc(50% - 5px);
  height: auto;
  padding: 0 0 10px;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  color: #999999;
}
section.category a.category_link:hover {
  border: 2px solid #666666;
  color: #666666;
}
section.category a.category_link div.cat_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;                /* 横幅は親に合わせて可変 */
  aspect-ratio: 4 / 3;        /* 縦横比を1:1に固定（正方形） */
  overflow: hidden;            /* はみ出し防止 */
  margin-bottom: 10px;
  background-color: #f5f5f5;
  margin: 5% 5% 10px;
}
section.category a.category_link div.cat_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* ← ここに移動 */
  object-position: center;   /* 中央を基準に拡大表示 */
}

section.category a.category_link div.cat_name {
  line-height: 1.2;
  text-align: center;
}