/* レイアウトのベース */
.terms-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    color: #333;
    line-height: 1.8;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ヘッダー部分（タイトル） */
.terms-header {
    border-bottom: 2px solid #003366; /* SHIZUCONE風のネイビー */
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.terms-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.terms-lead {
    font-size: 15px;
    color: #555;
}

/* 各条項（セクション） */
.terms-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #003366;
}

/* リストの整形 */
.terms-list {
    list-style: none;
    padding-left: 0;
}

.terms-list > li {
    margin-bottom: 10px;
}

.sub-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
}

.sub-list li {
    font-size: 0.95em;
    color: #444;
}
.module-item {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #fafafa;
  border-radius: 4px;
}
.module-item p {
  margin: 5px 0;
  line-height: 1.5;
  font-size: 0.95em;
}
.module-links {
  margin-top: 10px !important;
  font-weight: bold;
}
.terms-section a {
    color: #00A0FF;
    text-decoration: underline;
}
/* 附則・日付 */
.terms-meta {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: right;
    font-size: 14px;
    color: #666;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .terms-container {
        margin: 20px auto;
    }
    .terms-title {
        font-size: 20px;
    }
}