@charset "utf-8";
/* CSS Document */

/* ========================================
   Reset
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #7a9b76;
    --color-primary-dark: #5d7a59;
    --color-primary-light: #a8c5a4;
    --color-secondary: #d4b896;
    --color-accent: #c9a66b;
    --color-bg: #fdfbf7;
    --color-bg-alt: #f5f3ed;
    --color-text: #3d3d3d;
    --color-text-light: #6b6b6b;
    --color-white: #ffffff;
    --color-border: #e8e5dd;

    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Zen Kaku Gothic New', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
}

/* ========================================
   Layout
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    margin-top: var(--spacing-md);
}

/* ========================================
   Header
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
	backdrop-filter: none; 
    box-shadow: none;
	z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: none;
    border-bottom: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    min-width: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.header.scrolled .logo {
    color: var(--color-primary-dark);
}

.logo.visible {
    opacity: 1;
}

.logo span {
    white-space: nowrap;
}

.logo i {
    font-size: 1.4rem;
    color: inherit;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.header.scrolled .nav-menu a {
    color: var(--color-text);
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-menu.active a {
    color: var(--color-text);
}

.nav-menu.active a:hover {
    color: var(--color-primary-dark);
}

.nav-menu.active .nav-cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
}

.nav-cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    border-radius: 999px;
    padding: 0.6rem 1.5rem !important;
}

.nav-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

/* ========================================
   Sticky Background Wrapper
   Hero + About �Ŕw�i�摜�����L�E�Œ肷��
======================================== */
.sticky-bg-wrapper {
    position: relative;
    /* About �̍Ō�܂ł̍������m�ہiHero + About �̍��v�j */
}

/* �w�i�� sticky �ŌŒ肷�郌�C���[ */
.sticky-bg {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 0;
    /* ���̃��C���[�͍����������A�㑱�� Hero/About ��
       margin-top: -100vh �ŏd�Ȃ�悤�ɔz�u����� */
    pointer-events: none;
}

.sticky-bg-image {
    position: absolute;
    inset: 0;
    background-image: url("../images/salon.herotate.png");
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

/* �I�[�o�[���C�F�㕔�͔����A�����ɂ����Ă��Â� */
.sticky-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 16, 12, 0.14);
}

@media (min-width: 900px) {
    .sticky-bg-image {
        background-position: center 45%;
    }
}

@media (min-width: 1200px) {
    .sticky-bg-image {
        background-position: center 55%;
    }
}

@media (max-width: 768px) {
    .sticky-bg-overlay {
        background: rgba(12, 16, 12, 0.18);
    }
}
/* ========================================
   Hero
======================================== */
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-layer {
    margin-top: -100vh;
    position: relative;
    min-height: 100vh;          /* Hero�͉��1�����̂� */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 80px 20px 0;
}

.hero-layer .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: #ffffff;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero-logo-center.hidden {
    opacity: 0;
}

.hero-brand-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.brand-main {
    font-family: 'Playfair Display', var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    margin: 0;
    line-height: 1.2;
}

.brand-sub {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin: 0;
    opacity: 0.95;
}

.hero-title {
    margin: 0;
}

.hero-layer .hero-subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.16em;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    font-family: var(--font-sans);
    font-weight: 300;
}

.hero-layer .hero-main {
    display: block;
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.hero-layer .hero-description {
    font-size: 1.08rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-layer .hero-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-layer .hero-cta .btn {
    min-width: 240px;
}

.scroll-hint {
    position: fixed;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.scroll-hint.hidden {
    opacity: 0;
}

.scroll-hint__text {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1;
    margin: 0;
}

.scroll-hint__line {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.45);
    position: relative;
    overflow: hidden;
}

.scroll-hint__line::after {
    content: "";
    position: absolute;
    left: 0;
    top: -40%;
    width: 1px;
    height: 40%;
    background: rgba(255, 255, 255, 0.95);
    animation: scrollLine 1.6s ease-in-out infinite;
}

.scroll-hint__arrow {
    width: 10px;
    height: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    transform: rotate(45deg);
    animation: scrollArrow 1.6s ease-in-out infinite;
}

.btn {
    display: inline-block;
    width: 220px;                 /* �Œ蕝�ō��E������ */
    text-align: center;
    padding: 0.9rem 0;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    font-family: var(--font-sans);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(255, 255, 255, 0.82);
    color: #3d3d3d;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.96);
    border-color: #ffffff;
    color: #3d3d3d;
    transform: none;
    box-shadow: none;
}
.btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: rgba(255, 255, 255, 0.88);
}

.btn-secondary:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.9);
    color: #ffffff;
    transform: none;
}

/* Hero���� min-width �w��𖳌��� */
.hero-layer .hero-cta {
    gap: 28px;        /* 18px �� 28px */
}

.hero-layer .hero-description {
    margin-bottom: 3.5rem;    /* 2.5rem �� 3.5rem */
}

/* ========================================
   About�i�w�i�摜�̏�ɔ������ŏd�˂�j
======================================== */
.about-on-bg {
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl) 0 calc(var(--spacing-xl) + 60px);
}

.about-text-block {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

/* About�F�Z�N�V�������x�� */
.about-text-block .about-kicker {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 0.26em;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 6px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

/* About�F�匩�o�� */
.about-text-block .about-main-copy {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.24);
    margin-bottom: 32px;
}

/* About�F�{�� */
.about-text-block .about-intro {
    max-width: 720px;
    margin: 0 auto 40px;
}

.about-text-block .about-intro p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
    margin-bottom: 1.3em;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

/* About�F3�̃|�C���g�i��؂���X�^�C���j */
.about-text-block .about-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 920px;
    margin: 0 auto;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.about-text-block .about-note {
    padding: 0 28px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.about-text-block .about-note:last-child {
    border-right: none;
}

.about-text-block .about-note h3 {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.about-text-block .about-note p {
    font-size: 0.875rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    margin: 0;
}

/* ========================================
   Menu
======================================== */
.menu {
    background: var(--color-bg-alt);
    position: relative;
    z-index: 10;
    padding-top: var(--spacing-xl);
}

.menu-lineup {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 1rem;
    margin: 0 -1rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.menu-lineup::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

.menu-item {
    flex: 0 0 280px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.menu-image {
    position: relative;
    height: 200px;
    background: linear-gradient(160deg, #c8d9c6, #a8c5a4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
}

.menu-image::before {
    content: "HERB";
    font-size: 1.2rem;
    letter-spacing: 0.38em;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-serif);
    font-weight: 300;
    transition: var(--transition);
}

.menu-item:hover .menu-image::before {
    transform: scale(1.1);
}

.menu-image-2 {
    background: linear-gradient(160deg, #e0cdb8, #d4b896);
}
.menu-image-2::before { content: "SKIN"; }

.menu-image-3 {
    background: linear-gradient(160deg, #9ab597, #7a9b76);
}
.menu-image-3::before { content: "RELAX"; }

.menu-image-4 {
    background: linear-gradient(160deg, #d9c4a4, #c9a66b);
}
.menu-image-4::before { content: "CARE"; }

.menu-image-5 {
    background: linear-gradient(160deg, #c2d0bf, #9ab597);
}
.menu-image-5::before { content: "AROMA"; }

.menu-image-6 {
    background: linear-gradient(160deg, #d4c4b8, #c4a896);
}
.menu-image-6::before { content: "BODY"; }

.menu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    color: var(--color-white);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.menu-item:hover .menu-overlay {
    transform: translateY(0);
}

.menu-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.menu-overlay .menu-duration {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.menu-overlay .menu-description {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* ========================================
   Voice
======================================== */
.voice {
    background: var(--color-white);
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.voice-card {
    background: var(--color-bg);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    transition: var(--transition);
}

.voice-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.voice-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-accent);
}

.voice-text {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.voice-author {
    color: var(--color-text-light);
    font-size: 0.85rem;
    text-align: right;
    font-style: italic;
}

/* ========================================
   Reservation
======================================== */
.reservation {
    background: var(--color-white);
}

.reservation-line {
    margin-top: 30px;
    text-align: center;
}

.line-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 40px;
    background: #06c755;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.line-link svg {
    width: 20px;
    fill: #fff;
}

.line-link:hover {
    background: #04a944;
    transform: translateY(-2px);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: linear-gradient(135deg, #5d7a59, #7a9b76);
    color: var(--color-white);
    padding: 40px 0 var(--spacing-md);
}

.footer-brand-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.footer-insta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: var(--transition);
}

.footer-insta svg {
    width: 22px;
    fill: rgba(255, 255, 255, 0.92);
}

.footer-insta:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.footer-logo-center {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.6rem;
}

.footer-logo-center i {
    font-size: 1.7rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 16px;
}

.footer-nav a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.06em;
}

.footer-nav a:hover {
    color: var(--color-secondary);
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.footer-info .dot {
    opacity: 0.65;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
}

/* ========================================
   Scroll to top
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-5px);
}

/* ========================================
   Utility
======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========================================
   Animations
======================================== */
@keyframes scrollLine {
    0% { top: -40%; opacity: 0; }
    20% { opacity: 1; }
    100% { top: 120%; opacity: 0; }
}

@keyframes scrollArrow {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(6px) rotate(45deg);
        opacity: 1;
    }
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 900px) {
    .menu-lineup {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .about-text-block .about-notes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-text-block .about-note {
        padding: 20px 0 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .about-text-block .about-note:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .hero-layer .hero-main {
        font-size: 2.5rem;
    }
}

@media (max-width: 820px) {
    .menu-lineup {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-text-block .about-notes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-text-block .about-note {
        padding: 20px 0 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .about-text-block .about-note:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .hero-layer .hero-main {
        font-size: 2.4rem;
        line-height: 1.3;
    }

    .hero-layer .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        color: #ffffff;
    }

    .header.scrolled .mobile-menu-toggle {
        color: var(--color-primary-dark);
    }

    .logo {
        font-size: 0.95rem;
    }

    .logo span {
        white-space: normal;
        line-height: 1.3;
    }

    /* Hero */
    .hero-layer {
        min-height: 100vh;
        padding: 80px 16px 0;
    }

    .hero-layer .hero-content {
        margin-top: -6vh;
    }

    .hero-layer .hero-main {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-layer .hero-description {
        font-size: 1rem;
    }

    .hero-layer .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-layer .hero-cta .btn {
        width: 100%;
        min-width: 0;
    }

    /* About on bg */
    .about-text-block .about-notes {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-text-block .about-note {
        padding: 20px 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .about-text-block .about-note:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .about-text-block .about-main-copy {
        font-size: 1.6rem;
    }

    /* Menu */
    .menu {
        padding-top: 80px;
    }

    .menu-lineup {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        overflow-x: visible;
        padding: 0;
        margin: 0;
    }

    .menu-item {
        flex: none;
        width: auto;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-nav {
        gap: 18px;
    }

    .footer-logo-center {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-layer .hero-main {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .menu-grid,
    .menu-grid-more {
        grid-template-columns: 1fr;
    }

    .footer-info {
        flex-direction: column;
        gap: 4px;
    }

    .footer-info .dot {
        display: none;
    }

    .hero-logo-center {
        top: 42%;
    }

    .hero-brand-name {
        gap: 0.2rem;
    }

    .brand-main {
        font-size: 2rem;
    }

    .brand-sub {
        font-size: 1rem;
    }

    .hero-layer .hero-content {
        transform: translateY(80px);
    }
}

@media (max-width: 360px) {
    .hero-logo-center {
        top: 44%;
    }

    .brand-main {
        font-size: 1.8rem;
    }

    .brand-sub {
        font-size: 0.95rem;
    }

    .nav-menu a {
        padding: 0.4rem 0.7rem;
        font-size: 0.88rem;
    }

    .nav-cta {
        padding: 0.55rem 1.2rem !important;
    }
}

.hero-layer .hero-main {
    letter-spacing: 0.08em;     /* �ǉ� */
}

.hero-layer .hero-subtitle {
    letter-spacing: 0.22em;     /* 0.16em �� �L���� */
    font-size: 0.9rem;          /* ���������� */
}
.logo-img {
    height: 60px;
    width: auto;
    display: block;
    flex-shrink: 0;
}