#header-title {
    font-size: 28px;
    background-color: #A647D6;
    color: white;
    text-align: center;
    margin: 0px;
}
@media (max-width: 600px) {
  #header-title {
      font-size: 4.5vw;
  }
}

.header-title-container {
  width: 100%; /* 正方形のコンテナの幅 */
  height: 40px; /* 正方形のコンテナの高さ */
  display: flex;
  background-color: #A647D6;
}
  
.header-subtitle {
  font-size: 28px;
  color: #000056;
  text-align: center;
  font-weight:bold;
  margin: 0px;
  padding-top: 5px;
  padding-bottom: 1px;
}
@media (max-width: 600px) {
  .header-subtitle {
      font-size: 4.5vw;
  }
}

.header-subtitle-container {
  width: 100%; /* 正方形のコンテナの幅 */
  height: 40px; /* 正方形のコンテナの高さ */
  display: flex;
}

.header-container {
  height: 100%;
  justify-content: center;
  align-items: center;
}

.logo-img-container {
  width: 340px; /* 正方形のコンテナの幅 */
  height: 28px; /* 正方形のコンテナの高さ */
  margin-top: 7px;
  margin-bottom: 7px;
}

@media (max-width: 600px) {
  .logo-img-container {
    width: 250px; /* 正方形のコンテナの幅 */
    height: 20px; /* 正方形のコンテナの高さ */
    margin-top: 3px;
    margin-bottom: 7px;
  }
}

.logo-img-container img {
  width: 100%; /* 画像の幅をコンテナに合わせる */
  height: 100%; /* 画像の高さをコンテナに合わせる */
  object-fit: contain; /* 画像が歪まずにコンテナに収まるようにするために必要 */
}

header {
  position:fixed;
  top: 0px;
  width: 100%;
  height: auto;
  background:#fff;
  color:#fff;
  text-align:center;
  z-index: 1;
  align-items: center;
}

.header-img-container img {
  width: 100%;
  height: auto;
  max-height: 55px;
}

.header-img-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 20px;
  width: 100%; /* 画像の幅をコンテナに合わせる */
  height: auto; /* 画像の高さをコンテナに合わせる */
}

.header-img-parent {
  display: flex;
  justify-content: center; /* 水平中央に配置 */
  position: relative;
}
.header-background {
  position: absolute;
  top: 0;
  left: 0;
  background:#A647D6;
  width: 100%;
}
.info-container {
  height: auto;
  display: flex;
  justify-content: flex-end; /* 要素を右側に寄せる */
}
.item {
  background-color: lightblue; /* 任意のスタイルを追加 */
  
}