body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    background-color: #f4f7f6; /* 清潔感のある背景色 */
}

header {
    background: #2c3e50; /* 紺色系で公式感を出す */
    color: white;
    padding: 1rem;
    text-align: center;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

.rule-card {
    background: white;
    border-left: 5px solid #e74c3c; /* 禁止事項は赤色の線で強調 */
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.btn-discord {
    display: inline-block;
    padding: 10px 20px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: opacity 0.3s;
}

/* ヘッダーのアイコン */
header h1 img {
    width: 50px;           /* アイコンのサイズ */
    height: auto;
    border-radius: 50%;    /* 丸くしたい場合はこれを入れる */
}

/* ボタンの中のアイコン共通設定 */
.link-buttons a img {
    width: 20px;           /* ボタン内のアイコンサイズ */
    height: auto;
    vertical-align: -4px;  /* 文字との高さを微調整 */
    margin-right: 8px;     /* アイコンと文字の間の隙間 */
}