:root {
    --primary: #006699;
    /* Deep Teal - Trustworthy */
    --primary-light: #4db6ac;
    /* Soft Teal - Fresh */
    --secondary: #ec407a;
    /* Soft Pink - Feminine */
    --accent: #ffd54f;
    /* Soft Gold/Yellow */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f5fbfb;
    /* Very light teal/white */
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --border-radius: 20px;
    --font-main: 'Inter', 'Noto Sans JP', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

.accent-bg {
    background-color: var(--bg-light);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #e0f2f1 0%, #fce4ec 100%);
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    background: var(--secondary);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 5px;
}

/* Grid */
.med-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Table */
.price-table-container {
    overflow-x: auto;
    margin-top: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

th,
td {
    padding: 20px;
    text-align: left;
}

th {
    background: var(--primary-light);
    color: var(--white);
    font-size: 0.9rem;
}

td {
    border-bottom: 1px solid #f0f0f0;
}

/* Appointment */
.appointment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.appointment-box {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
}

.btn-wb {
    background: var(--primary-light);
    color: var(--white);
    width: 100%;
}

.btn-wb:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Access */
.access-info-box {
    text-align: left;
}

.access-map img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 50px 0;
    }

    .desktop-only {
        display: none;
    }
}