/* ===============================
   Reset and Base Styles
=============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
    font-size: 16px;
}

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

/* ===============================
   Typography
=============================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.5rem;
    color: #1a365d;
}

h2 {
    font-size: 2rem;
    color: #2d3748;
}

h3 {
    font-size: 1.5rem;
    color: #2d3748;
}

h4 {
    font-size: 1.25rem;
    color: #4a5568;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 2rem;
}

/* ===============================
   Header
=============================== */
.header {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.profile-image {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    min-width: 80px;
}

.profile-info .name {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.profile-info .title {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 0.25rem;
}

.profile-info .company {
    font-size: 1rem;
    color: #cbd5e0;
}

/* ===============================
   Navigation
=============================== */
.nav {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-list::-webkit-scrollbar {
    display: none;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #1a365d;
    border-bottom-color: #3182ce;
    background-color: #f7fafc;
}

/* ===============================
   Main Content
=============================== */
.main {
    padding: 3rem 0;
}

.section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    color: #1a365d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.section-title i {
    color: #3182ce;
}

.section-subtitle {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

/* ===============================
   Content Cards
=============================== */
.content-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ===============================
   Highlight Grid (Overview)
=============================== */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 8px;
    border-left: 4px solid #3182ce;
}

.highlight-icon {
    font-size: 2rem;
    color: #3182ce;
    min-width: 40px;
}

.highlight-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.highlight-content p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

/* ===============================
   Mission Statement
=============================== */
.mission-statement {
    background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid #3182ce;
}

.mission-statement h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.mission-statement h4 i {
    color: #3182ce;
}

/* ===============================
   Timeline (Experience)
=============================== */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3182ce, #63b3ed);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #3182ce;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #3182ce;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

/* ===============================
   Achievements Grid
=============================== */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.achievement-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border-radius: 8px;
    border-left: 4px solid #38a169;
}

.achievement-icon {
    font-size: 1.5rem;
    color: #38a169;
    min-width: 30px;
}

.achievement-content h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.achievement-content p {
    font-size: 0.9rem;
    color: #2d3748;
    margin: 0;
}

/* ===============================
   Expertise Categories
=============================== */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.expertise-category {
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
}

.expertise-category h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.expertise-category h4 i {
    color: #e53e3e;
}

.expertise-category p {
    color: #2d3748;
    margin: 0;
}

/* ===============================
   Policy Principles
=============================== */
.policy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.principle-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fefcbf 0%, #f6e05e 100%);
    border-radius: 8px;
    border-left: 4px solid #d69e2e;
}

.principle-icon {
    font-size: 1.5rem;
    color: #d69e2e;
    min-width: 30px;
}

.principle-content h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.principle-content p {
    font-size: 0.9rem;
    color: #2d3748;
    margin: 0;
}

/* ===============================
   Writing Areas Tags
=============================== */
.writing-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.area-tag {
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
    color: #234e52;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #81e6d9;
}

.note {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #4299e1;
    margin: 0;
    font-style: italic;
}

.note i {
    color: #4299e1;
    margin-right: 0.5rem;
}

/* ===============================
   Message Section
=============================== */
.message-card {
    background: linear-gradient(135deg, #f0f4f8 0%, #d6e8f5 100%);
    border: none;
    border-left: 4px solid #4299e1;
}

.message-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: #2d3748;
    position: relative;
}

.message-quote::before {
    content: '"';
    font-size: 4rem;
    color: #4299e1;
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

/* ===============================
   Contact Information
=============================== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 8px;
    border-left: 4px solid #4299e1;
}

.contact-icon {
    font-size: 1.5rem;
    color: #4299e1;
    min-width: 30px;
}

.contact-content h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: #2d3748;
    margin: 0;
}

.social-coming-soon {
    text-align: center;
    padding: 1.5rem;
    background: #fffaf0;
    border-radius: 8px;
    border: 1px solid #fbd38d;
}

.social-coming-soon p {
    color: #744210;
    margin: 0;
    font-weight: 500;
}

.social-coming-soon i {
    color: #d69e2e;
    margin-right: 0.5rem;
}

/* ===============================
   Disclaimer Section
=============================== */
.disclaimer-section {
    margin-bottom: 2rem;
}

.disclaimer-card {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 1px solid #feb2b2;
    border-left: 4px solid #e53e3e;
}

.disclaimer-card p {
    color: #742a2a;
    margin: 0;
    font-weight: 500;
}

/* ===============================
   Footer
=============================== */
.footer {
    background: #1a365d;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    margin: 0.25rem 0;
    color: #cbd5e0;
}

/* ===============================
   Responsive Design
=============================== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 2rem 0;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .profile-image {
        font-size: 4rem;
    }
    
    .profile-info .name {
        font-size: 2rem;
    }
    
    .nav-list {
        padding: 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .main {
        padding: 2rem 0;
    }
    
    .section {
        margin-bottom: 3rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .achievements-grid,
    .expertise-grid,
    .policy-principles,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        padding-left: 1rem;
    }
    
    .timeline-item::before {
        left: -1rem;
    }
    
    .achievement-item,
    .principle-item,
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .writing-areas {
        justify-content: center;
    }
    
    .message-quote {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .message-quote::before {
        font-size: 2rem;
        top: -0.5rem;
        left: -0.5rem;
    }
}

@media (max-width: 480px) {
    .profile-info .name {
        font-size: 1.5rem;
    }
    
    .profile-info .title {
        font-size: 1rem;
    }
    
    .content-card {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .highlight-item,
    .achievement-item,
    .principle-item,
    .contact-item {
        padding: 1rem;
    }
}

table{
    border-top: 1px dashed #ddd;
    
}
figure{
    padding-bottom: 1rem;
}


tr td:first-of-type{
    width: 6rem;
    background: #f4f4f4;
    text-align: center;
}

td{
    padding: 0.2rem;
    font-size: 0.9rem;
}

tr{
    border-bottom: 1px dashed #ddd;
}

/* ===============================
   Animations
=============================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions for all interactive elements */
a, button, .content-card, .nav-link {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.nav-link:focus,
button:focus,
a:focus {
    outline: 2px solid #4299e1;
    outline-offset: 2px;
}

.family img{
    width: 450px;
    max-width: 100%;
    height: auto;
}

/* ===============================
   Print Styles
=============================== */
@media print {
    .nav,
    .footer {
        display: none;
    }
    
    .header {
        background: none !important;
        color: #000 !important;
        padding: 1rem 0;
    }
    
    .content-card {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
    
    .section {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
}