/* ========================================
   個人のお客様ページ (private.php)
   クラス名プレフィックス: p-private-
   ======================================== */

/* メインコンテナ */
.l-main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* 最後のセクションとコンタクトセクション間の余白調整 */
.l-inner--wide {
    margin-bottom: 0;
}

/* 共通セクションスタイル */
.p-private-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.p-private-section:last-child {
    margin-bottom: 0;
}

.p-private-section__header {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0068C0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.p-private-section__header-icon {
    width: 80px;
    height: auto;
}

/* イントロダクション */
.p-private-intro {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    margin-bottom: 30px;
}

.p-private-intro__image-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.p-private-intro__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.p-private-intro__title {
    font-size: 2.2rem;
    color: #0068C0;
    line-height: 1.5;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 900;
}

.p-private-intro__title-emphasis {
    font-size: 2.8rem;
    font-weight: 900;
}

/* こんなお悩みありませんか */
.p-private-intro__problems {
    margin: 30px 0;
}

.p-private-intro__problems-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0068C0;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.p-private-intro__problems-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0068C0;
}

.p-private-intro__problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.p-private-intro__problem-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e8f4f8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-private-intro__problem-image-wrap {
    width: 100%;
    max-width: 200px;
    margin-bottom: 15px;
}

.p-private-intro__problem-image {
    width: 100%;
    height: auto;
    aspect-ratio: 8.5 / 10;
    object-fit: cover;
    border-radius: 8px;
}

.p-private-intro__problem-text {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
    text-align: center;
    margin: 0;
    font-weight: 600;
}

.p-private-intro__description {
    font-size: 1.2rem;
    color: #0068C0;
    line-height: 1.8;
    margin: 30px 0;
    text-align: center;
    font-weight: 700;
    padding: 20px;
    background: linear-gradient(135deg, #e8f4f8 0%, #f8f9fa 100%);
    border-radius: 8px;
}

/* 回収できる不用品 */
.p-private-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.p-private-item {
    background-color: #fff;
    border: 2px solid #0068C0;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-private-item__image-wrap {
    width: 100%;
    max-width: 250px;
    margin-bottom: 20px;
}

.p-private-item__image {
    width: 100%;
    height: auto;
    aspect-ratio: 8.5 / 10;
    object-fit: cover;
    border-radius: 8px;
}

.p-private-item__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0068C0;
    margin-bottom: 15px;
    text-align: center;
}

.p-private-item__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
}

.p-private-item__note {
    color: #dc3545;
    font-weight: 600;
}

.p-private-item__note--primary {
    color: #0068C0;
    font-weight: 600;
}

.p-private-items__note {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-top: 30px;
}

.p-private-items__note-link {
    color: #0068C0;
    font-weight: 700;
    text-decoration: underline;
}

/* 注意事項 */
.p-private-caution {
    background-color: #e8f4f8;
    border: 1px solid #0068C0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.p-private-caution__header {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0068C0;
    margin-bottom: 25px;
    text-align: center;
}

.p-private-caution__item {
    margin-bottom: 20px;
}

.p-private-caution__item:last-child {
    margin-bottom: 0;
}

.p-private-caution__item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0068C0;
    margin-bottom: 10px;
}

.p-private-caution__badge {
    background-color: #0068C0;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    margin-right: 8px;
}

.p-private-caution__text {
    font-size: 0.95rem;
    color: #004d87;
    line-height: 1.7;
    margin: 0;
}

/* 料金の目安 */
.p-private-pricing__intro {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
}

.p-private-pricing__intro strong {
    color: #0068C0;
}

.p-private-pricing__examples {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border: 2px solid #0068C0;
}

.p-private-pricing__examples-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0068C0;
    margin-bottom: 20px;
    text-align: center;
}

.p-private-pricing__example {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 5px solid #0068C0;
}

.p-private-pricing__example:last-child {
    margin-bottom: 0;
}

.p-private-pricing__example-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.p-private-pricing__example-items {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.p-private-pricing__example-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0068C0;
    text-align: right;
    margin: 0;
}

.p-private-pricing__example-price-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: #555;
}

.p-private-pricing__note {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    margin-top: 15px;
}

.p-private-pricing__banner {
    text-align: center;
    margin-top: 40px;
}

.p-private-pricing__banner-link {
    display: inline-block;
}

.p-private-pricing__banner-image {
    max-width: 100%;
    height: auto;
}

/* 対応エリア */
.p-private-area__content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
}

.p-private-area__list {
    flex: 1;
    min-width: 300px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-private-area__item {
    background-color: #fff;
    border: 2px solid #0068C0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.p-private-area__item:last-child {
    margin-bottom: 0;
}

.p-private-area__item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0068C0;
    margin-bottom: 15px;
}

.p-private-area__badge {
    display: inline-block;
    background: linear-gradient(135deg, #0068C0 0%, #004d87 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.p-private-area__badge-wrap {
    margin-bottom: 10px;
}

.p-private-area__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.p-private-area__map {
    flex: 0 0 auto;
    text-align: center;
}

.p-private-area__map-image {
    max-width: 314px;
    width: 100%;
    height: auto;
}

.p-private-area__note {
    text-align: center;
    font-size: 0.95rem;
    color: #6c757d;
    margin-top: 30px;
}

/* ご利用の流れ */
.p-private-flow {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.p-private-flow__item {
    text-align: center;
}

.p-private-flow__icon-wrap {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-private-flow__icon {
    width: 124px;
    height: 124px;
    object-fit: contain;
}

.p-private-flow__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.p-private-flow__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
    .p-private-flow {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 768px) {
    .p-private-intro__problems-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 600px) {
    .p-private-flow {
        grid-template-columns: 1fr !important;
    }

    .p-private-intro__title {
        font-size: 1.8rem;
    }

    .p-private-intro__title-emphasis {
        font-size: 2.2rem;
    }

    .p-private-intro__description {
        font-size: 1rem;
    }

    .p-private-section {
        padding: 30px 20px;
    }

    .p-private-section__header {
        font-size: 1.5rem;
        gap: 10px;
    }

    .p-private-section__header-icon {
        width: 60px;
    }

    .p-private-intro__problem-text {
        font-size: 0.95rem;
    }
}
