/* 全体のレイアウト調整 */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background-image: url(../images/emma.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #464646;
  font-family: sans-serif; /* お好みのフォントへ変更してください */
}

/* 中央配置のコンテナ（前回分を維持） */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px; /* 上下に少し余裕を */
  box-sizing: border-box;
}

h1 {
  color: #fff;
  font-size: clamp(4rem, 15vw, 13rem); 
  margin: 0;
  text-align: center;
  line-height: 1.1;
  display: flex;
  flex-direction: column; /* サブタイトルを上に配置 */
  align-items: center;
}

.title {
  font-size: clamp(1rem, 3vw, 1.5rem); /* 大きすぎず、読めるサイズに */
  letter-spacing: 0.3em;
  font-weight: normal;
  margin-bottom: -1rem; /* EMMAとの距離を調整 */
  opacity: 0.9;
}

.sub-text {
  color: #fff;
  font-size: 1.1rem;
  margin-top: 2rem;
  text-align: center;
  letter-spacing: 0.1em;
}

.info-section {
  color: #eee;
  max-width: 600px;
  margin-top: 4rem; /* 上の要素としっかり離す */
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.8;
  background: rgba(0, 0, 0, 0.2); /* 背景に少し馴染ませる */
  padding: 20px;
  border-radius: 8px;
}

.info-section h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  padding-bottom: 5px;
}