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

        body {
            font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            background-color: #9ad0e6;
            padding: 20px 0;
            text-align: center;
            position: relative;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .clinic-name {
            font-size: 2em;
            color: #333;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .phone-number {
            font-size: 1.5em;
            font-weight: 600;
            color: #007BB8;
            margin-bottom: 20px;
        }

        .staff-photo {
            width: 100%;
            text-align: center;
        }

        .staff-photo img {
            width: 90%;
        }

        /* Navigation */
        .navigation {
            background: rgba(255, 255, 255, 0.9);
            padding: 15px 0;
            border-radius: 50px;
            margin: 20px auto;
            max-width: 850px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-icons {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #333;
            padding: 10px;
            border-radius: 15px;
            transition: all 0.3s ease;
            min-width: 80px;
        }

        .nav-item:hover {
            background: #E6F3FF;
            transform: translateY(-5px);
        }

        .nav-icon {
            width: 40px;
            height: 40px;
            background: #87CEEB;
            border-radius: 50%;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .nav-text {
            font-size: 12px;
            text-align: center;
        }

        /* Greeting Section */
        .greeting-section {
            background-color: #67a8e6;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .greeting-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .greeting-text {
            background: rgba(255, 255, 255, 0.9);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .greeting-title {
            font-size: 2em;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }

        .greeting-subtitle {
            font-size: 1.2em;
            color: #666;
            margin-bottom: 20px;
            text-align: center;
        }

        .greeting-description {
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        .doctor-profile {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .doctor-photo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #87CEEB;
            overflow: hidden;
        }

        .doctor-info h3 {
            color: #333;
            margin-bottom: 5px;
        }

        .doctor-info p {
            color: #666;
            font-size: 14px;
        }

        .d-photo {
            width: 500px;
            height: 500px;
            border-radius: 30%;
            background: #87CEEB;
            overflow: hidden;
        }

        /* Services Section */
        .services-section {
            background-color: #1E90FF;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .services-title {
            text-align: center;
            color: white;
            font-size: 2.5em;
            margin-bottom: 50px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-item {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(135, 206, 235, 0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.3s ease;
        }

        .service-item:hover::before {
            transform: scale(1);
        }

        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #87CEEB, #4169E1);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            position: relative;
            z-index: 1;
        }

        .service-title {
            font-size: 1.1em;
            color: #333;
            margin-bottom: 15px;
            font-weight: bold;
            position: relative;
            z-index: 1;
        }

        .service-description {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* FAQ Section */
        .faq-section {
            background: #abd4e4;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .faq-title {
            text-align: center;
            color: #333;
            font-size: 2.5em;
            margin-bottom: 50px;
        }

        .faq-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            background: #9bdffa;
            color: white;
            padding: 20px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #4199e1;
        }

        .faq-answer {
            padding: 20px;
            color: #555;
            line-height: 1.6;
            display: none;
        }

        /* Access Section */
        .access-section {
            background: rgba(255, 255, 255, 0.95);
            padding: 80px 20px;
        }

        .access-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .access-info {
            background: #F8F9FA;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .access-title {
            font-size: 2em;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }

        .clinic-info {
            margin-bottom: 20px;
        }

        .clinic-info h3 {
            color: #4169E1;
            margin-bottom: 10px;
            font-size: 1.2em;
        }

        .clinic-info p {
            color: #555;
            line-height: 1.6;
        }

        .map-container {
            background: #E8F4FD;
            border-radius: 20px;
            padding: 20px;
            text-align: center;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .map-placeholder {
            color: #87CEEB;
            font-size: 1.2em;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #2e4b8b 0%, #90bcee 100%);
            padding: 40px 20px;
            text-align: center;
            color: white;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-phone {
            font-size: 2em;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .footer-hours {
            font-size: 1.1em;
            margin-bottom: 30px;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .footer-nav a:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .c-hours {
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .greeting-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

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

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

            .nav-icons {
                gap: 10px;
            }

            .nav-item {
                min-width: 60px;
            }

            .nav-icon {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .nav-text {
                font-size: 10px;
            }

            .clinic-name {
                font-size: 2em;
            }

            .phone-number {
                font-size: 1.2em;
            }

            .footer-nav {
                gap: 15px;
            }

            .footer-nav a {
                padding: 8px 15px;
                font-size: 14px;
            }

            .navigation {
                display: none;
            }

            .clinic-name {
                font-size: 1.5em;
            }

            .greeting-content {
                max-width: 90%;
            }

            .d-photo {
                width: 90%;
                height: 90%;
            }

            .c-info {
                display: none;
            }

            .c-hours {
                display: block;
            }

            .map-container {
                width: 95%;
                margin: 10px;
                text-align: center;
            }

        }