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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
    line-height: 1.8;
    color: #333;
    background: #f8f9fa;
    padding-top: 60px;
}

/* グローバルナビゲーション */
.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 20px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover {
    color: #667eea;
    border-bottom: 3px solid #667eea;
    background: #f8f9fa;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

header h1 {
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.4;
}

.title-br {
    display: inline;
}

.subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-info {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info p {
    margin: 8px 0;
    font-size: 15px;
}

.phone {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
    letter-spacing: 2px;
}

section {
    padding: 40px 30px;
    border-bottom: 1px solid #e0e0e0;
}

section:last-child {
    border-bottom: none;
}

h2 {
    color: #667eea;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
}

h3 {
    color: #764ba2;
    font-size: 20px;
    margin: 25px 0 15px 0;
}

.highlight {
    background: #fff8e1;
    padding: 25px;
    border-left: 5px solid #ffa726;
    margin: 20px 0;
    border-radius: 4px;
}

.feature-box {
    background: #f3e5f5;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
}

.warning-box {
    background: #ffebee;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    border-left: 5px solid #e53935;
}

.success-box {
    background: #e8f5e9;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
}

ul {
    margin: 15px 0 15px 25px;
}

li {
    margin: 8px 0;
}

.price {
    font-size: 32px;
    font-weight: bold;
    color: #e53935;
    text-align: center;
    margin: 20px 0;
}

.testimonial {
    background: #f5f5f5;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.testimonial-header {
    font-weight: bold;
    color: #764ba2;
    margin-bottom: 10px;
}

.map-container {
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.photo-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.staff-photo {
    max-width: 300px;
    margin: 20px auto;
    text-align: center;
}

.photo-wrapper {
    margin: 20px 0;
    text-align: center;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 0;
    }
    
    body {
        padding-top: 0;
    }
    
    .global-nav {
        position: relative;
    }
    
    .nav-container {
        flex-direction: column;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        text-align: center;
    }
    
    header h1 {
        font-size: 24px;
    }
    
    .title-br {
        display: block;
    }
    
    section {
        padding: 30px 20px;
    }
    
    .phone {
        font-size: 20px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .photo-grid-2col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .photo-grid-2col {
        grid-template-columns: 1fr;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
}