﻿@charset "UTF-8";

/* プレミアム部専用スタイル (接頭辞 p-) */
.p-wrapper {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.7;
    background: #fff;
}
.p-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.p-al-c { text-align: center; }
.p-mt-20 { margin-top: 20px; }
.p-mt-40 { margin-top: 40px; }
.p-mb-20 { margin-bottom: 20px; }
.p-mb-40 { margin-bottom: 40px; }
.p-fw-b { font-weight: bold; }
.p-text-red { color: #e11d48; }

.p-bg-blue {
    background: #162d7e;
    color: #ffffff;
    padding: 80px 0;
}
.p-worries-card {
    background: #ffffff;
    color: #333;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    max-width: 1000px;
    margin: 0 auto;
}
.p-worries-card h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #162d7e;
    font-weight: bold;
}
.p-worries-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}
.p-worries-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    padding-left: 30px;
    position: relative;
}
.p-worries-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.p-highlight {
    background: #ecfdf5;
    border-left: 8px solid #10b981;
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
}
.p-highlight p {
    font-size: 1.15rem;
    font-weight: 700;
    color: #064e3b;
    margin: 0;
}

.p-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.p-benefit-item {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    text-align: left;
}
.p-benefit-item::before {
    content: "✓";
    color: #10b981;
    font-weight: 900;
    margin-right: 15px;
    font-size: 1.25rem;
}

.p-service-list {
    list-style: none;
    counter-reset: p-counter;
}
.p-service-item {
    background: #ffffff;
    margin-bottom: 40px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    text-align: left;
}
.p-service-item::after {
    counter-increment: p-counter;
    content: counter(p-counter);
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #162d7e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(22, 45, 126, 0.3);
}
.p-service-item h4 {
    font-size: 1.35rem;
    margin-bottom: 20px;
    color: #162d7e;
    font-weight: bold;
}

.p-profile {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin: 60px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
}
.p-profile-img { width: 180px; border-radius: 12px; }
.p-profile-info h3 { margin-bottom: 20px; font-size: 1.4rem; color: #162d7e; font-weight: bold; }

.p-pricing-wrap {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 25px;
}
.p-table {
    width: 100%;
    border-collapse: collapse;
}
.p-table th, .p-table td {
    padding: 15px 20px;
    border: 1px solid #f1f5f9;
}
.p-table th { background: #f8fafc; color: #162d7e; font-weight: 700; text-align: left; }

.p-form-sec {
    background: #e2e8f0;
    padding: 80px 0;
}
.p-form-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.p-form-card h2 { text-align: center; margin-bottom: 40px; font-size: 1.8rem; color: #162d7e; font-weight: bold; }
.p-dl dt { font-weight: 700; margin-bottom: 8px; margin-top: 20px; }
.p-dl dd { margin-bottom: 10px; }
.p-req { background: #e11d48; color: #fff; font-size: 0.75rem; padding: 2px 6px; border-radius: 4px; margin-left:8px; vertical-align: middle; }
.p-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}
.p-btn {
    background: #162d7e;
    color: #fff;
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 40px;
}
.p-error { color: #e11d48; font-weight: 700; font-size: 0.9rem; margin-top: 5px; }
.p-hline {
    font-size: 1.8rem;
    font-weight: 900;
    color: #162d7e;
    line-height: 1.4;
    margin-bottom: 25px;
    text-align: center;
}
@media (max-width: 768px) {
    .p-profile { flex-direction: column; align-items: center; text-align: center; }
    .p-form-card { padding: 25px; }
}