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

body {
    font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
    background-image: linear-gradient(to right, #ffffff, #e6f0fa, #ffffff);
}

a {
    text-decoration: none;
    color: #0033cc;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

/* Layout Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* Header and Nav removed */

/* Main Content Area */
.main-wrapper {
    padding: 20px;
}

main {
    width: 100%;
}

/* Section Headings */
h2 {
    font-size: 1.4rem;
    border-left: 8px solid #0033cc;
    border-bottom: 1px solid #ddd;
    padding: 10px 15px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #f9f9f9, #fff);
}

h3 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #0033cc;
    padding-left: 10px;
    background-color: #f0f8ff;
    padding: 8px 10px;
}

/* Profile Section */
.profile-intro {
    background-color: #eee;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.profile-text {
    flex: 1;
    min-width: 300px;
}

.profile-text p {
    margin-bottom: 10px;
}

.profile-image {
    flex: 0 0 300px;
    text-align: center;
}

.profile-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 4px;
}

/* Lists */
.list-check li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.list-check li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0033cc;
    font-weight: bold;
}

.list-arrow li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
}

.list-arrow li::before {
    content: "▶";
    position: absolute;
    left: 0;
    font-size: 0.8em;
    color: #0033cc;
}

/* Tables might be needed for company info if structured that way */
table.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.info-table th {
    background-color: #e6f0fa;
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    width: 30%;
}

table.info-table td {
    border: 1px solid #ccc;
    padding: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-intro {
        flex-direction: column-reverse;
        /* Image on top on mobile usually better, or keep as is */
    }

    .profile-image {
        flex: 1;
        width: 100%;
    }
}