/* ラッパー */
.ns-company-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    /* padding: 20px; */
    padding-top: 160px;
    /* background-color: #fff; */
    /* box-shadow: 0 0 10px rgba(0,0,0,0.05); */
}

/* タイトル */
.ns-page-title {
    font-size: 25px;
    color: #031d1e;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #031d1e7a;
}
.ns-section-title {
    font-size: 1.5em;
    color: #323232;
    margin: 30px 0 15px;
    font-weight: bold;
    border-left: 3px solid #5fcb45;
    padding-left: 10px;
}

/* 1. 代表挨拶 */
.ns-greeting {
    padding: 15px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
}
.ns-greeting img {
    max-width: 350px; /* 画像は仮のサイズ */
    height: auto;
    display: block;
    margin: 0 auto 15px;
    border-radius: 4px;
}
.ns-greeting-info {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
}
.ns-greeting-info .ns-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #006400;
}
.ns-signature {
    text-align: right;
    margin-top: 20px;
    font-size: 0.9em;
}

/* 2. 会社概要データ (Definition Listとしてスタイリング) */
.ns-profile-list {
    margin: 0;
    padding: 0;
}
.ns-profile-item {
    display: flex; /* PC表示では横並び */
    flex-wrap: wrap;
    border-bottom: 1px solid #e1e1e1;
}
.ns-profile-item:last-child {
    /* border-bottom: none; */
}
.ns-profile-item dt {
    background-color: #ecf5ee;
    font-weight: bold;
    color: #395039;
    padding: 15px 10px;
    width: 30%; /* PC表示時の項目名の幅 */
    min-width: 120px;
}
.ns-profile-item dd {
    padding: 15px 10px;
    margin: 0;
    width: 70%; /* PC表示時の内容の幅 */
    flex-grow: 1;
}

/* 3. 経営理念 */
.ns-philosophy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ns-philosophy-list li {
    padding: 10px 15px;
    margin-bottom: 8px;
    border-left: 3px solid #bfbfbf;
    background-color: #f3f3f3;
}

/* 4. 沿革 */
.ns-history-list {
    margin: 0;
    padding: 0 15px;
}
.ns-history-list dt {
    font-weight: bold;
    color: #228B22;
    float: left;
    width: 120px;
    margin-right: 15px;
    clear: both;
}
.ns-history-list dd {
    margin-bottom: 10px;
}

/* 5. 取得済み資格 */
.ns-qualifications {
    padding: 15px;
    border: 1px dashed #9ad39a;
    background-color: #f9fbf9;
    margin-bottom: 140px;
}

.ns-section {
    margin-bottom: 80px;
}

/* モバイル対応 (768px以下で縦積みに) */
@media (max-width: 768px) {
    .ns-company-wrapper {
        padding: 15px;
    }

    /* 代表挨拶レイアウト変更 */
    .ns-greeting-info {
        text-align: left;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        flex-direction: column;
    }
    .ns-greeting img {
        float: left;
        margin: 0 15px 10px 0;
    }

    /* 会社概要データ (縦積みが基本) */
    .ns-profile-item {
        display: block; /* 縦積み */
        margin-bottom: 1px;
    }
    .ns-profile-item dt, .ns-profile-item dd {
        width: 100%;
        min-width: auto;
        padding: 10px;
    }
    .ns-profile-item dt {
        background-color: #f0f0f0; /* 背景を濃くして項目であることを強調 */
        color: #333;
        border-bottom: 1px solid #ddd;
    }
    .ns-profile-item dd {
        padding-bottom: 10px;
    }

    /* 沿革 */
    .ns-history-list dt {
        width: 100%;
        margin-right: 0;
        float: none;
        margin-top: 10px;
    }
    .ns-history-list dd {
        margin-left: 0;
    }

    .ns-qualifications {
        margin-bottom: 0px;
    }

    .ns-section {
        margin-bottom: 0px;
    }

    .ns-company-wrapper {
        padding-top: 60px;
    }
}

