/**
 * Information Protection Page Styles
 * 情報セキュリティ基本方針ページ専用スタイル
 */

/* ===================================
   セクション背景・テキストカラー
   =================================== */
#iso-certification .c-titl .en_bg {
    color: #F1F4F7;
}

#security-policy {
    background-color: #F1F4F7;
}

#security-policy .c-titl .en_bg {
    color: #fff;
}

#contact-info {
    background-color: #fff;
}

/* ===================================
   セクションコンテンツ
   =================================== */
.info-protection__sections {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-protection__section {
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}

.info-protection__section:first-child {
    padding-top: 0;
}

.info-protection__section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ===================================
   セクションタイトル
   =================================== */
.info-protection__section-title {
    font-size: var(--font-h4);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-snug);
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 4px solid #688daa;
}

/* ===================================
   リスト
   =================================== */
.info-protection__list {
    margin-top: 16px;
    padding-left: 0;
}

.info-protection__list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: var(--font-body);
    line-height: var(--line-height-loose);
}

.info-protection__list li:last-child {
    margin-bottom: 0;
}

.info-protection__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    background-color: #688daa;
    border-radius: 50%;
}

/* 定義リスト形式 */
.info-protection__list--definition li {
    padding-left: 0;
}

.info-protection__list--definition li::before {
    display: none;
}

.info-protection__term {
    display: inline-block;
    font-weight: var(--font-weight-semibold);
    margin-right: 8px;
    color: #333;
}

/* ===================================
   署名エリア
   =================================== */
.info-protection__signature {
    margin-top: 24px;
}

.info-protection__signature p {
    font-size: var(--font-body);
    line-height: var(--line-height-normal);
    margin-bottom: 4px;
}

.info-protection__signature p:last-child {
    margin-bottom: 0;
}

/* ===================================
   お問い合せカード
   =================================== */
.info-protection__contact-card {
    margin-top: 24px;
    padding: 30px;
    background-color: #F1F4F7;
    border-radius: 8px;
}

.info-protection__company-name {
    font-size: var(--font-body-large);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 12px;
}

.info-protection__address,
.info-protection__email {
    font-size: var(--font-body);
    line-height: var(--line-height-normal);
    margin-bottom: 8px;
}

.info-protection__email {
    margin-bottom: 0;
}

/* ===================================
   Cookie Policy セクション
   =================================== */
#cookie-policy {
    background-color: #fff;
}

#cookie-policy .c-titl .en_bg {
    color: #F1F4F7;
}

.info-protection__table-wrapper {
    margin-top: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.info-protection__table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-body-small, 1.4rem);
    line-height: var(--line-height-normal, 1.6);
}

.info-protection__table th,
.info-protection__table td {
    padding: 12px 16px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.info-protection__table thead th {
    background-color: #688daa;
    color: #fff;
    font-weight: var(--font-weight-semibold, 600);
    white-space: nowrap;
}

.info-protection__table tbody tr:nth-child(even) {
    background-color: #F9FAFB;
}

/* ===================================
   レスポンシブ (タブレット)
   =================================== */
@media screen and (max-width: 1024px) {
    .info-protection__section {
        padding: 24px 0;
    }
}

/* ===================================
   レスポンシブ (モバイル)
   =================================== */
@media screen and (max-width: 767px) {
    .info-protection__section {
        padding: 20px 0;
    }

    .info-protection__section-title {
        font-size: var(--font-body-large);
        padding-left: 12px;
        border-left-width: 3px;
    }

    .info-protection__list li {
        padding-left: 16px;
        margin-bottom: 10px;
    }

    .info-protection__list li::before {
        width: 6px;
        height: 6px;
    }

    .info-protection__contact-card {
        padding: 20px;
    }

    .info-protection__table th,
    .info-protection__table td {
        padding: 8px 10px;
        font-size: 1.2rem;
    }
}
