/* 全体のスタイル */
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  background-color: #fff;
  min-height: 100vh;
  overflow-x: hidden; /* 横スクロールを防止 */
}

.content {
  flex: 1;
  padding-top: 80px; /* ヘッダーの高さ分の余白 */
  padding-bottom: 80px; /* フッターの高さ分の余白 */
}

/* メインセクションのスタイル */
.main-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  min-height: 100vh;
  justify-content: center; /* 中央寄せ */
  position: relative;
  top: -30%; /* ページ全体の半分より少し上に配置 */
}

.content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: nowrap;
  max-width: 1200px;
  width: 100%;
  padding-bottom: 20px;
}

.text-section {
  text-align: center;
}

.main-logo {
  width: 250px;
  display: block;
  margin: 0 auto;
}

.subtitle {
  font-size: 1.4em;
  color: #777;
  margin: 10px 0 0;
}

.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.crypto-container {
  position: relative;
  width: 350px;
  height: 350px;
}

.crypto-base {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト配置 */
.text-below-logo {
  color: #555;
  text-align: center;
  line-height: 1.6;
  max-width: 800px;
  margin: 20px auto;
  font-size: 1em;
  padding: 0 20px;
}
