/* ==========================================================================
   LEGAL PAGES CSS (特定商取引法 / プライバシーポリシー)
   ========================================================================== */




.legal-main {
    background-color: #fff;
    padding-bottom: 80px;
}

.legal-page-container {
    max-width: 900px;
    margin: 60px auto 80px auto;
    padding: 0 20px;
}

.legal-page-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

/* Optional: small yellow underline under title similar to Storefront styling */
.legal-page-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FCDF00;
    margin: 15px auto 0 auto;
}

/* ==========================================================================
   TABLE STYLING FOR TOKUTEI PAGE
   ========================================================================== */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    border-top: 1px solid #e5e5e5;
}

.legal-table th, 
.legal-table td {
    border-bottom: 1px solid #e5e5e5;
    padding: 24px;
    text-align: left;
    vertical-align: top;
    line-height: 1.8;
}

.legal-table th {
    background-color: #f9f9f9;
    width: 30%;
    font-weight: 600;
    color: #444;
}

.legal-table td {
    width: 70%;
    color: #333;
}

/* ==========================================================================
   PRIVACY POLICY STYLING
   ========================================================================== */
.privacy-policy-content {
    color: #333;
    line-height: 1.8;
}

.privacy-policy-content h2 {
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 2.5em;
    margin-bottom: 1.2em;
    color: #444;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

.privacy-policy-content p {
    margin-bottom: 1.5em;
}

.privacy-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2em;
}

.privacy-list > li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.8em;
}

.privacy-list > li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #333;
}

.privacy-sublist {
    list-style-type: none;
    padding-left: 1.5em;
    margin-top: 0.8em;
    margin-bottom: 0.8em;
}

.privacy-sublist > li {
    position: relative;
    padding-left: 1em;
    margin-bottom: 0.5em;
}

.privacy-sublist > li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #333;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS (< 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .legal-page-container {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .legal-page-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .legal-table th, 
    .legal-table td {
        display: block;
        width: 100%;
        padding: 15px 10px;
    }
    
    .legal-table th {
        border-bottom: none;
        background-color: #f3f3f3;
        padding-bottom: 10px;
    }
    
    .legal-table td {
        border-top: none;
        margin-bottom: 15px;
        padding-top: 0;
    }
}





@media (max-width: 550px) {
    .legal-page-container {
       padding: 0;
       
    }
	
	 .privacy-list {

        margin-left: 0;
    }
}

