* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #FDEDED;
    color: #333;
    line-height: 1.8;
}

.tokushoho-page {
    padding-top: 100px;
}

.tokushoho-hero {
    background: linear-gradient(135deg, #FF679C 0%, #FF008C 100%);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.tokushoho-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.tokushoho-hero p {
    font-size: 16px;
    opacity: 0.95;
}

.breadcrumb {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb-inner {
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FF679C;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

.breadcrumb .current {
    color: #333;
    font-weight: 500;
}

.tokushoho-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.tokushoho-section {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tokushoho-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #FF679C;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FF679C;
}

.tokushoho-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
}

.tokushoho-section ul {
    font-size: 16px;
    line-height: 1.8;
    margin-left: 30px;
    margin-bottom: 20px;
}

.tokushoho-section ul li {
    margin-bottom: 10px;
}

.tokushoho-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.tokushoho-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
}

.tokushoho-table th {
    background: #FDEDED;
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    border: 1px solid #e5e5e5;
    vertical-align: top;
    width: 200px;
}

.tokushoho-table td {
    padding: 18px 20px;
    border: 1px solid #e5e5e5;
    line-height: 1.8;
}

.tokushoho-note {
    background: #FDEDED;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #FF679C;
}

.tokushoho-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.copyright {
    text-align: center;
    padding: 40px 20px;
    color: #fff;
    font-size: 14px;
    background: #FF679C;
}

@media (max-width: 768px) {
    .tokushoho-hero h1 {
        font-size: 28px;
    }

    .tokushoho-content {
        padding: 40px 15px;
    }

    .tokushoho-section {
        padding: 25px 20px;
    }

    .tokushoho-section h2 {
        font-size: 24px;
    }

    .tokushoho-table {
        font-size: 14px;
    }

    .tokushoho-table th,
    .tokushoho-table td {
        padding: 12px 10px;
        display: block;
        width: 100%;
    }

    .tokushoho-table th {
        border-bottom: none;
    }

    .tokushoho-table td {
        border-top: none;
    }

    .tokushoho-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        overflow: hidden;
    }
}

