/* 全体のリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
}

/* コンテナ全体 */
.container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* 左側セクション */
.left-section {
  flex: 1;
  background-color: #a0d8ff; /* 薄水色 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
}

/* ロゴのスタイル */
.logo {
  width: 450px;
  height: auto;
  margin-bottom: 60px;
  border-radius: 10px; /* 角を丸くする */

}

/* Google Fontsをインポート */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/* 説明テキスト */
.left-section p {
  font-family: 'Noto Sans JP', sans-serif; /* おしゃれで読みやすいフォント */
  font-size: 18px;
  line-height: 1.6; /* 行間を調整して読みやすく */
  color: #444; /* 少し濃い目のグレー */
  margin-bottom: 30px;
} /* ← ここに閉じる中括弧が必要 */

/* シャボン玉リンクコンテナ */
.bubble-links {
  display: flex;
  gap: 20px; /* バブル同士の間隔 */
  flex-wrap: wrap; /* 横幅が足りない場合に改行 */
  justify-content: center;
}

/* バブル内のテキスト */
.bubble {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  flex-direction: column; /* 縦方向に配置 */
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: transform 0.3s, background-color 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.bubble:hover {
  transform: scale(1.1); /* ホバー時に少し拡大 */
  background-color: #a6d1fe; /* 色を変える */
}

/* 英語テキストのスタイル */
.bubble .english {
  font-size: 10px; /* 小さめの文字サイズ */
  color: #aaa; /* 薄いグレー */
  font-weight: normal; /* 通常の太さ */
  margin-top: 5px; /* 上の文字と少し間隔を空ける */
}


/* 右側セクション */
/* mongon-section全体のスタイル */
.mongon-section {
  position: relative; /* テキストを重ねるために relative を設定 */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* 横幅を全体に広げる */
  height: 100vh; /* 画面全体を埋める */
  overflow: hidden; /* 画像のはみ出しを防ぐ */
}

/* 画像のスタイル */
.right-image {
  width: 100%; /* セクション全体の幅にフィット */
  height: 100%; /* セクション全体の高さにフィット */
  object-fit: cover; /* 画像が縦横比を保ちながらセクションを埋める */
  display: block; /* 画像をブロック要素に */
}

/* オーバーレイテキストのスタイル */
.overlay-text {
  position: absolute; /* テキストを画像の上に配置 */
  top: 50%; /* セクション中央に配置 */
  left: 50%;
  transform: translate(-50%, -50%); /* 完全に中央揃え */
  text-align: center;
  color: rgb(57, 57, 57); /* テキストの色 */
  white-space: nowrap; /* 自動改行を無効化 */
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 255, 255, 0.5),
    0 0 30px rgba(255, 255, 255, 0.3);
  opacity: 0; /* 初期状態は透明 */
  animation: slideIn 1.5s ease-out forwards; /* 1.5秒でスライドイン */
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -70%); /* 上から滑り込む */
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%); /* 元の位置に戻す */
  }
}




/* 左右セクションを等しく分割 */
.left-section,
.mongon-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0; /* パディングをリセット */
  overflow: hidden; /* 余分な部分を非表示 */
}