/* 推奨フォント：優雅で繊細なセリフ体 */
body {
  font-family: 'Cormorant Garamond', 'Didot', 'Georgia', serif;
  font-weight: 300;
  color: #ffffff;
  background: linear-gradient(to bottom, #001c33, #002b45);
  text-align: center;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin: 0;
  padding: 0;
}

.box {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 3em 2.5em;
  max-width: 450px; /* ←ここを調整 */
  margin: 5em auto;
  box-shadow:
    0 0 30px rgba(255, 255, 255, 0.08),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}


/* タイトル（h1） */
h1 {
  font-size: 2.5em;
  font-weight: 300;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  margin-bottom: 0.8em;
}

/* サブタイトル（h2） */
h2 {
  font-size: 1.3em;
  font-weight: 300;
  margin: 1em 0 0.5em;
  padding-bottom: 0.2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

/* h3 見出し：影付き */
h3 {
  font-size: 1.1em;
  font-weight: 300;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-top: 1.5em;
}

h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.13);
  z-index: -1;
  border-radius: 3px;
}

/* h4：少し癖をつけたイタリック風 */
h4 {
  font-size: 1em;
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
  margin-top: 0.8em;
}
