@charset "UTF-8";
/* 全体レイアウト */
.invite-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}

/* ログイン案内エリア */
.login-notice {
  background-color: #e9f2ff;
  border-left: 6px solid #3399ff;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 6px;
  font-size: 1rem;
}

.login-button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 28px;
  background-color: #337ab7;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s;
}

.login-button:hover {
  background-color: #235a91;
}

/* セクション共通 */
.section {
  margin-bottom: 40px;
}

/* 強調引用（名言） */
.highlight-quote {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ff6600;
  text-align: center;
  margin: 25px 0 10px 0;
  line-height: 1.6;
}

/* 出典（右寄せ） */
.quote-source {
  text-align: right;
  font-style: italic;
  color: #777;
  margin-bottom: 20px;
}

/* 入会ボタン */
.register-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 30px auto;
  padding: 14px;
  background-color: #ff6b3e;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(255, 107, 62, 0.3);
  transition: background-color 0.3s;
}

.register-button:hover {
  background-color: #e5532b;
}

/* 料金表 */
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.price-list li {
  padding: 8px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid #ddd;
}