.l-main {
    width: 100%;
    padding-top: 125px;
    min-height: calc(100vh - 125px);
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   Flash（resources/views/site/partials/flash.blade.php 共通スタイル）
   固定ヘッダーの直下に表示するため、margin-topはl-mainのpadding-topと同じ値にする
   ========================================================================== */
.l-flash {
    width: 100%;
    margin-top: 125px;
    padding: 16px 40px;
    border-bottom: 1px solid transparent;
}

/* フラッシュ表示時は、直後のl-mainが固定ヘッダー避けのpadding-topを二重に持たないようにする
   （l-flash自体のmargin-topで既にヘッダー分は避けられているため） */
.l-flash + .l-main {
    padding-top: 0;
}

.l-flash-inner {
    width: min(100%, 1440px);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.l-flash-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.l-flash-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.l-flash-close {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.l-flash-close:hover {
    opacity: 1;
}

.l-flash-close .material-symbols-outlined {
    font-size: 18px;
}

.l-flash--success {
    background-color: var(--color-system-success-bg);
    border-bottom-color: var(--color-system-success);
}

.l-flash--success .l-flash-icon,
.l-flash--success .l-flash-text,
.l-flash--success .l-flash-close {
    color: var(--color-system-success);
}

.l-flash--error {
    background-color: var(--color-system-danger-bg);
    border-bottom-color: var(--color-system-danger);
}

.l-flash--error .l-flash-icon,
.l-flash--error .l-flash-text,
.l-flash--error .l-flash-close {
    color: var(--color-system-danger);
}

.l-flash--alert {
    background-color: var(--color-system-warning-bg);
    border-bottom-color: var(--color-system-warning);
}

.l-flash--alert .l-flash-icon,
.l-flash--alert .l-flash-text,
.l-flash--alert .l-flash-close {
    color: var(--color-system-warning);
}

.l-flash.is-fadeout {
    opacity: 0;
    transition: opacity 0.35s ease;
}

@media screen and (max-width: 1024px) {
    .l-flash {
        margin-top: 115px;
        padding: 14px 32px;
    }
}

@media screen and (max-width: 767px) {
    .l-flash {
        margin-top: 76px;
        padding: 12px 20px;
    }

    .l-flash-inner {
        gap: 8px;
    }

    .l-flash-text {
        font-size: 13px;
    }
}

/* ==========================================================================
   Pagination（resources/views/vendor/pagination/custom.blade.php 共通スタイル）
   コラム・お知らせ・買主向け物件検索など、サイト全体のページ送りで使用
   ========================================================================== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background-color: #ffffff;
    border: 1px solid var(--color-border-medium);
    color: var(--color-text-main);
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.pagination .page-item.active .page-link {
    background-color: var(--color-main);
    color: #ffffff;
    border-color: var(--color-main);
}

.pagination .page-item:not(.active):not(.disabled) .page-link:hover {
    border-color: #ba9a6f;
    color: #ba9a6f;
    background-color: rgba(186, 154, 111, 0.06);
}

.pagination .page-item.disabled .page-link {
    color: var(--color-text-disabled);
    border-color: var(--color-border-light);
    cursor: not-allowed;
}

/* ==========================================================================
   No-Image Placeholder（アイキャッチ未設定時のプレースホルダー枠）
   コラム一覧・トップページのカードサムネイル、コラム詳細のヒーローで共通利用
   ========================================================================== */
.c-noimage-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #f4f3ef;
    border: 1px dashed rgba(25, 37, 74, 0.15);
}

.c-noimage-placeholder .material-symbols-outlined {
    font-size: 28px;
    color: rgba(25, 37, 74, 0.25);
}

.c-noimage-placeholder-text {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(25, 37, 74, 0.3);
}

.c-noimage-placeholder--hero {
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    gap: 10px;
}

.c-noimage-placeholder--hero .material-symbols-outlined {
    font-size: 48px;
}

.c-noimage-placeholder--hero .c-noimage-placeholder-text {
    font-size: 13px;
    letter-spacing: 0.2em;
}

/* ==========================================================================
   Property No-Image（買主向け・賃貸向け物件一覧カードの画像未設定プレースホルダー）
   ========================================================================== */
.c-property-noimage {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #a09990;
}

.c-property-noimage .material-symbols-outlined {
    font-size: 36px;
}

.c-property-noimage span:last-child {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {
    .l-main {
        padding-top: 115px;
        min-height: calc(100vh - 115px);
    }
}

@media screen and (max-width: 767px) {
    .l-main {
        padding-top: 76px;
        min-height: calc(100vh - 76px);
    }
}

.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-surface-light);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(25, 37, 74, 0.08);
}

.l-header-top {
    width: 100%;
    background-color: var(--color-main);
}

.l-header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 35px;
    padding: 0 40px;
}

.l-header-top-text {
    font-size: 1.0rem;
    color: var(--color-surface-light);
    opacity: 0.8;
}

.l-header-top-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.l-header-top-time {
    font-size: 1.0rem;
    color: var(--color-surface-light);
    opacity: 0.8;
}

.l-header-top-tel {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Inter", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.l-header-top-tel-icon {
    color: var(--color-accent);
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
}

.l-header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding-left: 40px;
}

.l-header-logo {
    flex-shrink: 0;
}

.l-header-logo-link {
    display: block;
}

.l-header-logo-img {
    height: 46px;
    width: auto;
    display: block;
}

.l-header-sp-button {
    display: none;
}

.l-header-menu {
    display: flex;
    align-items: center;
    height: 100%;
}

.l-header-nav {
    height: 100%;
}

.l-header-nav-list {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 32px;
    padding: 0 40px;
}

.l-header-nav-item {
    height: 100%;
}

.l-header-nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-top: 6px;
    text-decoration: none;
    position: relative;
}

.l-header-nav-link:hover {
    text-decoration: none;
}

.l-header-nav-ja {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    transition: color 0.3s;
}

.l-header-nav-en {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-accent);
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.l-header-nav-link::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.l-header-nav-link:hover::after,
.l-header-nav-link.is-active::after {
    transform: scaleX(1);
}

.l-header-action {
    display: flex;
    height: 100%;
    flex-shrink: 0;
}

.l-header-action-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 100%;
    text-decoration: none;
    transition: opacity 0.3s;
}

.l-header-action-link:hover {
    text-decoration: none;
    opacity: 0.9;
}

.l-header-action-link-contact {
    background-color: var(--color-main);
}

.l-header-action-link-document {
    background-color: var(--color-accent);
}

.l-header-action-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-surface-light);
    margin-top: 8px;
}

.l-header-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
}

@media screen and (max-width: 1024px) {
    .l-header-top-inner {
        height: 32px;
        padding: 0 24px;
    }

    .l-header-top-text,
    .l-header-top-time {
        font-size: 0.78rem;
    }

    .l-header-top-info {
        gap: 16px;
    }

    .l-header-top-tel {
        font-size: 1.05rem;
    }

    .l-header-main {
        height: 83px;
        padding-left: 24px;
    }

    .l-header-logo-img {
        height: 40px;
    }

    .l-header-nav-list {
        gap: 14px;
        padding: 0 20px;
    }

    .l-header-nav-ja {
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .l-header-nav-en {
        font-size: 0.68rem;
    }

    .l-header-action-link {
        width: 88px;
    }

    .l-header-action-icon {
        width: 20px;
        height: 20px;
        font-size: 20px;
    }

    .l-header-action-text {
        font-size: 0.82rem;
        margin-top: 6px;
    }
}

@media screen and (max-width: 767px) {
    .l-header-top {
        display: none;
    }

    .l-header-main {
        height: 76px;
        padding: 0 1.25rem;
    }

    .l-header-logo-img {
        height: 38px;
    }

    .l-header-sp-button {
        display: grid;
        gap: 6px;
        width: 42px;
        height: 42px;
        padding: 0;
        border: 0;
        background: transparent;
        place-content: center;
        cursor: pointer;
    }

    .l-header-sp-button span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--color-main);
    }

    .l-header-menu {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        height: calc(100vh - 76px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #ffffff;
        overflow-y: auto;
    }

    .l-header.is-open .l-header-menu {
        display: flex;
    }

    .l-header-nav {
        height: auto;
    }

    .l-header-nav-list {
        display: grid;
        height: auto;
        gap: 0;
        padding: 0;
    }

    .l-header-nav-item {
        height: auto;
    }

    .l-header-nav-link {
        align-items: flex-start;
        height: auto;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid rgba(25, 37, 74, 0.12);
    }

    .l-header-nav-link::after {
        display: none;
    }

    .l-header-nav-ja {
        font-size: 1rem;
    }

    .l-header-nav-en {
        font-size: 0.72rem;
    }

    .l-header-action {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 76px;
        margin-top: auto;
    }

    .l-header-action-link {
        width: 100%;
        height: 76px;
    }

    .l-header-action-text {
        font-size: 0.9rem;
    }
}

.l-footer {
    background: radial-gradient(circle at 50% 0%, #17346d 0%, #102653 38%, #0d2047 100%);
    color: #ffffff;
}

.l-footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 6.8rem 6rem 8.4rem;
    display: grid;
    grid-template-columns: 1.15fr 1.45fr 0.95fr;
    gap: 5.6rem;
    align-items: start;
}

.l-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.l-footer-logo img {
    width: 190px;
    height: auto;
}

.l-footer-copy {
    margin-top: 2.4rem;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.8;
}

.l-footer-text {
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    line-height: 2;
}

.l-footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.8rem;
}

.l-footer-nav-column {
    display: grid;
    gap: 0;
}

.l-footer-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.l-footer-nav-link::after {
    content: "›";
    color: #caa66d;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
}

.l-footer-nav-link:hover {
    color: #d7b77a;
    padding-left: 0.5rem;
}

.l-footer-contact-label {
    color: #caa66d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
}

.l-footer-tel {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.l-footer-time {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
}

.l-footer-contact-button {
    display: grid;
    grid-template-columns: 1.5rem 1fr 1.5rem;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    min-height: 64px;
    margin-top: 2rem;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, #d5b36f 0%, #bd9658 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.l-footer-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
}

.l-footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
}

.l-footer-contact-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
}

.l-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.l-footer-bottom-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 6rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.l-footer-policy {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.l-footer-policy a {
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.l-footer-policy span {
    width: 1px;
    height: 1rem;
    background: rgba(255, 255, 255, 0.45);
}

.l-footer-copyright {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-align: center;
}

.l-footer-page-top {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
}

.l-footer-page-top-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #caa66d;
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
}

@media screen and (max-width: 1024px) {
    .l-footer-inner {
        grid-template-columns: 1fr;
        padding: 5rem 2rem 5.8rem;
        gap: 3.6rem;
    }

    .l-footer-contact-button {
        max-width: 360px;
    }

    .l-footer-bottom-inner {
        grid-template-columns: 1fr;
        padding: 2rem;
        text-align: center;
    }

    .l-footer-policy {
        justify-content: center;
        flex-wrap: wrap;
    }

    .l-footer-page-top {
        justify-self: center;
    }
}

@media screen and (max-width: 767px) {
    .l-footer-inner {
        padding: 4rem 1.25rem 4.8rem;
    }

    .l-footer-logo img {
        width: 160px;
    }

    .l-footer-copy {
        font-size: 1rem;
    }

    .l-footer-text {
        font-size: 0.88rem;
    }

    .l-footer-nav {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .l-footer-nav-link {
        min-height: 3.6rem;
        font-size: 0.88rem;
    }

    .l-footer-tel {
        font-size: 1.55rem;
    }

    .l-footer-time {
        font-size: 0.82rem;
    }

    .l-footer-contact-button {
        min-height: 58px;
        font-size: 0.9rem;
    }

    .l-footer-policy {
        gap: 1rem;
    }

    .l-footer-policy a,
    .l-footer-copyright {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   Breadcrumb（resources/views/components/site/breadcrumb.blade.php 共通スタイル）
   固定ヘッダー直下、各ページのヒーローより前に配置する
   ========================================================================== */
.p-breadcrumb {
    width: 100%;
    background-color: var(--color-surface-medium);
    border-bottom: 1px solid var(--color-border-light);
}

.p-breadcrumb-list {
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
}

.p-breadcrumb-item {
    display: flex;
    align-items: center;
}

.p-breadcrumb-link {
    font-size: 1.2rem;
    color: var(--color-text-sub);
    text-decoration: none;
    transition: color 0.2s ease;
}

.p-breadcrumb-link:hover {
    color: var(--color-main);
    text-decoration: underline;
}

.p-breadcrumb-sep {
    font-size: 16px;
    color: var(--color-border-medium);
    margin: 0 2px;
}

.p-breadcrumb-current {
    font-size: 1.2rem;
    color: var(--color-text-main);
    font-weight: 500;
}

@media screen and (max-width: 1024px) {
    .p-breadcrumb-list {
        padding: 12px 24px;
    }
}

@media screen and (max-width: 767px) {
    .p-breadcrumb-list {
        padding: 10px 20px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .p-breadcrumb-link,
    .p-breadcrumb-current {
        font-size: 1.1rem;
        white-space: nowrap;
    }
}