@charset "UTF-8";

/* ================================================
   特定商取引法に基づく表記 — ページ固有スタイル
   ================================================ */

/* --- Page Header --- */
.page-header {
    text-align: center;
    padding: 80px 0 40px;
}

.page-header .section-title {
    margin-bottom: 10px;
}

.page-header-desc {
    font-size: 0.9rem;
    color: var(--sub-text-color);
    letter-spacing: 0.05em;
}

/* --- Content Wrapper --- */
.privacy-wrap {
    padding-top: 80px;
    padding-bottom: 120px;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
}

/* --- Content Block --- */
.privacy-block {
    margin-bottom: 60px;
}

.privacy-block:last-child {
    margin-bottom: 0;
}

.privacy-block h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
    letter-spacing: 0.05em;
}

.privacy-block p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 20px;
}

.privacy-block p:last-child {
    margin-bottom: 0;
}

.privacy-block p a {
    color: var(--text-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.privacy-block p a:hover {
    opacity: 0.6;
}

/* --- List --- */
.privacy-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.privacy-block ul li {
    position: relative;
    padding-left: 1.2em;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 8px;
}

.privacy-block ul li:last-child {
    margin-bottom: 0;
}

.privacy-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--text-color);
}

/* --- Email Box --- */
.contact-email-box {
    max-width: 100%;
    margin: 40px 0 0;
    text-align: center;
}

.email-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    border: 1px solid #eeeeee;
    background-color: #fcfcfc;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.email-link:hover {
    border-color: var(--text-color);
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 1;
}

.email-address {
    font-family: var(--font-eng);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-color);
    position: relative;
}

.email-address::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-color);
    transition: width 0.4s ease;
}

.email-link:hover .email-address::after {
    width: 100%;
}

/* --- Breadcrumb --- */
.breadcrumb {
    font-size: 0.75rem;
    color: #999;
    margin-top: 30px;
    margin-bottom: 60px;
    font-family: var(--font-eng);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breadcrumb a {
    color: #999;
}

/* ================================================
   Responsive — Tablet / Mobile
   ================================================ */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 30px;
    }

    .privacy-wrap {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .privacy-block {
        margin-bottom: 40px;
    }

    .privacy-block h2 {
        font-size: 1.15rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    /* Email Box — Mobile */
    .email-address {
        font-size: 1.1rem;
    }

    .email-link {
        padding: 40px 15px;
    }
}