@charset "UTF-8";

/* --- Base --- */
:root {
    --navy: #0f172a;
    --accent: #2563eb;
    --text-primary: #334155;
    --text-secondary: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-light);
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

/* --- Header --- */
.pageHeader {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.pageHeader__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pageHeader__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    opacity: 1 !important;
}

.pageHeader__brand:hover {
    opacity: 0.7 !important;
}

.pageHeader__logo {
    height: 40px;
    width: auto;
}

.pageHeader__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.pageHeader__topBtn {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.pageHeader__topBtn:hover {
    background: var(--accent);
    color: #fff;
    opacity: 1;
}

/* --- Hero --- */
.specificHero {
    width: 100%;
    position: relative;
    background-color: #f1f5f9;
    /* changed to auto height to prevent zooming/cropping */
    height: auto;
    overflow: hidden;
}

.specificHero__img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: contain;
    /* Changed from cover to contain to prevent cropping */
    object-position: center;
}

.specificHero__titleOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    /* Slightly darker for readability */
    display: flex;
    align-items: center;
    justify-content: center;
}

.specificHero__title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* --- Content --- */
.specificContent {
    max-width: 800px;
    margin: 40px auto 80px;
    padding: 0 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding-bottom: 40px;
}

.specificTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.specificTable th,
.specificTable td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: top;
}

.specificTable th {
    width: 30%;
    background-color: #f8fafc;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
}

.specificTable td {
    width: 70%;
    color: var(--text-primary);
    font-size: 14px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .specificHero {
        height: 150px;
    }

    .specificHero__title {
        font-size: 20px;
    }

    .specificContent {
        margin: 20px auto 60px;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }

    .specificTable {
        display: block;
        margin-top: 20px;
    }

    .specificTable tbody,
    .specificTable tr,
    .specificTable th,
    .specificTable td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .specificTable tr {
        margin-bottom: 20px;
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
    }

    .specificTable th {
        border-bottom: 1px solid var(--border-color);
        padding: 12px 16px;
        background: #f1f5f9;
    }

    .specificTable td {
        padding: 16px;
        border-bottom: none;
    }
}