:root {
  --deep-green: #2f8f86;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --tap: #f3f4f6;
  --footer-h: 130px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    'Hiragino Sans',
    'Noto Sans JP',
    'Segoe UI',
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: #ffffff;
  padding-bottom: var(--footer-h);
}

.header {
  background-image: url('../images/header.png'); /* ヘッダーの背景画像を設定 */
  background-repeat: repeat;
  background-size: cover;
  position: fixed; /* ヘッダーを固定 */
  top: 0; /* ヘッダーを画面上部に配置 */
  left: 0; /* ヘッダーを画面左端に配置 */
  width: 100%;
  height: 70px;
  z-index: 100; /* ヘッダーが他の要素の上に表示されるようにするために設定 */
  display: flex; /* Flexboxコンテナにする */
  align-items: center; /* 垂直方向に中央揃え */
  justify-content: center; /* 水平方向に中央揃え */
}

/* ヘッダーの中身 */
.header .header-content {
  position: relative;
}

.header .header-content .text {
  font-size: 27px;
  font-family: 'M PLUS 1';
  font-weight: 800;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 2px 2px 2px black;
}

.header .header-content .text::before {
  position: absolute;
  content: attr(data-content);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: rgba(0, 0, 0, 0);
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, #b9fcf5 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.main {
  padding-top: 70px; /* ヘッダーの高さ */
  padding-bottom: 70px; /* フッターの高さ */
}

.main .content {
  margin: 1%;
  /* border: solid 1px #000000; */
}

.main .content .title {
  display: flex; /* Flexboxコンテナにする */
  align-items: center; /* 垂直方向に中央揃え */
  justify-content: center; /* 水平方向に中央揃え */
  margin: 1%;
  font-size: 20px;
}

.main .content .text {
  margin: 1%;
  /* font-size: 20px; */
}

.main .content .text .image {
  text-align: center;
  margin: 5%;
}

.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 24px 40px;
}

.list {
  border-top: 2px solid var(--line);
}

.item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px;
  border-bottom: 2px solid var(--line);
  text-decoration: none;
  color: inherit;
  background: #fff;
}

.item:active {
  background: var(--tap);
}

.badge {
  font-size: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  border: 2px solid;
  font-weight: 800;
}

.badge.press {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #3730a3;
}

.badge.info {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #334155;
}

.badge.maintenance {
  background: #fff7ed;
  border-color: #fdba74;
  color: #9a3412;
}

.badge.alert {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}

.title {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.25;
  flex: 1;
}

.footer {
  background-image: url('../images/header.png'); /* ヘッダーの背景画像を設定 */
  background-repeat: repeat;
  background-size: cover;
  position: fixed; /* フッターを固定 */
  bottom: 0; /* フッターを画面下部に配置 */
  left: 0; /* フッターを画面左端に配置 */
  width: 100%;
  height: 70px;
  z-index: 100; /* フッターが他の要素の上に表示されるようにするために設定 */
  text-align: center;
  display: flex; /* Flexboxコンテナにする */
  align-items: center; /* 垂直方向に中央揃え */
  justify-content: center; /* 水平方向に中央揃え */
}

.badge2 {
  display: inline-block;
  font-size: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  border: 2px solid;
  font-weight: 800;
  margin-bottom: 16px;
}

.badge2.press {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #3730a3;
}

.badge2.info {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #334155;
}

.badge2.maintenance {
  background: #fff7ed;
  border-color: #fdba74;
  color: #9a3412;
}

.badge2.alert {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}

.title2 {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 12px;
}

.date {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.content {
  font-size: 17px;
  line-height: 1.8;
}

.content p {
  margin: 0 0 18px;
}

.notice-box {
  border: 2px solid var(--line);
  background: #f8fafc;
  padding: 18px 20px;
  border-radius: 8px;
  margin-top: 24px;
}
