@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 {
  margin: 40px;
  height: 100vh;
  display: flex;
}

.sidebar {
  width: 200px;
  padding: 20px;
  box-sizing: border-box;
}

.sub_text ul {
  list-style: none;
  padding: 20px;
}

.sub_text li {
  margin-bottom: 10px;
  color: #00000
  ;
}

.content {
  flex-grow: 1;
  padding: 20px;
  background-color: #fff;
  box-sizing: border-box;
}


