@charset "utf-8";

/* プライバシーポリシーページ専用スタイル */

/* 基本レイアウト */
.gridContainer {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

#LayoutCenter {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
    border-left: 2px solid #666;
    border-right: 2px solid #666;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* 1200px以下（タブレット・スマホ）では全画面表示 */
@media only screen and (max-width: 1200px) {
    #LayoutCenter {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
        border-left: none;
        border-right: none;
    }
}

/* CompanyTop - ブランド名のスタイル */
#CompanyTop {
    background-color: black;
    color: white;
    font-family: serif;
    font-size: 2.5em;
    font-weight: bold;
    padding: 20px;
    text-align: right;
    margin: 0;
}

/* サイト全体の背景色を黒に設定 */
body {
    background-color: black;
}

/* プライバシーポリシーコンテンツ */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.8;
    color: #333;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 2em;
}

.privacy-content h1 {
    color: #000;
    border-bottom: 3px solid #333;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 1.5em;
    font-weight: bold;
}

.privacy-content h2 {
    color: #333;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5em;
    font-weight: bold;
    border-left: 4px solid #666;
    padding-left: 1rem;
}

.privacy-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.privacy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.privacy-content li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.privacy-content li a:hover {
    text-decoration: underline;
    color: #000;
}

/* 戻るリンク */
.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 2px solid #333;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.back-link:hover {
    background-color: #333;
    color: white;
    text-decoration: none;
}

/* 下部の戻るボタン */
.back-section {
    margin-top: 2rem;
    text-align: left;
}

.back-button {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    padding: 1rem 2rem;
    border: 2px solid #333;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9em;
    background-color: white;
}

.back-button:hover {
    background-color: #333;
    color: white;
    text-decoration: none;
}

/* Footer - 背景色黒、文字色白 */
footer {
    background-color: black;
    color: white;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

/* 下部のdivを横並びにする */
.footer-links {
    display: flex;
    justify-content: space-between;
    margin: 0;
}

#brand, #Policy, #Inquiry {
    flex: 1;
    margin: 0;
    text-align: center;
}

/* スマホサイズでは縦並びに変更 */
@media only screen and (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        justify-content: center;
    }

    #brand, #Policy, #Inquiry {
        flex: none;
        margin: 8px 0;
    }
}

/* PCサイズでの文字サイズ調整 */
@media only screen and (min-width: 769px) {
    #brand, #Policy, #Inquiry {
        font-size: 1.4em;
    }
}

/* レスポンシブ対応 */
@media only screen and (max-width: 768px) {
    .privacy-content {
        padding: 1rem;
        line-height: 1.6;
    }
    
    .privacy-content h1 {
        font-size: 1.5em;
    }
    
    .privacy-content h2 {
        font-size: 1.3em;
    }
    
    .privacy-content p {
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 480px) {
    .privacy-content {
        padding: 0.8rem;
        line-height: 1.5;
        font-size: 1.2em;
    }
    
    .privacy-content h1 {
        font-size: 1.3em;
    }
    
    .privacy-content h2 {
        font-size: 1.2em;
    }
    
    .privacy-content ul {
        padding-left: 1.5rem;
    }
    
    .back-link {
        font-size: 0.8em;
    }
} 