@charset "UTF-8";


:root {
    --bg-dark: #060f1c;
    --text-light: #ffffff;
    --gold-text: #e1cfb4;
    --content-width: 560px;

    
    --page-gutter: 50px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 0;
    overflow-x: hidden;

    color: var(--text-light);
    font-family: "Times New Roman", "Noto Serif JP", serif;
    -webkit-font-smoothing: antialiased;

    background-color: var(--bg-dark);
    background-image:
        linear-gradient(
            rgba(6, 15, 28, 0.38),
            rgba(6, 15, 28, 0.68)
        ),
        url("../img/background.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: scroll;
}

img,
picture,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

a:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--gold-text);
    outline-offset: 4px;
}


.main-container {
    width: 100%;
    min-width: 0;
    background-color: rgba(6, 15, 28, 0.84);
}

main {
    padding: 22px var(--page-gutter) 48px;
}

main > section {
    width: 100%;
    min-width: 0;
    scroll-margin-top: 72px;
}

.side-navigation {
    display: none;
}


.sampleP {
    margin: 26px 0 0;
    text-align: center;
}

.sampleP p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
    line-height: 1.8;
    letter-spacing: 0.04em;
}


.site-header {
    padding: 24px var(--page-gutter);
    text-align: center;
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-logo {
    text-align: center;
}

.logo-title {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.logo-sub {
    margin-top: 3px;
    color: #a0aec0;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}


.global-nav {
    position: sticky;
    top: 0;
    z-index: 1000;

    padding: 12px 14px;

    background: rgba(6, 15, 28, 0.88);
    border-top: 1px solid rgba(225, 207, 180, 0.10);
    border-bottom: 1px solid rgba(225, 207, 180, 0.18);

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.global-nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.global-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 30px;
    padding: 3px 1px;

    color: rgba(255, 255, 255, 0.84);
    font-size: 0.7rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;

    transition:
        color 0.25s ease,
        text-shadow 0.25s ease,
        transform 0.25s ease;
}

.global-nav a:hover {
    color: var(--gold-text);
    text-shadow: 0 0 12px rgba(225, 207, 180, 0.35);
    transform: translateY(-1px);
}


.hero-section {
    padding: 30px 0 15px;
    text-align: center;
}

.hero-book-wrap {
    position: relative;
    isolation: isolate;

    display: grid;
    place-items: center;

    width: min(82vw, 330px);
    aspect-ratio: 1 / 1;
    margin: 0 auto 40px;
}


.hero-book-wrap::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -32px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse 62% 46% at 50% 76%,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(213, 225, 244, 0.10) 36%,
            rgba(160, 190, 228, 0.04) 58%,
            transparent 78%
        ),
        radial-gradient(
            ellipse 46% 36% at 23% 28%,
            rgba(220, 230, 244, 0.07) 0%,
            transparent 74%
        );

    filter: blur(22px);
    pointer-events: none;
}


.hero-book-wrap::after {
    content: "";
    position: absolute;
    z-index: 2;

    bottom: -18px;
    left: 50%;

    width: 78%;
    height: 34%;

    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(210, 225, 245, 0.05) 48%,
        transparent 76%
    );

    filter: blur(18px);
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-book-image {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 4px;

    box-shadow:
        0 24px 34px rgba(0, 0, 0, 0.48),
        0 0 0 8px rgba(255, 255, 255, 0.025);
}

.hero-title {
    margin: 0;

    color: var(--text-light);
    font-family: "Times New Roman", "Noto Serif JP", serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.hero-lead {
    max-width: 430px;
    margin: 18px auto;

    color: #cbd5e1;
    font-size: 0.85rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.hero-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 280px;
    height: 48px;

    border-radius: 24px;
    text-decoration: none;

    font-size: 0.85rem;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-primary {
    color: var(--text-light);
    background: linear-gradient(135deg, #3b2d54, #1b3d6c, #4a2d4b);
    border: 1px solid rgba(255, 255, 255, 0.30);

    box-shadow: 0 4px 20px rgba(138, 75, 175, 0.25);
}

.btn-hero:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}



.section-title {
    position: relative;

    margin: 0 0 40px;
    padding-bottom: 18px;

    color: var(--gold-text);
    font-family: "Times New Roman", "Noto Serif JP", serif;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.05em;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;

    width: 92px;
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(225, 207, 180, 0.45) 18%,
        var(--gold-text) 50%,
        rgba(225, 207, 180, 0.45) 82%,
        transparent 100%
    );
}

.section-title::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;

    width: 5px;
    height: 5px;

    background: var(--gold-text);
    box-shadow: 0 0 10px rgba(225, 207, 180, 0.45);

    transform: translateX(-50%) rotate(45deg);
}



.about-section {
    padding: 42px 0 15px;
    text-align: center;
}

.card-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.concept-card {
    width: 100%;
    padding: 30px 20px;

    color: #1a2638;
    text-align: center;

    background-color: #f1e4cf;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 8px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.30);
}

.concept-card h3 {
    margin: 0 0 16px;

    font-family: "Times New Roman", "Noto Serif JP", serif;
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.concept-card p {
    margin: 0;

    color: #2c3a4e;
    font-size: 0.85rem;
    line-height: 1.7;
    text-align: left;
}



.services-section {
    padding: 42px 0 15px;
    text-align: center;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px 24px 30px;
    color: #1a2638;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.50);
}

.service-img-place {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;

    background-color: #f7f9fa;
}

.service-img-place img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    margin: 0 0 20px;

    font-family: "Times New Roman", "Noto Serif JP", serif;
    font-size: 1.4rem;
    line-height: 1.35;
    letter-spacing: 0.05em;
}

.service-desc {
    margin: 0 0 24px;

    color: #334155;
    font-size: 0.85rem;
    line-height: 1.7;
    text-align: left;
}

.service-meta {
    width: 100%;
    margin: 0 0 30px;
    padding: 16px 0 0;

    border-top: 1px dashed #e2e8f0;
    list-style: none;
    text-align: left;
}

.service-meta li {
    position: relative;

    padding-left: 12px;

    font-size: 0.85rem;
    line-height: 1.8;
}

.service-meta li::before {
    content: "・";
    position: absolute;
    left: 0;
}

.service-meta li span {
    font-weight: 700;
}

.btn-service-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 200px;
    height: 40px;

    color: var(--text-light);
    background: linear-gradient(135deg, #1b263b, #111827);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;

    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.btn-service-more:hover {
    background: linear-gradient(135deg, #2b3954, #1f293d);
    transform: translateY(-2px);
}



.message-section {
    padding: 42px 0 15px;
}

.message-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.message-photo-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.message-photo-place {
    width: 100%;
    max-width: 280px;
    height: 320px;
    overflow: hidden;

    background-color: #1e293b;
    border-radius: 12px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.40);
}

.message-photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-body {
    min-width: 0;
    text-align: left;
}

.profile-title {
    display: block;
    margin-bottom: 4px;

    color: var(--gold-text);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.profile-quote {
    margin: 0 0 16px;

    color: var(--text-light);
    font-family: "Times New Roman", "Noto Serif JP", serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
}

.message-text p {
    margin: 0 0 16px;

    color: #cbd5e1;
    font-size: 0.8rem;
    line-height: 1.8;
}

.message-text p:last-child {
    margin-bottom: 0;
}

.message-signature {
    margin-top: 20px;

    color: var(--gold-text);
    font-family: Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    text-align: right;
}



.flow-section {
    padding: 42px 0 15px;
    text-align: center;
}

.flow-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;

    width: 100%;
    margin: 0;
}

.flow-item {
    position: relative;

    display: flex;
    align-items: center;
    gap: 20px;

    width: 100%;
    text-align: left;
}

.flow-item:not(:last-child)::after {
    content: "↓";
    position: absolute;
    bottom: -32px;
    left: 24px;

    color: var(--gold-text);
    font-size: 1.2rem;
    opacity: 0.6;

    transform: translateX(-50%);
}

.flow-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    flex-shrink: 0;

    color: var(--gold-text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(225, 207, 180, 0.34);
    border-radius: 50%;

    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, 0.025),
        0 0 16px rgba(225, 207, 180, 0.06);
}

.flow-icon i {
    font-size: 1.15rem;
    line-height: 1;
}

.flow-content h3 {
    margin: 0 0 6px;

    color: var(--text-light);
    font-family: "Times New Roman", "Noto Serif JP", serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.flow-content p {
    margin: 0;

    color: #cbd5e1;
    font-size: 0.8rem;
    line-height: 1.5;
}


.faq-section {
    padding: 42px 0 15px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;

    width: 100%;
    margin: 0;
}

.faq-item {
    width: 100%;
    overflow: hidden;

    color: #1a2638;
    text-align: left;

    background-color: #f1e4cf;
    border-radius: 6px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.30);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    padding: 18px 20px;

    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-arrow {
    position: relative;

    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.faq-arrow::before,
.faq-arrow::after {
    content: "";
    position: absolute;

    width: 7px;
    height: 2px;

    background-color: #1a2638;

    transition: transform 0.3s ease;
}

.faq-arrow::before {
    top: 5px;
    left: 0;
    transform: rotate(45deg);
}

.faq-arrow::after {
    top: 5px;
    right: 0;
    transform: rotate(-45deg);
}

.faq-item[open] .faq-arrow::before {
    transform: rotate(-45deg);
}

.faq-item[open] .faq-arrow::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 20px;

    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.faq-answer p {
    margin: 0;

    color: #334155;
    font-size: 0.8rem;
    line-height: 1.7;
}


.cta-section {
    width: 100%;
    padding: 42px 0 15px;
}

.cta-card {
    width: 100%;
    padding: 40px 20px;

    color: var(--text-light);
    text-align: center;

    background: linear-gradient(
        135deg,
        rgba(59, 45, 84, 0.96) 0%,
        rgba(27, 61, 108, 0.94) 52%,
        rgba(74, 45, 75, 0.96) 100%
    );

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.cta-title {
    margin: 0 0 16px;

    color: var(--text-light);
    font-family: "Times New Roman", "Noto Serif JP", serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.cta-lead {
    margin: 0 0 28px;

    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 320px;
    min-height: 48px;
    padding: 12px 20px;

    border-radius: 24px;

    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-cta-white {
    color: #1a2638;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
}

.btn-cta-gold {
    color: #ffffff;
    background: linear-gradient(135deg, #d4bda2, #a68c6d);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.tel-num {
    margin-top: 2px;
    font-size: 0.95rem;
}

.btn-cta:hover {
    box-shadow: 0 7px 17px rgba(0, 0, 0, 0.20);
    transform: translateY(-2px);
}


.site-footer {
    padding: 40px var(--page-gutter) 20px;

    text-align: center;

    background: rgba(3, 8, 17, 0.58);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.company-name {
    margin: 0 0 12px;

    color: var(--gold-text);
    font-size: 1rem;
    font-weight: 700;
}

.company-address {
    margin-bottom: 32px;

    color: #94a3b8;
    font-size: 0.75rem;
    font-style: normal;
    line-height: 1.8;
}

.footer-sns {
    margin: 34px 0 40px;
}

.sns-label {
    display: block;
    margin-bottom: 12px;

    color: #64748b;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.sns-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sns-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sns-links a,
.sns-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    color: var(--gold-text);
    background: rgba(6, 15, 28, 0.42);
    border: 1px solid rgba(225, 207, 180, 0.28);
    border-radius: 50%;

    box-shadow:
        inset 0 0 12px rgba(255, 255, 255, 0.03),
        0 5px 16px rgba(0, 0, 0, 0.18);

    font-size: 1rem;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.sns-links a i,
.sns-icons a i {
    font-size: 1.35rem;
    line-height: 1;
}

.sns-links a:hover,
.sns-icons a:hover {
    color: #ffffff;
    background: rgba(225, 207, 180, 0.16);
    border-color: rgba(255, 255, 255, 0.58);

    box-shadow:
        inset 0 0 12px rgba(255, 255, 255, 0.05),
        0 8px 20px rgba(0, 0, 0, 0.28);

    transform: translateY(-3px) scale(1.04);
}

.sns-links a:active,
.sns-icons a:active {
    transform: translateY(-1px) scale(0.97);
}

.copyright {
    margin: 0;

    color: #475569;
    font-size: 0.65rem;
}



.back-to-top {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 900;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    color: var(--gold-text);
    background: rgba(6, 15, 28, 0.72);
    border: 1px solid rgba(225, 207, 180, 0.42);
    border-radius: 50%;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.28),
        inset 0 0 14px rgba(255, 255, 255, 0.04);

    font-size: 1rem;
    text-decoration: none;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.back-to-top:hover {
    color: #ffffff;
    background: rgba(225, 207, 180, 0.18);
    border-color: rgba(255, 255, 255, 0.62);

    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.34),
        0 0 18px rgba(225, 207, 180, 0.14);

    transform: translateY(-4px);
}

.back-to-top:active {
    transform: translateY(-1px) scale(0.94);
}



@media (min-width: 800px) {
    :root {
        --page-gutter: 36px;
    }

    body {
        display: grid;
        grid-template-columns:
            minmax(0, 1fr)
            var(--content-width)
            minmax(0, 1fr);
        min-height: 100vh;
        background-attachment: fixed;
    }

    .main-container {
        grid-column: 2;
        background-color: rgba(6, 15, 28, 0.91);
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-header {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .global-nav {
        padding: 13px 20px;
    }

    .global-nav ul {
        justify-content: center;
        gap: 24px;
    }

    .global-nav a {
        padding: 4px 3px;
        font-size: 0.8rem;
    }

    .hero-section {
        padding-top: 38px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .message-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .message-photo-wrap {
        width: 180px;
        flex-shrink: 0;
    }

    .message-photo-place {
        width: 180px;
        max-width: none;
        height: 220px;
    }

    .message-body {
        flex: 1;
        min-width: 0;
    }

    .profile-quote {
        font-size: 1.1rem;
    }

    .back-to-top {
        right: 28px;
        bottom: 28px;
    }

    
    .side-navigation {
        position: fixed;
        z-index: 100;
        top: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        width: calc((100vw - var(--content-width)) / 2);
        height: 100vh;
        overflow: hidden;
    }

    .left-side {
        left: 0;
    }

    .right-side {
        right: 0;
    }

    
    .side-navigation::before {
        content: "";
        position: absolute;
        top: 13vh;
        bottom: 13vh;
        left: 50%;

        width: 1px;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(225, 207, 180, 0.10) 10%,
            rgba(225, 207, 180, 0.38) 50%,
            rgba(225, 207, 180, 0.10) 90%,
            transparent 100%
        );
    }

    .sns-links,
    .side-rail-contact {
        position: relative;
        z-index: 1;
    }

    .sns-links {
        padding: 18px 0;
        background: linear-gradient(
            to right,
            transparent,
            rgba(6, 15, 28, 0.10),
            transparent
        );
    }

    .side-rail-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 18px 0;
    }

    .side-rail-label {
        color: rgba(225, 207, 180, 0.70);
        font-size: 0.63rem;
        letter-spacing: 0.18em;
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }

    .side-rail-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        width: 70px;
        height: 70px;

        color: var(--gold-text);
        background: rgba(6, 15, 28, 0.46);
        border: 1px solid rgba(225, 207, 180, 0.34);
        border-radius: 50%;

        box-shadow:
            inset 0 0 12px rgba(255, 255, 255, 0.03),
            0 5px 16px rgba(0, 0, 0, 0.18);

        text-decoration: none;

        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);

        transition:
            transform 0.25s ease,
            color 0.25s ease,
            background-color 0.25s ease,
            border-color 0.25s ease,
            box-shadow 0.25s ease;
    }

    .side-rail-button i {
        font-size: 1.2rem;
        line-height: 1;
    }

    .side-rail-button span {
        margin-top: 5px;
        font-family: "Times New Roman", serif;
        font-size: 0.54rem;
        line-height: 1;
        letter-spacing: 0.08em;
    }

    .side-rail-button:hover {
        color: #ffffff;
        background: rgba(225, 207, 180, 0.16);
        border-color: rgba(255, 255, 255, 0.60);

        box-shadow:
            inset 0 0 12px rgba(255, 255, 255, 0.05),
            0 8px 20px rgba(0, 0, 0, 0.28),
            0 0 18px rgba(225, 207, 180, 0.12);

        transform: translateY(-4px) scale(1.04);
    }

    .side-rail-button:active {
        transform: translateY(-1px) scale(0.96);
    }
}

@media (min-width: 800px) and (max-width: 1099px) {
    .side-rail-label {
        display: none;
    }

    .side-navigation::before {
        top: 25vh;
        bottom: 25vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
