/* Header visibility override without touching core files */
.header {
    transform: translateY(-100%);
    transition: transform 0.35s ease;
}

.header.show-header {
    transform: translateY(0);
}

/* Contact info alignment */
.contact-info-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

/* Access section spacing - reduced spacing */
@media screen and (min-width: 768px) {
    /* Target the specific pure-g in access section */
    section .pure-g > .pure-u-1.pure-u-md-1-2:first-child {
        padding-right: 1rem;
    }
    
    section .pure-g > .pure-u-1.pure-u-md-1-2:last-child {
        padding-left: 1rem;
    }
}

/* Additional spacing for access section */
section .pure-g {
    margin: 0.6rem 0;
}

section .pure-g > .pure-u-1.pure-u-md-1-2 {
    margin-bottom: 0.4rem;
}

/* Footer contact info alignment */
.footer-bottom .contact-info-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.footer-bottom .contact-info-list .first-line {
    flex: 0 0 auto;
    white-space: nowrap;
    margin: 0;
    line-height: 1.2;
    padding-right: 0.5em;
}

.footer-bottom .contact-info-list .indent-line {
    flex: 1 1 100%;
    margin: 0;
    padding-left: 0;
    line-height: 1.2;
    display: block;
    width: 100%;
}

/* Footer phone and FAX number color */
.footer-bottom p .tel {
    color: white;
    text-decoration: none;
}

.footer-bottom p .tel:hover {
    color: #ccc;
    text-decoration: underline;
}

.contact-info-list .first-line {
    flex: 0 0 auto;
    white-space: nowrap;
    margin: 0;
    line-height: 1.2;
    padding-right: 0.5em;
}

.contact-info-list .indent-line {
    flex: 1 1 100%;
    margin: 0;
    padding-left: 0;
    line-height: 1.2;
    display: block;
    width: 100%;
}

/* ---- from -style.css (minimal needed) ---- */
:root {
    --easing: cubic-bezier(0.2, 1, 0.2, 1);
    --transition: 0.8s var(--easing);
    --color-base: #fff;
    --color-gray: #ddd;
    --color-theme: #d72632;
    --color-theme-darken: #6e8f00;
    --color-text: #adbdb7;
    --box-shadow: 0.8rem 0.8rem 1.2rem rgba(84, 69, 69, 0.05), -0.8rem -0.8rem 1.2rem #fff;
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08), -1rem -1rem 1.5rem #fff;
    --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), inset -0.8rem -0.8rem 1.2rem #fff;
    --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1), -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}

html {
    font-family: "Spartan", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    font-size: 75%;
    font-weight: 500;
    line-height: 1.8;
    height: 100%;
    word-break: break-word;
    color: #333;
    background-color: var(--color-base);
    -webkit-tap-highlight-color: transparent;
    scroll-padding-top: 30px;
    scroll-behavior: smooth;
}

/* Force smooth scroll for all browsers */
* {
    scroll-behavior: smooth;
}

body {
    font-size: 1.6rem;
    margin: 0;
}

/* Fonts */
.ah-hakushuW3 {
    font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

.ah-hakushuW6 {
    font-family: "Hina Mincho", serif;
    font-weight: 700;
    font-style: normal;
}

/* Swiper container fullscreen - override swiper.css with higher specificity */
body .mv02 {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body .mv02 .swiper {
    height: 100vh;
    width: 100vw;
}

body .mv02 .swiper-wrapper {
    height: 100vh;
    width: 100vw;
}

body .mv02 .swiper-slide {
    height: 100vh;
    width: 100vw;
}

/* Slide styles - override swiper.css with higher specificity */
body .mv02 .slide {
    display: grid;
    place-content: center;
    height: 100vh;
    width: 100vw;
    padding: 0 8rem;
    text-align: center;
    position: relative;
}

.slide a {
    color: #d72632;
}

body .mv02 .slide-media {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.slide-media img {
    transition: 7s 1s linear;
    transform: translateX(-1.5%) scale(1.1);
}

.slide-title,
.slide-text,
.slide-link {
    animation: 2s var(--easing) both;
    opacity: 0;
}

.slide-title {
    font-size: 6rem;
    line-height: 1.1;
    color: var(--color-theme);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    height: 30rem;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.56);
    white-space: nowrap;
}

.slide-text {
    font-size: 1.8rem;
    margin: 4rem 0;
    animation-delay: 0.2s;
    color: #fff;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.slide-link {
    animation-delay: 0.4s;
}

.slide-button {
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    color: var(--color-theme);
}

.slide-button::before {
    display: inline-block;
    width: 6rem;
    height: 1px;
    margin: -2px 1.6rem 0 0;
    content: "";
    vertical-align: middle;
    background-color: currentColor;
}

/* Animation keyframes */
@keyframes fadeIn {
    0% {
        transform: translateY(6rem);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-6rem);
        opacity: 0;
    }
}

/* Responsive styles */
@media only screen and (max-width: 1024px) {
    body .mv02 {
        height: 100vh;
        width: 100vw;
    }
    
    body .mv02 .swiper,
    body .mv02 .swiper-wrapper,
    body .mv02 .swiper-slide {
        height: 100vh;
        width: 100vw;
    }
    
    body .mv02 .slide {
        height: 100vh;
        width: 100vw;
        padding: 0 2rem;
    }
    
    .mv02 .slide-title {
        font-size: 4rem;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        margin-left: auto;
    }

    .mv02 .slide-text {
        display: flex;
        font-size: 1.6rem;
        margin: 3.2rem 0;
    }

    .mv02 .slide-text span {
        white-space: pre;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    }
}

.p-3 { padding: 1rem; }
.m-right { margin: 0 0 0 auto; }

button.btn-custom,
.btn.btn-custom {
    color: var(--color-theme);
    background-color: #fff;
    border: 1px solid var(--color-theme);
}
.btn.btn-custom:focus,
.btn.btn-custom:hover,
.btn.btn-custom:active,
.btn.btn-custom.active {
    background: #d74747;
    border-color: var(--color-theme);
    color: #fff;
}

.card {
    outline: 1px solid var(--color-theme);
    color: #333;
    margin: 0.2em;
    margin-bottom: 0.7rem;
    padding: 0.3em;
    padding-bottom: 2.8rem; /* ボタンの固定領域分の余白 */
    position: relative;
}
.card .card-title { font-weight: 900; }
.card .card-footer {
    position: absolute;
    right: 0.6rem;
    bottom: 0.6rem;
    font-size: 1em; /* ベース縮小 */
}
.card .card-footer .btn {
    font-size: 0.85rem; /* ひとまわり小さく */
    padding: 0.3rem 0.6rem;
    line-height: 1.2;
}

h3.subtitle {
    border-bottom: 2px solid var(--color-theme);
    display: inline-block;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    font-size: 2.4rem;
    font-weight: 700;
}

/* ナビバーで隠れないようにオフセットを追加 */
#about,
#precinct-info,
#shop,
#access,
#contact-form {
    scroll-margin-top: 5rem;
}

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

#access a { color: #000; }

/* Contact Section Styles */
.contact-info-card,
.contact-form-preview {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    margin: 0.5rem;
}

.contact-info-title,
.contact-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-theme);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--color-theme);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f3f4;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    color: var(--color-theme);
    font-size: 1.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-info-item strong {
    color: #333;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-info-item a {
    color: var(--color-theme);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-item a:hover {
    color: var(--color-theme-darken);
    text-decoration: underline;
}

.contact-form-description {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-form-button {
    text-align: center;
}

.contact-form-button .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(215, 38, 50, 0.3);
}

.contact-form-button .btn i {
    font-size: 1.6rem;
}

/* Contact Form Section Styles */
.contact-form-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* Remove form legend since we now use the subtitle */
.form-legend {
    display: none;
}

/* Form Styles */
.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
}

.form-label.required::after {
    content: " *";
    color: var(--color-theme);
    font-weight: bold;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1.4rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-theme);
    box-shadow: 0 0 0 3px rgba(215, 38, 50, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

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

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

/* Checkbox Styles */
.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1.6;
}

.form-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-text {
    flex: 1;
}

.privacy-link {
    color: var(--color-theme);
    text-decoration: underline;
    font-weight: 600;
}

.privacy-link:hover {
    color: var(--color-theme-darken);
}

/* Error Messages */
.error-message {
    color: #dc3545;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
}

.error-message.show {
    display: block;
    animation: fadeInError 0.3s ease-in;
}

@keyframes fadeInError {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 3rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--color-theme), var(--color-theme-darken));
    color: white;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(215, 38, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 38, 50, 0.4);
}

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

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Loading State */
.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.info-title {
    font-size: 2rem;
    color: var(--color-theme);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-theme);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f3f4;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-theme), var(--color-theme-darken));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 2rem;
}

.info-content h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: var(--color-theme);
    text-decoration: none;
    font-weight: 600;
}

.info-content a:hover {
    color: var(--color-theme-darken);
    text-decoration: underline;
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-bottom: 2rem;
    display: none;
}

.success-message.show {
    display: block;
}

.success-message h3 {
    margin-bottom: 1rem;
    color: #155724;
}

/* Responsive Design for Contact Form */
@media screen and (max-width: 768px) {
    .contact-form-section {
        padding: 2rem 0;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-legend,
    .info-title {
        font-size: 2rem;
    }
    
    .submit-btn {
        padding: 1.2rem 3rem;
        font-size: 1.4rem;
    }
    
    .info-item {
        gap: 1rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-form-container,
    .contact-info {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 1rem 1.2rem;
        font-size: 1.6rem; /* Prevent zoom on iOS */
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Privacy Policy Modal Styles */
.privacy-content {
    line-height: 1.8;
}

.privacy-content h3 {
    font-size: 2rem;
    color: var(--color-theme);
    margin-bottom: 1.5rem;
}

.privacy-content h4 {
    font-size: 1.6rem;
    color: #333;
    margin: 2rem 0 1rem 0;
}

.privacy-content p {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 1rem;
}

.privacy-content ul {
    font-size: 1.4rem;
    color: #666;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.map iframe {
    aspect-ratio: 16 / 9;
    max-width: 1000px;
    width: 100%;
    height: auto;
}

/* --- Simple modal styles (vanilla) --- */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.modal.active { display: flex; }
.modal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.modal .modal-container {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 6px;
    max-width: 960px;
    width: 92%;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.modal .modal-header,
.modal .modal-footer { padding: 1rem 1.25rem; }
.modal .modal-title { font-weight: 700; }
.modal .modal-body { padding: 0.75rem 1.25rem 1.25rem; }
.modal .modal-body p { margin: 0.5rem 0; }
.modal .modal-close { cursor: pointer; }
.modal .modal-body img { width: 100%; height: auto; display: block; margin-bottom: 0.75rem; }

/* Close button to top-right, aligned with title height */
.modal .modal-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 3rem; /* space for close button */
}
.modal .modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: 0;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--color-theme);
    opacity: 0.9;
}
.modal .modal-close:hover { opacity: 1; }

/* --- Two-line clamp for card preview text --- */
.js-textTrim.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: pre-line;
    word-break: break-word;
}

footer {

    text-align: center;
    border-top: 2px solid #d72632;
    padding: 2rem;
    margin-top: 3rem;
}

footer .footer-logo {
    width: 8rem;
    height: auto;
}

footer .footer-bottom {
    margin-top: 3rem;
    background: #d72632;
    color: #fff;
}

/* Top button */
#topBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 12px 16px;
    border: none;
    cursor: pointer;
    color: #d72632;
    background-color: #fff;
    border: 2px solid var(--color-theme);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

#topBtn:hover {
    background-color: var(--color-theme);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#topBtn.show {
    display: block;
}

/* Desktop navigation - show menu by default with higher specificity */
@media screen and (min-width: 1151px) {
    body .nav__menu {
        position: static;
        left: auto;
        top: auto;
        background-color: transparent;
        width: auto;
        height: auto;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        column-gap: 3.5rem;
        transition: none;
        z-index: auto;
    }
    
    body .nav__link {
        font-size: 1.3rem;
        font-weight: 600;
    }
    
    body .nav__toggle,
    body .nav__close {
        display: none;
    }
}

/* Instagram button with FontAwesome icon - inspired by saruwakakun.com */
.nav__social-link.insta_btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    position: relative;
}

/* Instagramボタンスタイル - より高い優先度で上書き */
body a.nav__social-link.insta_btn span.insta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    overflow: hidden;
    border-radius: 10px;
}

a.nav__social-link.insta_btn span.insta:before {
    content: '';
    position: absolute;
    top: 21px;
    left: -18px;
    width: 60px;
    height: 60px;
    background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
    background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
}

/* RemixIcon Instagramアイコンスタイル - より高い優先度で上書き */
body a.nav__social-link.insta_btn span.insta i.ri-instagram-line {
    color: #FFF;
    position: relative;
    z-index: 2;
    font-size: 30px;
    display: block;
    line-height: 1;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    font-family: "remixicon";
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    text-rendering: auto;
}

.nav__social-link.insta_btn:hover {
    transform: translateY(-0.25rem) scale(1.05);
    transition: all 0.3s ease;
}

/* Mobile navigation fullscreen fix with higher specificity */
@media screen and (max-width: 1150px) {
    body .header {
        height: 4.5rem;
    }
    
    body .nav__toggle {
        display: block;
        font-size: 2rem;
        padding: 0.5rem;
    }
    
    body .nav__close {
        font-size: 2rem;
        padding: 0.5rem;
    }
    
    body .nav__menu {
        position: fixed;
        left: -100%;
        top: 0;
        background-color: #000;
        width: 100vw;
        height: 100vh;
        padding: 6rem 3.5rem 4.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: left 0.4s;
        z-index: 1000;
    }
    
    body .nav__menu.show-menu {
        left: 0;
    }
    
    body .nav__link {
        font-size: 1.5rem;
        font-weight: 600;
    }
}