@charset "UTF-8";

body {
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

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

/* Header */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    /* Lighter weight for elegance */
    color: #bfa688;
    /* Goldish/brown color from screenshot */
    letter-spacing: 0.1em;
}

.page-header h1::before,
.page-header h1::after {
    display: inline-block;
    content: "";
    width: 30px;
    height: 1px;
    vertical-align: 8px;
    background-color: #BAA77F;
}

.page-header h1::before {
    margin-right: 20px;
}

.page-header h1::after {
    margin-left: 20px;
}

/* Company Info Table (Definition List) */
.company-info {
    border-top: 1px solid #e0e0e0;
    margin: 0;
}

.row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.company-info dt {
    width: 200px;
    font-weight: 500;
    /* Not too bold */
    flex-shrink: 0;
    padding-right: 20px;
    box-sizing: border-box;
}

.company-info dd {
    margin: 0;
    flex-grow: 1;
}

/* Business List */
.business-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-list li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 0;
    /* Align left */
}

/* External Link Icon (Simple CSS representation or emoji if font awesome overkill) */
/* External Link Icon */
a.external-link {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

a.external-link:hover {
    color: #bfa688;
    text-decoration: underline;
}

a.external-link::after {
    content: "\f35d";
    /* fas fa-external-link-alt */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.8em;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    color: #bfa688;
    /* Icon color */
}

/* Responsive */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .company-info dt {
        width: 100%;
        /* Full width on mobile */
        margin-bottom: 8px;
        color: #666;
        /* Slightly lighter label on mobile */
        font-size: 0.9em;
    }

    .company-info dd {
        padding-left: 10px;
    }
}