/* Global Styles */
body {
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #4a4a4a; /* Dark gray for text */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 668px;
    margin: 0 auto;
    /* padding: 40px 20px; */
    background-color: #fff;
}

/* Header */
.main-header {
    margin-bottom: 50px;
    position: relative;
    padding-top: 0px;
}



/* Headings */
.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #574393;
    margin-bottom: 25px;
    margin-top: 0;
}

/* Sections */
.section-overview, .section-history {
    margin-bottom: 50px;
}

/* Grids */
.info-grid, .history-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row, .history-row {
    display: flex;
    align-items: flex-start;
}

/* Labels & Values */
.info-label {
    width: 120px; /* Fixed width for labels */
    font-weight: 700;
    flex-shrink: 0;
}

.info-value {
    flex-grow: 1;
}

.text-bold {
    font-weight: 700;
    color: #646464;
}

/* History Specifics */
.history-date {
    width: 120px;
    font-weight: 700;
    flex-shrink: 0;
}

.history-content {
    flex-grow: 1;
}

@media screen and (max-width: 667px) {
    .info-value {
        text-decoration: none;
    }   
}


