@charset "UTF-8";

body {
    background: #fff;
    background-image: none;
}

blockquote {
    background-color: #f9f9f9;
    border-left: 4px solid #ccc;
    margin: 15px 0;
    padding: 10px 20px;
    color: #555;
}

#info .sectionSet h2 {
    margin: 2.5rem auto 0.7rem;
}

#info .sectionSet p {
    margin: 1rem;
}

/* 必須情報などの強調ボックス（全体を太字の赤線で囲むスタイル） */
.info-list {
    background-color: #fff3f3;
    margin: 2rem;
    padding: 0 1rem 1.2rem;
    border: 2px solid #e70000;
    border-radius: 4px;
}

@media screen and (max-width: 768px) {
    .info-list {
        margin: 1rem 0;
    }
}

.info-list ul {
    margin: 0 1rem 0 1.7rem;
}

.info-list ul li {
    list-style-position: outside;
    list-style-type: disc;
    padding-bottom: 1rem;
}

.info-list ul li:last-child {
    padding-bottom: 0;
}

.info-list ul ol {
    margin: 0.5rem 0 0 1rem;
}
.info-list ul ol li {
    list-style-type: decimal;
    padding-bottom: 0.3rem;
}

/* その他・免責・注意事項（黒丸リスト） */
.checkList {
    margin: 0.1rem 1rem 0.1rem 3rem;
}

.checkList li{
    list-style-position: outside;
    list-style-type: disc;
    padding-bottom: 0.5rem;
}

.checkList li:last-child {
    padding-bottom: 0;
}

/* 著作物の利用許諾（番号付きリスト） */
.ordered-list {
    margin: 0.1rem 1rem 0.1rem 3rem;
}
.ordered-list li {
    display: list-item; /* リセットCSS対策 */
    list-style-position: outside;
    list-style-type: decimal; /* 1. 2. 3. */
    padding-bottom: 0.5rem;
}
.ordered-list li:last-child {
    padding-bottom: 0;
}

/* 禁止事項（入れ子になるリスト） */
.nested-list {
    margin: 0.1rem 1rem 0.1rem 3rem;
}
/* 親リスト（●） */
.nested-list li {
    display: list-item;
    list-style-position: outside;
    list-style-type: disc; /* ● */
    padding-bottom: 1rem; /* 入れ子があるので少し広めに */
}
.nested-list li:last-child {
    padding-bottom: 0;
}
/* 子リスト（〇） */
.nested-list ul {
    margin: 0.5rem 0 0 1.5rem; /* 子リスト全体のインデント */
}
.nested-list ul li {
    list-style-type: circle; /* 〇 */
    padding-bottom: 0.3rem;
}