@charset "utf-8";

/* =========================================
   Policy Page Styles (Single Column)
   ========================================= */

/* --- Layout Structure --- */
.section-policy {
    padding: 80px 0;
    background-color: #fff;
}
.section-policy.bg-gray {
    background-color: #fcfcfc; /* ほんの少しグレー */
}

.container-policy {
    max-width: 1000px; /* 読みやすい幅に制限 */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Main Title (Centered with Blue Line) --- */
.policy-main-title {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    text-align: center !important;
    color: #333;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

/* 青い下線（画像のイメージ再現） */
.policy-main-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #003366; /* ユニテックブルー */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* --- Body Text --- */
.policy-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.policy-intro {
    margin-bottom: 40px;
    text-align: justify;
}

/* --- Privacy List (a, b, c...) --- */
.privacy-list-basic {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}
.privacy-list-basic li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}
.privacy-list-basic li span {
    font-weight: bold; /* a) b) を太字に */
}

/* --- Signatures --- */
.policy-signatures {
    text-align: right;
    margin-bottom: 50px;
    line-height: 1.6;
    font-size: 0.95rem;
}
.company-sign {
    margin-top: 20px;
    font-weight: bold;
}

/* --- Contact Box --- */
.contact-box {
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 40px;
}
.contact-box-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

/* --- ISO Mark Area (Bottom) --- */
.iso-area-bottom {
    display: flex;
    justify-content: flex-end; /* 右下に配置 */
    margin-top: 40px;
}
.iso-placeholder {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 2px solid #003366;
    color: #003366;
    background-color: #fff;
    padding: 10px;
    text-align: center;
}
.iso-placeholder .iso-type {
    font-size: 1.2rem;
    font-weight: 900;
    font-family: Arial, sans-serif;
    line-height: 1;
}
.iso-placeholder .iso-text {
    font-size: 0.6rem;
    font-weight: bold;
    text-transform: uppercase;
}


/* --- Handling Specific Styles --- */

/* Sub Title (Border Left) */
.policy-sub-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    margin-top: 10px;
}

.mt-large { margin-top: 80px; }

/* Table Style (Black Header) */
.table-scroll-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 600px;
}

.policy-table th, 
.policy-table td {
    border: 1px solid #ccc; /* 枠線を少し濃く */
    padding: 12px 15px;
    vertical-align: middle;
}

.policy-table th {
    background-color: #222; /* 黒ヘッダー */
    color: #fff;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

.policy-table td.center {
    text-align: center;
}
.policy-table th.w-narrow {
    width: 100px;
}

/* Handling List (1. 2. ...) */
.handling-list {
    list-style: none;
    padding: 0;
}
.handling-list > li {
    margin-bottom: 40px;
}
.item-title {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Security Measures (① ② ...) */
.security-measures {
    margin-top: 15px;
    padding: 20px;
}
.security-measures dt {
    font-weight: bold;
    margin-top: 15px;
}
.security-measures dt:first-child { margin-top: 0; }
.security-measures dd {
    margin-left: 0;
    margin-top: 5px;
    padding-left: 1em;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 768px) {
    .section-policy {
        padding: 50px 0;
    }
    
    .policy-main-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .policy-table th, .policy-table td {
        padding: 10px;
        font-size: 0.8rem;
    }

    .iso-area-bottom {
        justify-content: center; /* スマホでは中央に */
    }
}