@charset "utf-8";

/* ==================== */
/* style.css            */
/* ==================== */
/* -------------------- */
/* Body Contents        */
/* -------------------- */
.sub_content_body{
    background-image: url("../img/subhead.jpg");
    width: 100%;
    padding-top: 350px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-family: "Noto Serif JP", 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ 明朝", serif;

    background-size: cover;       /* 画像を要素全体にフィットさせる */
    background-position: center;  /* 中央配置 */
    background-repeat: no-repeat; /* 繰り返しなし */

    color: white;
    text-shadow:
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
}
.content_title {
    color: #fff;

    text-align: center;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}


.sub_body_text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.sub_text {
  align-items: center;
  justify-content: center;
}

.Products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px; /* お好みで間隔調整 */
  list-style: none;
  padding: 0;
  margin: 0;
}

.Products li img {
  width: 100%;
  height: auto;
  display: block;
}

/* スマートフォンサイズでは1列にする */
@media screen and (max-width: 768px) {
  .Products {
    grid-template-columns: 1fr;
  }
}



