/* サンプル カスタムCSS */
.custom-sample {
  background-color: #f0f8ff;
  padding: 20px;
  border: 2px solid #4a90e2;
  border-radius: 8px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.custom-sample h1 {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
}

.custom-sample p {
  color: #34495e;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .custom-sample {
    padding: 15px;
    margin: 10px;
  }
}
