/* ========================================================================== 
   プライバシーポリシー ページ専用スタイル（鹿児島本店版）
   イントロダクション形式 ＋ セクション構造化 最適化
   ========================================================================== */

/* --- 1. 導入エリア（イントロセクション） --- */
.intro-area {
    max-width: 1000px;
    margin: 80px auto 60px;
    padding: 0 20px;
    text-align: center;
}

.intro-title-ja {
    font-size: 32px;
    color: #12458f; /* レクストンブルー */
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.intro-title-en {
    font-size: 14px;
    color: #b3934d; /* ゴールド */
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    letter-spacing: 0.4em;
    margin-bottom: 50px;
}

.intro-content {
    background-color: #fdfdfd;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 50px 30px;
    position: relative;
}

/* 上下の装飾線（ゴールド） */
.intro-content::before,
.intro-content::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #b3934d;
}
.intro-content::before { top: -1px; }
.intro-content::after { bottom: -1px; }

.intro-highlight {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.6;
}

.intro-description {
    font-size: 16px;
    line-height: 2.2;
    color: #555;
    text-align: left;
    max-width: 820px;
    margin: 0 auto;
}

/* 強調テキスト */
.text-accent {
    color: #12458f;
    font-weight: bold;
    background: linear-gradient(transparent 75%, rgba(179, 147, 77, 0.3) 75%);
}

/* --- 2. メインコンテンツ（条文エリア） --- */
#privacy-main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.privacy-section-wrapper {
    padding: 0 20px;
}

/* 記事全体のタイトル */
.main-title {
    font-size: 28px;
    color: #12458f;
    border-bottom: 2px solid #b3934d;
    padding-bottom: 15px;
    margin: 60px 0 40px;
    font-weight: bold;
    text-align: center;
}

/* 各条セクション */
.privacy-item {
    margin-bottom: 50px;
}

.privacy-item h3 {
    font-size: 20px;
    color: #12458f;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 4px solid #12458f;
    line-height: 1.4;
    font-weight: bold;
}

.privacy-item p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 1.5em;
    color: #333;
}

/* リスト形式 */
.privacy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.privacy-list li {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 1.5em;
    position: relative;
    color: #444;
    line-height: 1.6;
}

.privacy-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #b3934d;
    font-weight: bold;
}

.privacy-list.no-dot li {
    padding-left: 0;
}
.privacy-list.no-dot li::before {
    display: none;
}

/* --- 3. 申請・PDFダウンロードエリア (第8条内) --- */
.pdf-download-area {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 40px;
    border-radius: 4px;
    margin: 40px 0 60px;
}

.pdf-section {
    margin-bottom: 35px;
}

.sub-caption {
    font-size: 15px;
    margin-bottom: 12px;
    color: #111;
}

.address-box {
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-left: 4px solid #12458f;
    font-size: 15px;
    line-height: 1.8;
    font-style: normal;
}

.pdf-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
}

.pdf-list li a {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #12458f;
    color: #12458f;
    padding: 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: bold;
    position: relative;
}

.pdf-list li a:hover {
    background-color: #12458f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 69, 143, 0.15);
}

.pdf-list li a::before {
    content: "PDF";
    font-size: 9px;
    background-color: #d32f2f;
    color: #fff;
    padding: 2px 5px;
    border-radius: 2px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* 別タブで開くことを示すアイコン補助 */
.pdf-list li a::after {
    content: "↗";
    font-size: 12px;
    margin-left: auto;
    opacity: 0.7;
}

.pdf-info-box {
    font-size: 14px;
    color: #444;
    padding: 25px;
    background: #fff;
    border: 1px solid #ddd;
}

.fee-text {
    display: block;
    margin-top: 15px;
}

/* --- 4. お問い合わせ窓口（コンタクトカード） --- */
.privacy-contact-card {
    background: #fff;
    border: 2px solid #12458f;
    padding: 50px 40px;
    text-align: center;
    margin: 60px 0;
}

.contact-title {
    font-size: 22px;
    color: #12458f;
    margin-bottom: 25px;
    font-weight: bold;
}

.contact-body .dept {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 10px;
    color: #111;
}

.contact-body .address {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.tel-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.tel-row .label {
    background: #b3934d;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 2px;
}

.tel-row .number {
    font-size: 32px;
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    color: #12458f;
    text-decoration: none;
    transition: color 0.3s;
}

.tel-row .number:hover {
    color: #b3934d;
}

/* --- 5. アニメーション制御 --- */
/* 初期状態：JSが動く前の待機状態 */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* JSによってクラスが付与された後の動作定義 */
.reveal.is-animated {
    transition: opacity 1.0s ease, transform 1.0s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- 6. レスポンシブ --- */
@media (max-width: 768px) {
    .intro-area { margin: 60px auto 40px; }
    .intro-title-ja { font-size: 26px; }
    .intro-highlight { font-size: 18px; margin-bottom: 20px; }
    .intro-description { font-size: 15px; text-align: justify; }
    .intro-content { padding: 40px 20px; }
    
    .main-title { font-size: 24px; margin: 40px 0 30px; }
    .privacy-item { margin-bottom: 40px; }
    .privacy-item h3 { font-size: 18px; }
    
    .pdf-list { grid-template-columns: 1fr; }
    .pdf-download-area { padding: 30px 20px; }
    .address-box { font-size: 14px; padding: 15px; }
    
    .tel-row { flex-direction: column; gap: 8px; }
    .tel-row .number { font-size: 28px; }
    .privacy-contact-card { padding: 40px 20px; margin: 40px 0; }
}