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

        body {
            font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            width: 100%;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.5rem;
            color: #4a5568;
            text-decoration: none;
            vertical-align: middle;
        }

        .site-title {
            font-size: 1.5rem;
            color: #333;
            vertical-align: middle;
            font-weight: 600;
        }

        .nav-container a {
            text-decoration: none;
        }

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

        .nav-item a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-item a:hover {
            color: #667eea;
        }

        .nav-item a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #667eea;
            transition: width 0.3s ease;
        }

        .nav-item a:hover:after {
            width: 100%;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #4a5568;
            cursor: pointer;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .hero {
            background-image: url(img/fv.png);
            background-size: cover;
            min-height: 100vh;
            width: 100%;
            max-height: 800px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: flex;
            align-items: center;
            max-width: 1200px;
            gap: 60px;
        }

        .hero-text {
            flex: 1;
            background: #ffffff60;
            padding: 100px;
        }

        .salon-type {
            font-size: 24px;
            color: #333;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .salon-name {
            font-size: 56px;
            font-weight: 500;
            letter-spacing: 4px;
            margin-bottom: 40px;
            color: #333;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: #fff;
        }

        .section-title {
            text-align: center;
            font-size: 24px;
            margin-bottom: 60px;
            color: #2c2c2c;
        }

        .services-list {
            max-width: 400px;
            margin: 0 auto;
        }

        .service-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-size: 16px;
            color: #333;
        }

        .service-item:last-child {
            border-bottom: none;
        }

        .service-bullet {
            width: 8px;
            height: 8px;
            background: #333;
            border-radius: 50%;
            margin-right: 15px;
            flex-shrink: 0;
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background: #f8f8f8;
        }

        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 28px;
            margin-bottom: 30px;
            color: #2c2c2c;
        }

        .about-text p {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .about-image {
            overflow: hidden;
        }

        .about-image img {
            border-radius: 10px;
            width: 250px;
        }

        /* Process Section */
        .process {
            padding: 50px;
            margin-bottom: 50px;
            background: #fff;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

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

        .step-img {
            width: 380px;
            display: flex;
            text-align: center;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 600;
            padding: 20px;
        }

        .step-img img {
            width: 380px;
        }

        .step-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .step-description {
            font-size: 14px;
            color: #666;
            text-align: left;
        }

        /* Products Section */
        .products {
            padding: 80px 0;
            background-image: url(img/save.png);
            background-size: cover;
            color: white;
            text-align: center;
        }

        .products h2 {
            color: #333;
            margin-bottom: 20px;
        }

        .products p {
            margin-bottom: 40px;
            color: #333;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: #d4af37;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .btn:hover {
            background: #b8941f;
        }

        /* Menu Section */
        .menu {
            padding: 80px 0;
            background: #f8f8f8;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: white;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .menu-name {
            font-size: 16px;
            color: #2c2c2c;
        }

        .menu-price {
            font-size: 18px;
            font-weight: 600;
            color: #d4af37;
        }

        /* Reviews Section */
        .reviews {
            padding: 80px 0;
            background: #fff;
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
        }

        .review-item {
            display: flex;
            gap: 20px;
            padding: 30px;
            background: #f8f8f8;
            border-radius: 10px;
        }

        .review-avatar {
            width: 120px;
            height: 120px;
            border-radius: 30%;
            flex-shrink: 0;
            overflow: hidden;
        }

        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .review-content h4 {
            font-size: 16px;
            margin-bottom: 5px;
            color: #2c2c2c;
            font-weight: 600;
        }

        .review-meta {
            font-size: 12px;
            color: #999;
            margin-bottom: 15px;
        }

        .review-text {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }

        /* Product Line Section */
        .product-line {
            padding: 80px 0;
            background: #f8f8f8;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .product-item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .product-image {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .product-image img {
            width: 100%;
        }

        .product-info {
            padding: 25px 20px;
        }

        .product-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2c2c2c;
        }

        .product-price {
            font-size: 20px;
            color: #d4af37;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .product-description {
            font-size: 13px;
            color: #666;
            line-height: 1.8;
            text-align: left;
        }

        /* Access Section */
        .access {
            padding: 80px 0;
            background: #fff;
        }

        .access-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .access-info {
            background: #f8f8f8;
            padding: 40px;
            border-radius: 10px;
        }

        .access-item {
            margin-bottom: 25px;
        }

        .access-item:last-child {
            margin-bottom: 0;
        }

        .access-label {
            font-size: 14px;
            font-weight: 600;
            color: #2c2c2c;
            margin-bottom: 8px;
        }

        .access-value {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }

        .phone-large {
            font-size: 24px;
            font-weight: 600;
            color: #2c2c2c;
        }

        .map-container {
            background: #e8f4f8;
            aspect-ratio: 1;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Contact Section */
        .contact {
            padding: 80px;
            background-image: url(img/bv.png);
            background-size: cover;
            width: 100%;
            height: 50%;
            color: white;
            text-align: center;
        }

        .contact h2 {
            color: white;
            margin-bottom: 30px;
            font-size: 24px;
        }

        .contact-info {
            max-width: 1200px;
            margin-bottom: 30px;
        }

        .phone-number {
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
        }

        .contact-hours {
            font-size: 14px;
            color: #333;
            background: #ffffff60;
            width: 250px;
            padding: 20px;
            margin: 0 auto;
        }

        /* Footer */
        .footer {
            background: #2c2c2c;
            color: #ccc;
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #444;
            font-size: 12px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }

            .salon-name {
                font-size: 32px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .access-content {
                grid-template-columns: 1fr;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 15px;
            }

            .section-title {
                font-size: 20px;
            }

            .hero-text {
                padding: 30px;
            }

            .site-title {
                font-size: 20px;
            }

            .hero {
                background-size: 280%;
                max-height: 300px;
            }

            .container {
                max-width: 100%;
            }

            .step-img {
                width: 100%;
            }

            .review-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
            }

            .contact-info {
                max-width: 100%;
                margin-bottom: 30px;
            }

            .menu-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
            }
        }