@charset "UTF-8";

/* ==========================================================================
   PC（pc.css） - 画面幅768px以上で適用
   ========================================================================== */
@media screen and (min-width: 768px) {
    body {
        padding-top: 100px; /* PC時の固定ヘッダー分の余白 */
    }
    
    /* PC用ヘッダーデザイン（ランドクルーズLP風） */
    .header-inner {
        align-items: flex-start;
    }
    .header-left {
        display: flex;
        flex-direction: column;
    }
    .header-logo-area img {
        height: 44px; /* PC時ロゴサイズ */
    }
    .header-sub {
        display: block;
        font-size: 12px;
        color: #6b7280;
        margin-top: 4px;
        letter-spacing: 0.05em;
    }
    .header-sub-main {
        color: var(--brand-dark);
        font-weight: bold;
    }
    .header-sub-sep {
        margin: 0 8px;
        color: #d1d5db;
    }
    .header-tel-sp {
        display: none; /* スマホ用電話アイコン非表示 */
    }
    
    /* 右側（TELとボタン） */
    .header-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
    }
    .header-tel {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--brand-dark);
        font-weight: bold;
    }
    .header-tel-label {
        font-size: 14px;
        letter-spacing: 0.1em;
        margin-top: 6px;
    }
    .header-tel-number {
        font-size: 30px;
        line-height: 1;
        letter-spacing: 0.05em;
    }
    .header-buttons {
        display: flex;
        gap: 8px;
    }
    .header-btn {
        background-color: var(--brand-button);
        color: #ffffff;
        font-size: 12px;
        font-weight: bold;
        padding: 10px 24px;
        border-radius: 2px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 4px;
        transition: background-color 0.3s;
    }
    .header-btn:hover {
        background-color: #1e3a8a;
    }
    .header-btn svg {
        width: 12px;
        height: 12px;
    }

    /* PC用パンくずリスト */
    .breadcrumb-area {
        display: block;
        background-color: #ffffff;
    }
    .breadcrumb-inner {
        max-width: 1240px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 12px;
        color: #6b7280;
    }
    .breadcrumb-inner a {
        color: inherit;
        text-decoration: none;
    }
    .breadcrumb-inner a:hover {
        text-decoration: underline;
    }
    .breadcrumb-sep {
        margin: 0 8px;
    }
}