/* ============================================
   Hair Produce K.men's — レンガ調シックなメンズ理容室
   ============================================ */
:root {
    /* レンガ・テラコッタベース */
    --color-bg: #f2e8e2;
    --color-bg-card: #faf5f1;
    --color-brick: #8b5a4a;
    --color-brick-light: #a06d5a;
    --color-brick-dark: #6d4235;
    --color-wood: #3d2c26;
    --color-wood-light: #5c4639;
    --color-accent: #8b5a4a;
    --color-accent-soft: #a06d5a;
    --color-text: #2c2520;
    --color-text-muted: #5c4d45;
    --color-border: #d9ccc4;
    --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    --shadow-soft: 0 4px 20px rgba(109, 66, 53, 0.08);
    --shadow-card: 0 8px 32px rgba(109, 66, 53, 0.1);
    --radius: 6px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-brick);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover {
    color: var(--color-wood);
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- Header ----- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(242, 232, 226, 0.96);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 20px;
}

.header-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    flex-direction: column;
    color: var(--color-wood);
    font-family: var(--font-serif);
}
.logo-main {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.logo-sub {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 28px;
}
.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}
.nav a:hover {
    color: var(--color-brick);
}

.nav-toggle {
    display: none;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.nav-toggle::before,
.nav-toggle::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-wood);
    transition: transform 0.3s ease;
}
.nav-toggle::before { top: 8px; }
.nav-toggle::after { bottom: 8px; }
.nav-toggle span {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    margin-top: -1px;
    background: var(--color-wood);
    transition: opacity 0.2s ease;
}
.nav-toggle.is-open::before {
    transform: translateY(5px) rotate(45deg);
}
.nav-toggle.is-open::after {
    transform: translateY(-5px) rotate(-45deg);
}
.nav-toggle.is-open span {
    opacity: 0;
}

@media (max-width: 768px) {
    .header-inner {
        justify-content: space-between;
        gap: 0;
    }
    .nav-toggle {
        display: block;
    }
    .nav {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--color-bg-card);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}

/* ----- Hero ----- */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(45, 37, 32, 0.4) 0%, rgba(45, 37, 32, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    background: var(--color-brick);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 10px 20px;
    margin-bottom: 24px;
    border-radius: 2px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 5.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.02em;
}
.hero-title-accent {
    display: block;
    margin-top: 8px;
}

.hero-lead {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    margin-top: 20px;
    opacity: 0.95;
    max-width: min(520px, 90vw);
    margin-left: auto;
    margin-right: auto;
}
.hero-lead-end {
    white-space: nowrap;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}
.hero-cta .btn {
    width: auto;
    max-width: none;
    margin-bottom: 0;
}
.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.9);
}
.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.btn-hero-primary {
    background: var(--color-brick);
    color: #fff;
    border: none;
}
.btn-hero-primary:hover {
    background: var(--color-brick-light);
    color: #fff;
}

/* ----- Sections ----- */
.section {
    padding: 72px 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--color-wood);
    text-align: center;
    margin-bottom: 12px;
}

.section-lead {
    text-align: center;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    font-size: 0.95rem;
}
.text-nowrap {
    white-space: nowrap;
}

/* ----- Greeting ----- */
.greeting-inner {
    max-width: 640px;
    margin: 0 auto;
}
.greeting-inner p {
    color: var(--color-text-muted);
    line-height: 1.85;
    margin-bottom: 1rem;
}
.greeting-inner p:last-child {
    margin-bottom: 0;
}

/* ----- Concept ----- */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
}

@media (min-width: 560px) {
    .concept-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 768px) {
    .concept-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.concept-card {
    background: var(--color-bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    display: flex;
}

.concept-card-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px 24px;
    min-width: 0;
}

.concept-icon {
    display: block;
    font-size: 1.75rem;
    margin-bottom: 14px;
    color: var(--color-brick-light);
    line-height: 1;
}

.concept-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-wood);
    line-height: 1.4;
    margin-bottom: 12px;
    min-height: 2.8em;
    display: flex;
    align-items: center;
}

.concept-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* ----- Menu ----- */
.menu {
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.menu-table-wrap {
    overflow-x: auto;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    margin: 0 auto;
}
.menu-table th,
.menu-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}
.menu-table th {
    font-weight: 600;
    color: var(--color-wood);
    width: 200px;
    min-width: 200px;
    white-space: nowrap;
}
.menu-table td {
    color: var(--color-text-muted);
}
.menu-cut-line {
    white-space: nowrap;
}

.menu-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- Space (Gallery) ----- */
.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.gallery-item {
    margin: 0;
}
.gallery-item img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}
.gallery-item figcaption {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 10px;
    text-align: center;
}

.space-products {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- Video ----- */
.video-link-wrap {
    text-align: center;
    margin-top: 8px;
}
.btn-video {
    display: inline-block;
    max-width: none;
}

/* ----- Access ----- */
.notice-wrap {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 24px;
}
.notice-title {
    font-weight: 600;
    color: var(--color-wood);
    font-size: 0.9rem;
    margin-bottom: 6px;
}
.notice-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.access-map-wrap {
    margin-bottom: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}

.access-map {
    display: block;
    width: 100%;
    height: 280px;
    border: none;
}

.access-map-link {
    text-align: center;
    padding: 12px;
    background: var(--color-bg-card);
    margin: 0;
    font-size: 0.9rem;
}
.access-map-link a:hover {
    text-decoration: underline;
}

@media (min-width: 600px) {
    .access-map {
        height: 320px;
    }
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 700px) {
    .access-grid {
        grid-template-columns: 1fr;
    }
}

.access-info h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-wood);
    margin-bottom: 16px;
}
.access-info p {
    margin-bottom: 8px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}
.access-addr {
    font-weight: 500;
    color: var(--color-text);
}
.access-route {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}
.access-parking {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}
.access-tel {
    margin-top: 12px;
}
.access-tel a {
    font-weight: 600;
    color: var(--color-brick);
}
.access-hours {
    margin-top: 16px;
    font-size: 0.95rem;
}
.access-hours dt {
    font-weight: 600;
    color: var(--color-wood);
    margin-top: 10px;
}
.access-hours dt:first-child {
    margin-top: 0;
}
.access-hours dd {
    color: var(--color-text-muted);
    margin-left: 0;
    margin-top: 4px;
}
.access-note {
    font-size: 0.9rem;
    margin-top: 16px;
}
.access-note strong {
    color: var(--color-wood);
}
.access-pay {
    margin-top: 12px;
    font-size: 0.9rem;
}

.access-cta {
    background: var(--color-bg-card);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}
.cta-lead {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--color-text);
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    margin-bottom: 12px;
    width: 100%;
    max-width: 280px;
}
.btn:hover {
    transform: translateY(1px);
}
.btn-primary {
    background: var(--color-brick);
    color: #fff;
    border: none;
}
.btn-primary:hover {
    background: var(--color-brick-light);
    color: #fff;
}
.btn-secondary {
    background: transparent;
    color: var(--color-wood);
    border: 2px solid var(--color-wood);
}
.btn-secondary:hover {
    background: var(--color-wood);
    color: #fff;
}

/* ----- Footer ----- */
.footer {
    background: var(--color-wood);
    color: rgba(255, 255, 255, 0.85);
    padding: 40px 20px;
    text-align: center;
}
.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 6px;
}
.footer-logo span {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    opacity: 0.9;
}
.footer-addr {
    font-size: 0.85rem;
    margin-bottom: 16px;
    opacity: 0.9;
}
.footer-copy {
    font-size: 0.75rem;
    opacity: 0.7;
}
.footer a {
    color: rgba(255, 255, 255, 0.9);
}
