/* 翡翠庵 新大阪店 - 洗練されたグレイッシュデザイン */
:root {
    --primary-green: #7D8E74;    /* グレイッシュグリーン（メイン） */
    --pale-green: #F1F3F0;      /* 低彩度の背景色 */
    --accent-jade: #B9C0B3;     /* グレイッシュな翡翠色 */
    --white: #FFFFFF;
    --soft-gray: #F8F9F8;
    --text-main: #3A3F39;       /* 深みのあるダークグレー */
    --text-muted: #788275;      /* 落ち着いたニュアンスカラー */
    --line-color: #06C755;
    
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.03);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, .serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

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

/* Common Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-pale { background-color: var(--pale-green); }
.bg-gray { background-color: var(--soft-gray); }

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 4px; /* 四角形で誠実な印象に */
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 10px;
    letter-spacing: 0.1em;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #6A7C62;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-outline {
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
}

.btn-line {
    background-color: var(--line-color);
    color: var(--white);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #EDEDED;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo-main {
    font-size: 1.8rem;
    color: var(--primary-green);
    letter-spacing: 0.2em;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.nav ul {
    display: flex;
    gap: 35px;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

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

/* Hamburger (Mobile Only) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 30px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-green);
    margin: 5px auto;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.4)), url('salon_room.png') center/cover no-repeat;
    position: relative;
}

.hero-inner {
    width: 100%;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-main);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* Common Components */
.section-title {
    font-size: 2.6rem;
    margin-bottom: 60px;
    color: var(--primary-green);
    letter-spacing: 0.05em;
}

.card {
    background: var(--white);
    padding: 50px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #F0F0F0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Grids */
.target-grid, .pillars-grid, .flow-grid {
    display: grid;
    gap: 30px;
}

.target-grid { grid-template-columns: repeat(4, 1fr); }
.pillars-grid { grid-template-columns: repeat(3, 1fr); }
.flow-grid { grid-template-columns: repeat(2, 1fr); margin-top: 60px; }

/* Access Page V2 */
.access-grid-v2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.access-grid-v2 .map-inner {
    border: 1px solid var(--pale-green);
    border-radius: 15px;
    overflow: hidden;
    line-height: 0;
    box-shadow: var(--shadow-soft);
}

.access-grid-v2 .guide-box {
    text-align: left;
}

.access-grid-v2 .guide-box h3 {
    margin-bottom: 20px;
    color: var(--primary-green);
}

@media (min-width: 769px) {
    .access-grid-v2 {
        flex-direction: row-reverse; /* Map Left, Text Right on PC */
        align-items: center;
    }
    .access-grid-v2 .guide-box, 
    .access-grid-v2 .map-inner {
        flex: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background: white;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .nav.open { display: flex; }
    
    .nav ul { flex-direction: column; gap: 40px; }
    .nav a { font-size: 1.4rem; }
    
    .hamburger { display: block; }
    .header-cta .btn { padding: 8px 14px; font-size: 0.75rem; letter-spacing: 0.05em; }
    
    .hero-title { font-size: 2.5rem; }
    
    .target-grid, .pillars-grid, .flow-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Advisor Page Specific Style */
.advisor-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.advisor-sub-title {
    margin-top: 40px;
}

.highlight-info {
    background: var(--pale-green);
    padding: 30px;
    border-radius: 8px;
    font-weight: 500;
    border-left: 5px solid var(--primary-green);
    margin-top: 40px;
}

@media (max-width: 768px) {
    .advisor-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .advisor-visual {
        order: -1; /* タイトルの下に写真を配置 */
        margin-bottom: 10px;
    }
    
    .advisor-content {
        max-width: 100%;
        width: 100%;
        padding: 0 5px;
    }
    
    .advisor-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}
