/* ============================================
   会社概要ページ専用スタイル
   ============================================ */

/* 会社概要セクション */
.company {
    background-color: #EDEDEA;
    min-height: 100vh;
}

/* Company List */
.company-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 24px;
}

/* Company Item */
.company-item {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 8px;
    padding: 0 16px 24px;
    border-bottom: 1px solid #CCCCCC;
}

/* Company Label */
.company-label {
    font-family: 'YuMincho', serif;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.04em;
    color: #333333;
    margin: 0;
}

/* Company Text */
.company-text {
    font-family: 'YuGothic', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    margin: 0;
}

/* Company Note */
.company-note {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    align-self: stretch;
    gap: 10px;
    padding: 16px;
}

/* Note Text */
.note-text {
    font-family: 'YuGothic', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    color: #777777;
    margin: 0;
    flex: 1;
}

/* タブレット表示 */
@media (min-width: 768px) {
    .company-item {
        padding: 0 24px 28px;
    }

    .company-label {
        font-size: 18px;
    }

    .company-text {
        font-size: 17px;
    }

    .company-note {
        padding: 20px 24px;
    }

    .note-text {
        font-size: 13px;
    }
}

/* デスクトップ表示 */
@media (min-width: 1024px) {
    .company-item {
        padding: 0 32px 32px;
    }

    .company-label {
        font-size: 20px;
    }

    .company-text {
        font-size: 18px;
    }

    .company-note {
        padding: 24px 32px;
    }

    .note-text {
        font-size: 14px;
    }
}

