body {
  background: #0f1622;
  color: #e6e6e6;
  font-family: "Times New Roman", "Yu Mincho", "游明朝", "MS Mincho", "MS Ｐ明朝", serif;
  margin: 0;
}

/* --- ヘッダーの修正 --- */
header {
  text-align: center;         /* 中央寄せ */
  padding: 24px 20px;         /* 帯を上下に2mmほど（約8pxずつ）太く調整 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* 軽い境界線 */
}

.site-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

/* グレイッシュな水色フォントに設定 */
.site-sub {
  color: #9ab2c5;             /* グレイッシュな水色 */
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

/* --- メインコンテンツ --- */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero-card {
  background: rgba(20, 30, 50, 0.65);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  padding: 120px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* --- メインの文字（空、蘭、花など） --- */
.display-word {
  font-family: "Yu Mincho", "游明朝", serif; /* 日本語の美しい明朝体を指定 */
  font-size: clamp(7rem, 14vw, 15rem);
  font-weight: 300;           /* 線を少し細く、繊細にすることで上品さを際立たせます */
  line-height: 1;
  margin-bottom: 40px;
  transition: color 0.8s ease;
  user-select: none;
  cursor: pointer;
}

/* 特定商取引法ページなどの汎用的なスタイル */
article {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* 「運営者情報」などの見出しをスタイリッシュに */
article h2 {
  font-size: 1.3rem;          /* 大きすぎず程よいサイズ */
  color: #9ab2c5;             /* 濃すぎず、ヘッダーと統一感のあるグレイッシュ水色 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
  margin-top: 40px;
}

/* 特定商取引法のテーブル（表）にする場合の見栄え調整 */
article table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

article th, article td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

article th {
  color: #9ab2c5;
  width: 30%;
  font-weight: normal;
}

.utility {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 80px;
  text-align: center;
}

.utility a {
  color: #9ab2c5;
  text-decoration: none;
  transition: color 0.3s;
}

.utility a:hover {
  color: #b0c4de;
}


/* プロトンドライブのホバー演出 */
.proton-link::after {
  content: " (Password: lang_jp)";
  font-size: 0.85em;
  opacity: 0.5;
  transition: opacity 0.3s, margin 0.3s;
  display: inline-block;
  margin-left: 4px;
}

/* スマホやPCでホバーした時に少しだけ不透明度を上げて見やすくする */
.proton-link:hover::after {
  opacity: 0.9;
  color: #9ecbff; /* パステルブルーに光らせる */
}
