@charset "UTF-8";

/* タイトルエリア */
.privacy-title-section {
    text-align: center;
    padding: 40px 20px 20px;
    background-color: #fff;
    border-bottom: 4px solid #00A968;
}

.privacy-title-section h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* Breadcrumb */
.privacy-breadcrumb {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
}

/* Privacy Content Section */
.privacy-content-section {
    padding: 60px 20px 80px;
    background-color: #fff;
}

.privacy-inner {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content {
    background-color: #fff;
}

/* Privacy Block */
.privacy-block {
    margin-bottom: 50px;
}

.privacy-block:last-child {
    margin-bottom: 0;
}

/* Main Title */
.privacy-main-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #00A968;
}

/* Meta Information */
.privacy-meta {
    text-align: right;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.privacy-date {
    font-size: 14px;
    color: #666;
    margin: 0 0 5px;
}

.privacy-company {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin: 15px 0 0;
    line-height: 1.6;
}

/* Intro Text */
.privacy-intro {
    font-size: 15px;
    line-height: 2.0;
    color: #444;
    margin: 0;
}

/* Subtitle */
.privacy-subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #00A968;
}

/* Text */
.privacy-text {
    font-size: 15px;
    line-height: 2.0;
    color: #444;
    margin: 0 0 20px;
}

.privacy-text:last-child {
    margin-bottom: 0;
}

/* Privacy Mark Block */
.privacy-mark-block {
    background-color: #f0faf5;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #c4e8d8;
}

.privacy-mark-block .privacy-subtitle {
    margin-bottom: 15px;
}

.privacy-mark-block .privacy-text {
    margin-bottom: 0;
}

/* Ordered List */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: privacy-counter;
}

.privacy-list > li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 30px;
    counter-increment: privacy-counter;
}

.privacy-list > li:last-child {
    margin-bottom: 0;
}

.privacy-list > li::before {
    content: counter(privacy-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #00A968;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.privacy-list-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px;
}

.privacy-list-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Bullet List */
.privacy-bullet-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

.privacy-bullet-list li:last-child {
    margin-bottom: 0;
}

.privacy-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #00A968;
    border-radius: 50%;
}

/* Contact Block */
.privacy-contact-block {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.privacy-contact-info {
    margin-top: 15px;
}

.privacy-contact-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px;
}

.privacy-contact-address,
.privacy-contact-tel {
    font-size: 14px;
    color: #666;
    margin: 0 0 5px;
}

/* CTA Section */
.privacy-cta-section {
    background-color: #00A968;
    padding: 60px 20px;
}

.privacy-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.privacy-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 60px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.privacy-cta-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.privacy-cta-arrow {
    font-size: 12px;
}

/* レスポンシブ対応 - Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .privacy-main-title {
        font-size: 24px;
    }

    .privacy-subtitle {
        font-size: 18px;
    }
}

/* レスポンシブ対応 - SP */
@media screen and (max-width: 767px) {
    .privacy-title-section {
        padding: 30px 15px 15px;
    }

    .privacy-title-section h1 {
        font-size: 24px;
    }

    .privacy-breadcrumb {
        padding: 0 15px;
        font-size: 12px;
    }

    .privacy-content-section {
        padding: 40px 15px 60px;
    }

    .privacy-main-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .privacy-meta {
        text-align: left;
        padding: 15px;
    }

    .privacy-subtitle {
        font-size: 17px;
        padding-left: 12px;
    }

    .privacy-intro,
    .privacy-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .privacy-mark-block {
        padding: 20px;
    }

    .privacy-list > li {
        padding-left: 40px;
        margin-bottom: 25px;
    }

    .privacy-list > li::before {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .privacy-list-title {
        font-size: 15px;
    }

    .privacy-list-text {
        font-size: 13px;
    }

    .privacy-contact-block {
        padding: 20px;
    }

    .privacy-cta-section {
        padding: 40px 15px;
    }

    .privacy-cta-btn {
        padding: 15px 40px;
        font-size: 14px;
    }

    .privacy-block {
        margin-bottom: 40px;
    }
}

/* レスポンシブ対応 - 小さいスマホ */
@media screen and (max-width: 413px) {
    .privacy-title-section h1 {
        font-size: 20px;
    }

    .privacy-main-title {
        font-size: 20px;
    }

    .privacy-cta-btn {
        padding: 12px 30px;
        font-size: 13px;
    }
}
