/* CSS Variables */
:root {
    /* アクセントカラー */
    --color-accent-orange: #E86C00;
    --color-accent-green: #006B5B;

    /* サブカラー */
    --color-sub-brown: #6A513B;

    /* メインカラー */
    --color-main-black: #2B2B2B;
    --color-main-white: #FFFFFF;
    --header-height: 80px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Serif JP", serif;
    line-height: 1.6;
    color: var(--color-main-black);
    background-color: var(--color-main-white);
    font-weight: 600;
}

button {
    font-family: "Noto Serif JP", serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    line-height: 1.6;
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.4;
}

/* Layout */
.container {
    width: min(1000px, 100% - 28px);
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-main-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-container {
    width: 98vw;
    margin: 0 auto;
    padding: 0 24px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 80px;
}

.site-logo img {
    max-height: 64px;
    width: auto;
}

.menu-toggle {
    display: none;
    width: 56px;
    height: 56px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
}

.menu-toggle__bar {
    display: block;
    width: 32px;
    height: 2px;
    margin: 0;
    background-color: var(--color-accent-green);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

body.nav-open .menu-toggle__bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

body.nav-open .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

body.nav-open .menu-toggle__bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

body.nav-open .menu-toggle {
    opacity: 0;
    pointer-events: none;
}

.nav-close {
    display: none;
    position: absolute;
    top: 16px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.nav-close::before,
.nav-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 2px;
    background-color: var(--color-accent-green);
    transform-origin: center;
}

.nav-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 900;
    display: none;
}

.nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.main-navigation {
    position: relative;
    flex: 1;
}

.header-nav-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 16px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 16px;
}

.main-navigation .nav-menu li a {
    color: var(--color-main-black);
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.main-navigation .nav-menu li a:hover,
.main-navigation .nav-menu li a:focus-visible {
    opacity: 0.6;
}

.header-cta {
    display: flex;
    gap: 12px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 20px;
    color: var(--color-main-white);
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
    transform: translateY(-2px);
    opacity: 0.9;
}

.cta-button--orange {
    background-color: var(--color-accent-orange);
}

.cta-button--green {
    background-color: var(--color-accent-green);
}

/* Hero */
.hero-section {
    position: relative;
    min-height: max(520px, calc(100vh - var(--header-height)));
    height: calc(100vh - var(--header-height));
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.05) 55%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    padding: clamp(24px, 6vw, 80px);
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 3vw, 32px);
    writing-mode: vertical-rl;
    color: var(--color-main-white);
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.hero-copy-main {
    font-size: clamp(20px, 4vw, 32px);
    letter-spacing: 0.3em;

}

.hero-copy-main,
.hero-copy-sub {
    display: flex;
    flex-direction: column;
    font-weight: 600;
}

.hero-copy-main span {
    display: inline-block;
}

.hero-divider {
    width: 1px;
    height: clamp(160px, 30vw, 220px);
    background-color: rgba(255, 255, 255, 0.7);
}

.hero-copy-sub {
    font-size: clamp(16px, 2.4vw, 18px);
    letter-spacing: 0.25em;
    line-height: 2;
}

.hero-copy-sub span {
    display: inline-block;
}

.hero-visual {
    height: 100%;
}

@media (max-width: 640px) {
    .hero-section {
        min-height: max(480px, calc(100vh - var(--header-height)));
        height: calc(100vh - var(--header-height));
    }

    .hero-content {
        padding: 32px 24px;
    }

    .hero-text-block {
        gap: 16px;
        letter-spacing: 0.2em;
    }
}



@media (max-width: 768px) {


    .header-container {
        width: min(1000px, 100% - 14px);
        margin: 0 auto;
        padding: 0;
    }

    .nav-overlay {
        display: block;
    }

    body.nav-open {
        overflow: hidden;
    }

    .header-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        min-height: 72px;
    }

    .header-nav-group {
        position: fixed;
        top: 0;
        right: 0;
        width: min(340px, 82vw);
        height: 100vh;
        background-color: var(--color-main-white);
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.18);
        padding: 80px 24px 32px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        order: 3;
        z-index: 1100;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
        overflow-y: auto;
    }

    .header-nav-group.is-open,
    body.nav-open .header-nav-group {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-navigation {
        position: relative;
        flex: 0 0 auto;
        width: 100%;
        padding: 0;
        margin-bottom: 40px;
    }

    .main-navigation.is-open,
    body.nav-open .main-navigation {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 10;
    }

    .main-navigation .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        font-size: 16px;
        width: 100%;
    }

    .main-navigation .nav-menu li {
        width: 100%;
    }

    .main-navigation .nav-menu li a {
        display: block;
        padding-bottom: 20px;
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        color: var(--color-main-black);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .header-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        min-width: auto;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Recommendation Section */
.recommendation-section {
    background-color: #fbf7f2;
    padding-top: 100px;
}

.new-arrivals-section {
    background-color: #fbf7f2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.purchase-support-section {
    background-color: var(--color-main-white);
    padding: 100px 0 140px;
}

.purchase-support-heading {
    text-align: center;
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 40px;
    color: var(--color-main-black);
}

.purchase-support__actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    border: 1px solid var(--color-accent-orange);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-card:hover,
.cta-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
}

.cta-card__icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.cta-card__label {
    flex: 1;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
}

.cta-card__arrow {
    width: 44px;
    height: 44px;
    color: var(--color-accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.selling-banner {
    display: block;
    position: relative;
    margin-top: 40px;
    overflow: hidden;
}

.selling-banner__image {
    position: absolute;
    inset: 0;
    background-image: url("/wp-content/uploads/2025/11/Rectangle-145.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(0.95);
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: lighten;
    transition: transform 0.6s ease;
}

.selling-banner:hover .selling-banner__image,
.selling-banner:focus-visible .selling-banner__image {
    transform: scale(1.05);
}

.selling-banner__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px clamp(24px, 8vw, 72px);
    color: var(--color-main-white);
    height: 270px;
}

.selling-banner__text {
    font-size: clamp(16px, 4vw, 30px);
    color: var(--color-accent-green);
    font-weight: 700;
}

.selling-banner__button {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background-color: var(--color-accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.selling-banner__button i {
    color: var(--color-main-white);
}

.cta-card__arrow i {
    color: currentColor;
}

.brand-story-section {
    background-color: #0f5b4b;
    padding: 120px 0;
    color: var(--color-main-white);
}

.brand-story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(32px, 6vw, 64px);
    align-items: center;
}

.brand-story__content p+p {
    margin-top: 20px;
}

.brand-story__title {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 24px;
}

.brand-story__title span {
    display: block;
}

.brand-story__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 60px;
    padding: 8px 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    color: var(--color-main-white);
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 220px;
}

.brand-story__button span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
}

.brand-story__button:hover,
.brand-story__button:focus-visible {
    background-color: var(--color-main-white);
    color: #0f5b4b;
}

.brand-story__button:hover span,
.brand-story__button:focus-visible span {
    border-color: #0f5b4b;
    color: #0f5b4b;
}

.brand-story__media img {
    width: 100%;
}

.topics-section {
    background-color: var(--color-main-white);
    padding-top: 140px;
}

.topics {
    display: flex;
    align-items: flex-start;
    gap: clamp(30px, 8vw, 140px);
}

.topics__intro {
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.topics__title {
    font-size: clamp(20px, 3vw, 32px);
}

.topics__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 34px;
    border: 1px solid var(--color-accent-orange);
    border-radius: 999px;
    font-weight: 600;
    width: 220px;
    color: var(--color-accent-orange);
    transition: background-color 0.25s ease, color 0.25s ease;
}

.topics__button span {
    display: inline-flex;
}

.topics__button:hover,
.topics__button:focus-visible {
    background-color: var(--color-accent-orange);
    color: var(--color-main-white);
}

.topics__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.topics-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid #999;
    color: inherit;
    align-items: center;
}

.topics-item__date {
    color: var(--color-sub-brown);
    font-size: 14px;
}

.topics-item__title {
    font-weight: 500;
}

.topics-empty {
    color: #777;
}

@media (max-width: 768px) {
    .purchase-support__actions {
        grid-template-columns: 1fr;
    }

    .selling-banner__button {
        width: 30px;
        height: 30px;
    }

    .selling-banner__button .fa-arrow-right {
        font-size: 12px;
    }

    .selling-banner__content {
        padding: 48px clamp(24px, 4vw, 72px);
        height: 180px;
    }

    .brand-story {
        grid-template-columns: 1fr;
    }

    .topics {
        flex-direction: column;
    }

    .topics__button {
        width: 200px;
        justify-content: space-between;
        font-size: 14px;
        padding: 13px 18px;
    }

    .topics-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .purchase-support-section {
        padding-bottom: 60px;
        padding-top: 60px;
    }

    .brand-story__content {
        order: 2;
    }

    .brand-story__media {
        order: 1;
    }

    .brand-story__media img {
        max-height: 250px;
    }

    .brand-story-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .brand-story__button {
        margin-top: 40px;
    }

    .topics-section {
        padding-top: 60px;
    }

    .topics__intro {
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .topics__list {
        width: 100%;
    }
}

.recommendation-header {
    text-align: center;
    margin-bottom: clamp(32px, 6vw, 40px);
    color: var(--color-main-black);
}

.recommendation-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.recommendation-icon img {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.recommendation-header h2 {
    font-size: clamp(24px, 3vw, 32px);
}

.recommendation-grid,
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.recommendation-card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.recommendation-card a {
    display: flex;
    flex-direction: column;
    color: inherit;
    height: 100%;
}



.recommendation-card__media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 12px;
}

.recommendation-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recommendation-card:hover .recommendation-card__media img,
.recommendation-card:focus-within .recommendation-card__media img {
    transform: scale(1.05);
}

.recommendation-card__placeholder {
    width: 100%;
    height: 100%;
    background-color: #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

.recommendation-card__badge {
    align-self: flex-start;
    display: inline-flex;
    padding: 6px 18px;
    margin-bottom: 20px;
    background-color: #8f6a46;
    color: var(--color-main-white);
    font-size: 12px;
    font-weight: 600;
}

.recommendation-card__body {
    display: flex;
    flex-direction: column;
}

.recommendation-card__title {
    font-size: 18px;
    color: #0f5b4b;
    margin-bottom: 10px;
}

.recommendation-card__meta {
    list-style: none;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.recommendation-card__meta .label {
    font-weight: 600;
    margin-right: 6px;
}

.recommendation-card__meta .value {
    font-weight: 500;
    letter-spacing: 0.05em;
}

.recommendation-empty {
    text-align: center;
    color: #666;
}

@media (max-width: 600px) {
    .recommendation-card__meta .label {
        min-width: auto;
        margin-right: 4px;
    }

    .recommendation-section {
        padding-top: 60px;
    }

    .recommendation-icon {
        margin-bottom: 8px;
    }

    .cta-card__icon img {
        width: 40px;
        height: 40px;
    }

    .cta-card {
        padding: 17px 32px;
    }
}

/* Contact CTA */
.contact-cta {
    position: relative;
    background-image: url("/wp-content/uploads/2025/11/Rectangle-158.jpg");
    background-size: cover;
    background-position: center;
    padding: clamp(72px, 10vw, 84px) 0;
    overflow: hidden;
    color: var(--color-main-white);
    margin-top: 140px;
}

.contact-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.65), rgba(15, 91, 75, 0.15));
    backdrop-filter: blur(2px);
}

.contact-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 34px;
    text-align: center;
}

.contact-cta__intro {
    display: flex;
    flex-direction: column;
    color: var(--color-accent-green);
}

.contact-cta__title,
.contact-cta__subtitle {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
}

.contact-cta__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10vw;
    color: var(--color-main-black);
}

.contact-cta__number-block {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.contact-cta__phone {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 600;
    color: var(--color-main-black);
}

.contact-cta__hours {
    font-size: 14px;
    color: var(--color-main-black);
    font-weight: 600;
}

.contact-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 40px;
    border-radius: 999px;
    background-color: var(--color-accent-green);
    color: var(--color-main-white);
    font-weight: 600;

    min-width: 280px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-cta__button:hover,
.contact-cta__button:focus-visible {
    transform: translateY(-2px);
    opacity: 0.9;
}

.contact-cta__button-icon {
    font-size: 20px;
}

@media (max-width: 768px) {
    .contact-cta__button {
        width: 100%;
        justify-content: space-between;
        padding: 15px 24px;
    }

    .contact-cta__content {
        gap: 30px;
    }

    .contact-cta__details {
        gap: 24px;
    }

    .contact-cta {
        margin-top: 60px;
    }
}

/* Site Footer */
.site-footer {
    background-color: #ffffff;
    padding: 72px 0 32px;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: clamp(30px, 6vw, 80px);
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 420px;
}

.site-footer__logo img {
    max-width: 240px;
    height: auto;
}



.site-footer__company-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.site-footer__company-contact {
    white-space: nowrap;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    text-align: right;
}

.site-footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: clamp(16px, 3vw, 48px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__nav a,
.site-footer__privacy {
    font-size: 15px;

    color: inherit;
}

.site-footer__privacy {
    display: inline-block;
}

.site-footer__copyright {
    margin-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 24px;
    text-align: center;
}

.site-footer__copyright small {
    font-size: 14px;
    color: rgba(43, 43, 43, 0.46);
}

@media (max-width: 768px) {
    .site-footer__inner {
        flex-direction: column;
    }


    .site-footer__nav ul {
        justify-content: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .site-footer__company-contact {
        white-space: normal;
    }

    .site-footer__links {
        text-align: left;
        gap: 20px;
    }

    .site-footer__logo img {
        max-width: 286px;
    }

    .site-footer {
        padding: 60px 0;
    }

    .site-footer__copyright {
        text-align: left;
    }
}

/* Page Hero Section */
.page-hero-wrapper {
    position: relative;
    width: 100%;
}

.page-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.page-hero__inner {
    display: flex;
    width: 100%;
    position: relative;
}

.page-hero__text-panel {
    width: 33.333%;
    background-color: var(--color-main-white);
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
    gap: 6px;
}

.page-hero__label {
    writing-mode: vertical-rl;
    font-size: clamp(12px, 3vw, 14px);
    color: var(--color-accent-green);
    font-weight: 600;
}

.page-hero__title {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
    color: var(--color-main-black);
    margin: 0;
    letter-spacing: 0.2em;
}

.page-hero__image {
    width: 66.667%;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.page-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 14px;
    color: var(--color-main-black);
}

.page-hero__breadcrumb a {
    color: var(--color-main-black);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.page-hero__breadcrumb a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    color: var(--color-main-black);
}

.breadcrumb-link {
    color: var(--color-main-black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 4px;
    color: var(--color-main-black);
}

.breadcrumb-current {
    font-weight: 600;
    color: var(--color-main-black);
}

/* Page hero breadcrumb */
.page-hero__breadcrumb .breadcrumb {
    margin-bottom: 0;
    color: var(--color-main-black);
}

.page-hero__breadcrumb .breadcrumb-link {
    color: var(--color-main-black);
}

.page-hero__breadcrumb .breadcrumb-separator {
    color: var(--color-main-black);
}

.page-hero__breadcrumb .breadcrumb-current {
    color: var(--color-main-black);
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 260px;
    }

    .page-hero__text-panel {
        padding: 26px 14px;
        justify-content: flex-end;
    }

    .page-hero__image {
        width: 100%;
        height: 260px;
        min-height: 260px;
    }

    .page-hero__image img {
        height: 260px;
        min-height: 260px;
    }

    .page-hero__breadcrumb {
        padding: 16px;
        font-size: 12px;
    }
}


/* Company Profile Section */
.site-main {
    margin-top: 100px;
}

/* Entry Content */
.entry-content {
    white-space: pre-line;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-header {
    margin-bottom: 32px;
}

.entry-title {
    color: var(--color-accent-green);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.company-profile__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.company-profile__item {
    display: flex;
    padding: 15px 0;
    border-bottom: none;
}

.company-profile__item:first-child {
    border-top: none;
}

.company-profile__label {
    width: 180px;
    min-width: 180px;
    font-weight: 600;
    color: var(--color-accent-green);
    margin: 0;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

.company-profile__label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 180px;
    height: 1px;
    background-color: var(--color-accent-green);
}

.company-profile__value {
    flex: 1;
    margin: 0;
    color: var(--color-main-black);
    position: relative;
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

.company-profile__value::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 1px;
    background-color: var(--color-main-black);
}

@media (max-width: 768px) {

    .site-main {
        margin-top: 60px;
    }

    .company-profile__item {
        flex-direction: column;
    }

    .company-profile__label {
        width: 100%;
        min-width: auto;
        margin-right: 0;
    }

    .company-profile__label::after {
        width: 100%;
        max-width: 100%;
    }

    .company-profile__value {
        width: 100%;
        padding-top: 30px;
    }

    .company-profile__value::after {
        max-width: 100%;
    }
}

/* Contact Page */
.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-content__description {
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--color-main-black);
    font-size: 16px;
}

.contact-content__description p {
    text-align: center;
}

.contact-phone-box {
    border: 1px solid #000;
    padding: 36px;
    margin-bottom: 60px;
    background-color: var(--color-main-white);
}

.contact-phone-box__header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 12px;
}

.contact-phone-box__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-main-black);
    margin: 0;
}

.contact-phone-box__phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-phone-box__icon {
    font-size: 16px;
    line-height: 1;
    color: var(--color-main-black);
}

.contact-phone-box__number {
    font-size: 24px;
    color: var(--color-main-black);
    font-weight: 600;
}

.contact-phone-box__info {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.contact-phone-box__hours,
.contact-phone-box__holidays {
    display: block;
}

.contact-content__body {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .contact-phone-box {
        padding: 20px;
    }

    .contact-phone-box__header {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 20px;
    }

    .contact-phone-box__info {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

}

/* Privacy Policy Page */
.privacy-policy-content__inner {
    color: var(--color-main-black);
    font-size: 16px;
}

.privacy-policy-section {
    margin-bottom: 30px;
}

.privacy-policy-section:last-child {
    margin-bottom: 0;
}

.privacy-policy-content__inner h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-accent-green);
    margin-bottom: 6px;
    margin-top: 0;
}

.privacy-policy-content__inner ul {
    padding-left: 24px;
    list-style-type: disc;
}


.privacy-policy-content__inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .privacy-policy-content__inner {
        font-size: 15px;
    }

    .privacy-policy-section {
        margin-bottom: 32px;
    }

    .privacy-policy-content__inner h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .privacy-policy-content__inner p {
        margin-bottom: 20px;
    }

    .privacy-policy-content__inner ul {
        margin: 12px 0 20px 0;
        padding-left: 20px;
    }

    .privacy-policy-content__inner li {
        margin-bottom: 10px;
    }
}

/* Property Archive Page */
.property-archive__layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.recommendation-card__area-info {
    font-size: 13px;
    color: #5B5B5B;
    margin-top: 6px;
}

.property-search-form {
    background-color: var(--color-main-white);
    padding: 32px 24px 0;
    border: 1px solid #e0e0e0;
}

.property-search-form__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-main-black);
    border-bottom: 1px solid #e0e0e0;
}

.property-search-form__title--toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 32px;
    font-family: inherit;
    transition: opacity 0.2s ease;
    color: var(--color-accent-green);
}

.property-search-form__title--toggle:hover,
.property-search-form__title--toggle:focus-visible {
    opacity: 0.7;
    outline: none;
}

.property-search-form__title--toggle::after {
    content: '−';
    position: absolute;
    right: 0;
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--color-accent-green);
}

.property-search-form__title--toggle[aria-expanded="false"]::after {
    content: '+';
    color: var(--color-accent-green);
}

.property-search-form__form {
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 2000px;
    opacity: 1;
    margin-bottom: 32px;
}

.property-search-form__form.is-collapsed {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.property-search-form__field {
    margin-bottom: 30px;
}

.property-search-form__label {
    display: block;
    font-weight: 700;
    color: var(--color-main-black);
    margin-bottom: 12px;
}

.property-search-form__input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    color: var(--color-main-black);
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background-color: var(--color-main-white);
    transition: border-color 0.2s ease;
    font-weight: var(--font-weight-medium);
}

.property-search-form__input:focus {
    outline: none;
    border-color: var(--color-accent-orange);
}

.property-search-form__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.property-search-form__checkboxes--two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.property-search-form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--color-main-black);
    cursor: pointer;
}

.property-search-form__checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-accent-orange);
}

.property-search-form__checkbox-label span {
    user-select: none;
}

.property-search-form__submit {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-accent-orange);
    background-color: var(--color-main-white);
    border: 1px solid var(--color-accent-orange);
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    margin-top: 30px;
}

.property-search-form__submit:hover,
.property-search-form__submit:focus-visible {
    background-color: var(--color-accent-orange);
    color: var(--color-main-white);
    transform: translateY(-1px);
}

.property-archive__content {
    min-width: 0;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nav-links {
    text-align: center;
}

.page-numbers {
    width: 30px;
    height: 30px;
    background-color: var(--color-main-white);
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.pagination .current {
    background-color: var(--color-accent-green);
    color: var(--color-main-white);
}

@media (max-width: 1024px) {
    .property-archive__layout {
        grid-template-columns: 280px 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .property-archive__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .property-archive__sidebar {
        position: static;
    }

    .property-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Property Single Hero Section */

.property-hero__header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.property-hero__info-panel {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
}

.property-hero__type-badge {
    display: inline-block;
    padding: 8px 21px;
    background-color: #6F5B40;
    color: var(--color-main-white);
    font-size: 12px;
    font-weight: 700;
}

.property-hero__title {
    font-size: clamp(20px, 5vw, 32px);
    color: var(--color-accent-green);
    font-weight: 700;
    margin: 0;
}

.property-hero__price {
    font-size: clamp(18px, 3.5vw, 20px);
    color: var(--color-accent-green);
    font-weight: 700;
    margin-top: 20px;
}

.property-hero__area {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--color-main-black);
    margin-top: 6px;
}

.property-hero__gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    margin-top: 60px;
}

.property-hero__main-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 480px;
    margin: 0 auto;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0;
}

.property-hero__main-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.property-hero__main-image.is-active {
    opacity: 1;
    position: relative;
}

.property-hero__image {
    width: 100%;
    max-width: 800px;
    height: 480px;
    object-fit: cover;
    display: block;
}

.property-hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-main-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-main-black);
    z-index: 10;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.property-hero__nav:hover,
.property-hero__nav:focus-visible {
    transform: translateY(-50%) scale(1.1);
}

.property-hero__nav--prev {
    left: 0;
}

.property-hero__nav--next {
    right: 0;
}

.property-hero__thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent-green) transparent;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.property-hero__thumbnails::-webkit-scrollbar {
    height: 6px;
}

.property-hero__thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.property-hero__thumbnails::-webkit-scrollbar-thumb {
    background-color: var(--color-accent-green);
    border-radius: 3px;
}

.property-hero__thumbnail {
    flex: 0 0 calc((100% - (5 * 12px)) / 6);
    width: calc((100% - (5 * 12px)) / 6);
    max-width: calc((800px - (5 * 12px)) / 6);
    aspect-ratio: 1;
    border: 2px solid transparent;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    background: none;
    padding: 0;
    transition: border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.6;
    position: relative;
}

.property-hero__thumbnail:hover,
.property-hero__thumbnail:focus-visible {
    outline: none;
}

.property-hero__thumbnail.is-active {
    border-color: var(--color-accent-green);
    opacity: 1;
}

.property-hero__thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .property-hero {
        flex-direction: column;
        gap: 24px;
    }

    .property-hero__info-panel {
        flex: 1;
    }

    .property-hero__thumbnails {
        gap: 8px;
        max-width: 74vw;
    }

    .property-hero__thumbnail {
        flex: 0 0 calc((100% - (5 * 8px)) / 6);
        width: calc((100% - (5 * 8px)) / 6);
        max-width: calc((100% - (5 * 8px)) / 6);
        aspect-ratio: 1;
    }

    .property-hero__gallery {
        max-width: 100%;
        margin-top: 40px;
    }

    .property-hero__image {
        max-width: 100%;
        height: 190px;
    }

    .property-hero__main-image-wrapper {
        max-width: 74vw;
        height: 190px;
    }

    .property-hero__nav {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }

    .property-hero__price {
        margin-top: 16px;
    }

}

/* Property PR Comment Section */
.property-pr-comment {
    margin-top: 60px;
    padding: 0;
}

/* Property Details Section */
.property-details {
    margin-top: 60px;
    margin-bottom: 60px;
}

.property-details__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-main-black);
    margin-bottom: 32px;
    text-align: left;
}

.property-details__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
}

.property-details__column {
    display: flex;
    flex-direction: column;
}

.property-details__row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
    align-items: start;
}

/* .property-details__row:first-child {
    border-bottom: 1px solid #ddd;
} */

.property-details__label {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-accent-green);
    min-width: 100px;
}

.property-details__value {
    color: var(--color-main-black);
    font-size: 14px;
}

.property-details__row--full {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
    border-top: none;
    margin-top: 0;
    width: 100%;
}

/* Vertical divider between columns */
.property-details__divider {
    display: none;
}

@media (max-width: 768px) {
    .property-details__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .property-details__row:first-child {
        border-top: none;
    }

    .property-details__column--left {
        border-top: 1px solid #ddd;
    }

    .property-details__divider {
        display: none;
    }

    .property-details__column--left,
    .property-details__column--right {
        padding-left: 0;
        padding-right: 0;
    }

    .property-details__row {
        grid-template-columns: 100px 1fr;
        gap: 12px;
        padding: 20px 0;
    }

    .property-pr-comment {
        margin-top: 30px;
    }

    .property-details__title {
        margin-bottom: 24px;
    }

    .property-pr-comment p {
        font-size: 14px;
    }
}

/* Contact Form 7 Styles */
.property-contact-form {
    margin-top: 80px;
    margin-bottom: 60px;
}

.contact-form__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-main-black);
    margin-bottom: 32px;
    text-align: left;
}

.contact-form__intro {
    color: var(--color-main-black);
    font-weight: 500;
    margin-bottom: 32px;
}

.contact-form__divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 0 42px 0;
}

/* Contact Form 7 Form Styles */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Remove automatic p and br tags from Contact Form 7 */
.wpcf7-form p {
    margin: 0;
    padding: 0;
}

.wpcf7-form br {
    display: none;
}

.wpcf7-form .form-row {
    margin-bottom: 30px;
}

.wpcf7-form .form-label {
    display: block;
    color: var(--color-main-black);
    margin-bottom: 10px;
}

.wpcf7-form .form-label .required {
    color: var(--color-accent-orange);
    margin-left: 2px;
}

.wpcf7-form .form-label.remarks {
    font-weight: 500;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: "Noto Serif JP", serif;
    color: var(--color-main-black);
    border: none;
    border-radius: 4px;
    background-color: #F9F9F9;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--color-accent-orange);
}

.wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Radio buttons for inquiry content */
.wpcf7-form .form-row .wpcf7-radio {
    margin-top: 8px;
}

.wpcf7-form .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.wpcf7-form .wpcf7-radio .wpcf7-list-item {
    margin: 0;
}

.wpcf7-list-item {
    margin: 0;
}

.wpcf7-form .wpcf7-radio input[type="radio"] {
    width: auto;
    margin-right: 8px;
    accent-color: var(--color-accent-orange);
    flex-shrink: 0;
}

.wpcf7-form .wpcf7-radio label {
    font-weight: 500;
    color: var(--color-main-black);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin: 0;
}

/* Acceptance checkbox */
.wpcf7-form .form-acceptance {
    margin-bottom: 32px;
}

.wpcf7-form .form-acceptance .wpcf7-acceptance {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.wpcf7-form .form-acceptance .wpcf7-acceptance input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
    accent-color: var(--color-accent-orange);
    flex-shrink: 0;
}

.wpcf7-form .form-acceptance .wpcf7-acceptance label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-main-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wpcf7-form .form-acceptance .wpcf7-acceptance label a {
    color: var(--color-accent-green);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.wpcf7-form .form-acceptance .wpcf7-acceptance label a:hover {
    opacity: 0.7;
}

/* Submit button */
.wpcf7-form .form-submit {
    margin-bottom: 0;
    text-align: center;
}

.wpcf7-form .wpcf7-submit {
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    color: var(--color-main-white);
    background-color: var(--color-accent-green);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
    min-width: 200px;
}

.wpcf7-form .wpcf7-submit:hover,
.wpcf7-form .wpcf7-submit:focus-visible {
    transform: translateY(-2px);
    opacity: 0.9;
    background-color: #005a4d;
    outline: none;
}

.wpcf7-form .wpcf7-submit:active {
    transform: translateY(0);
}

/* Error and success messages */
.wpcf7-response-output {
    margin-top: 24px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.wpcf7-mail-sent-ok {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-spam,
.wpcf7-validation-errors {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wpcf7-not-valid-tip {
    color: var(--color-accent-orange);
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.wpcf7-not-valid {
    border-color: var(--color-accent-orange) !important;
}

@media (max-width: 768px) {
    .property-contact-form {
        margin-top: 60px;
        margin-bottom: 40px;
    }

    .contact-form__title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .contact-form__intro {
        font-size: 14px;
    }

    .wpcf7-form .form-row {
        margin-bottom: 20px;
    }

    .wpcf7-form .wpcf7-radio {
        flex-direction: column;
        gap: 12px;
    }

    .wpcf7-form .wpcf7-submit {
        width: 100%;
        min-width: auto;
    }
}

/* Archive Posts List */

.archive-post-item {
    margin-bottom: 0;
}

.archive-post-item__link {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    color: var(--color-main-black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.archive-post-item__link:hover {
    opacity: 0.7;
}

.archive-post-item__date {
    color: var(--color-sub-brown);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.archive-post-item__title {
    color: var(--color-main-black);
    font-size: 16px;
    font-weight: 600;
}

.archive-post-item__divider {
    border: none;
    border-top: 1px solid var(--color-main-black);
    margin: 0;
    opacity: 0.2;
}

/* Archive Pagination */
.archive-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 40px 0;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    color: var(--color-main-black);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.archive-pagination .page-numbers.current {
    background-color: var(--color-accent-green);
    color: var(--color-main-white);
    border-radius: 4px;
}

.archive-pagination .page-numbers:hover:not(.current) {
    opacity: 0.7;
}

/* Fixed Authentication Buttons */
.fixed-auth-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.auth-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    min-width: 150px;
    border-radius: 30px;
    color: var(--color-main-white);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.auth-button:hover,
.auth-button:focus-visible {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.auth-button i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.auth-button span {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
}

.auth-button--register {
    background-color: var(--color-accent-orange);
}

.auth-button--login {
    background-color: var(--color-accent-green);
}

.auth-button--logout {
    background-color: var(--color-accent-green);
}

@media (max-width: 768px) {
	
	.archive-post-item__link {
flex-direction: column;
        align-items: flex-start;
        gap: 6px;
	}
	
    .fixed-auth-buttons {
        flex-direction: row;
        right: 0;
        bottom: 0;
        gap: 0;
        width: 100%;
    }

    .auth-button {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 0;
        justify-content: center;
        align-items: center;
    }

    .auth-button i {
        font-size: 16px;
        width: 18px;
    }

    .auth-button span {
        flex: initial;
    }
}