/**
 * 利用規約ページ用スタイル
 */

.favtown-term-of-use {
    margin: 0 auto;
    padding: 40px 24px;
}

.container {
    width: 100%;
}

.title-area {
    text-align: center;
    margin-bottom: 60px;
}

.term-of-use-title-en {
    
    font-weight: 600;
    font-size: var(--28px);
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: #156fc6;
    margin: 0;
    margin-bottom: 16px;
}

.term-of-use-title-ja {
    
    font-weight: 600;
    font-size: var(--18px);
    line-height: 1.7;
    letter-spacing: 0.05em;
    color: #27292b;
}

/* 利用規約コンテンツエリア */
.term-of-use-content {
    margin-bottom: 40px;
}

.term-of-use-article {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.term-of-use-article section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.term-of-use-article h2 {
    
    font-weight: 600;
    font-size: var(--18px);
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: #27292b;
    margin: 0;
}

.term-of-use-article p {
    
    font-weight: 500;
    font-size: var(--14px);
    line-height: 1.9;
    color: #27292b;
    margin: 0;
}

.term-of-use-article ol {
    padding-left: 1.5em;
    margin: 0.5em 0;
    counter-reset: item;
}

.term-of-use-article ol li {
    
    font-weight: 500;
    font-size: var(--14px);
    line-height: 1.9;
    color: #27292b;
    display: block;
    position: relative;
}

.term-of-use-article ol > li {
    counter-increment: item;
}

.term-of-use-article ol > li::before {
    content: counter(item) ".";
    position: absolute;
    left: -1.5em;
}

.term-of-use-article ol.paren-numbered {
    counter-reset: subitem;
    padding-left: 1.5em;
    margin: 0;
}

.term-of-use-article ol.paren-numbered li {
    counter-increment: subitem;
}

.term-of-use-article ol.paren-numbered li::before {
    content: counter(subitem) ")";
    position: absolute;
    left: -1.5em;
}

.term-of-use-article ol.paren-alphabet {
    counter-reset: subitem;
    padding-left: 1.5em;
    margin: 0;
}

.term-of-use-article ol.paren-alphabet li {
    counter-increment: subitem;
}

.term-of-use-article ol.paren-alphabet li::before {
    content: counter(subitem, lower-alpha) ")";
    position: absolute;
    left: -1.5em;
}


.term-of-use-article .text-right {
    text-align: right;
}

.term-of-use-date {
    text-align: right;
    
    font-weight: 500;
    font-size: var(--14px);
    line-height: 1.9;
    color: #27292b;
    margin-top: 24px;
}
