/* 全体レイアウト */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* PC用：縦3分割 */
@media (min-width: 768px) {
  .container {
    flex-direction: row;
  }
}

/* 左右の背景ブロック */
.side {
  flex: 1;
  background: linear-gradient(to bottom, #1e3a5f, #2c2c2c);
  opacity: 0.2;
}

/* 中央ブロック */
.center {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  text-align: center;
  padding: 2rem;
}

.logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  color: #333;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .side {
    display: none;
  }

  h1 {
    font-size: 1.5rem;
  }

  .logo {
    max-width: 150px;
  }
}