:root {
    --primary-color: #1A3C6E;
    --secondary-color: #137333ff;
    --text-color: #333;
    --border-color: #e0e3e6;
    --table-bg: #fff;
    --header-bg: #f8f9fa;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    padding-top: 80px;
    background-color: #f8f9fa;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(26, 60, 110, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(19, 115, 51, 0.05) 0%, transparent 20%);
    background-attachment: fixed;
}

.profile-container {
    max-width: 1080px;
    margin: 2rem auto;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.page-title:hover::after {
    width: 200px;
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--table-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    transform: scale(0.95);
    opacity: 0;
    animation: scaleIn 0.8s ease 0.5s forwards;
}

@keyframes scaleIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.profile-table th {
    width: 25%;
    background: var(--header-bg);
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

.profile-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.8;
    transform: translateX(20px);
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.profile-table tr {
    transition: background-color 0.3s ease;
}

.profile-table tr:hover {
    background-color: rgba(26, 60, 110, 0.03);
}

.profile-table tr:last-child th,
.profile-table tr:last-child td {
    border-bottom: none;
}

.address {
    white-space: pre-line;
}

.business-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.business-list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease forwards;
}

.business-list li:nth-child(1) { animation-delay: 0.6s; }
.business-list li:nth-child(2) { animation-delay: 0.7s; }
.business-list li:nth-child(3) { animation-delay: 0.8s; }
.business-list li:nth-child(4) { animation-delay: 0.9s; }
.business-list li:nth-child(5) { animation-delay: 1s; }
.business-list li:nth-child(6) { animation-delay: 1.1s; }
.business-list li:nth-child(7) { animation-delay: 1.2s; }
.business-list li:nth-child(8) { animation-delay: 1.3s; }

.business-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 0.8em;
}

@media (max-width: 768px) {
    .profile-container {
        padding: 1rem;
    }

    .profile-table {
        box-shadow: none;
    }

    .profile-table th,
    .profile-table td {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .profile-table th {
        background: transparent;
        color: var(--primary-color);
        padding-bottom: 0.5rem;
        border-bottom: none;
    }

    .profile-table td {
        padding-top: 0.5rem;
    }
} 