/* リセット & 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B9D;
    --secondary-color: #4A90E2;
    --accent-color: #FFD93D;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #4A90E2 0%, #5BA3F5 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    height: 50px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--gradient-2);
    color: white !important;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ヒーローセクション */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 500;
}

/* 写真スライダー */
.photo-slider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    backdrop-filter: blur(5px);
}

.photo-slider-track {
    display: flex;
    gap: 15px;
    animation: slideLeft 30s linear infinite;
}

.photo-slide {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.photo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    margin-left: 15px;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* セクション共通 */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    display: block;
    font-size: 20px;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 10px;
}

/* ミッション */
.mission {
    padding: 80px 0;
    background: var(--gradient-3);
    color: white;
}

.mission-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-text {
    font-size: 20px;
    line-height: 2;
}

/* 歓迎する方 */
.welcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.welcome-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s;
}

.welcome-card:hover {
    transform: translateY(-5px);
}

.welcome-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.welcome-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* メリット */
.merit-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.merit-heading {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.merit-photo {
    margin: 40px auto;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.merit-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.merit-text {
    font-size: 18px;
    line-height: 2;
    margin-top: 40px;
}

.merit-text p {
    margin-bottom: 20px;
}

.merit-highlight {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 30px 0;
}

/* 仕事内容 */
.business-steps {
    margin-top: 60px;
}

.business-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.business-step-reverse {
    direction: rtl;
}

.business-step-reverse > * {
    direction: ltr;
}

.step-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 16px;
    line-height: 1.9;
}

/* CTA Box */
.cta-box {
    background: var(--gradient-4);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    margin-top: 80px;
    color: white;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-box p {
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* 研修制度 */
.training-lead {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.training-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.training-card:hover {
    transform: translateY(-5px);
}

.training-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.training-card h3 {
    font-size: 20px;
    padding: 25px 25px 15px;
    color: var(--primary-color);
}

.training-card p {
    padding: 0 25px 25px;
    font-size: 15px;
    line-height: 1.8;
}

/* スタートアップの魅力 */
.startup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.startup-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.startup-card:hover {
    transform: translateY(-5px);
}

.startup-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.startup-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.startup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.startup-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* メンバー紹介 */
.member-lead {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
}

.member-photos {
    margin: 40px 0;
}

.member-group-photo {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.member-card {
    background: white;
    padding: 0;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s;
    overflow: hidden;
}

.member-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.member-photo {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--bg-light);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0 10px;
    padding: 0 20px;
}

.member-card p {
    padding: 0 20px 25px;
    margin: 0;
}

/* 1日の流れ */
.schedule-lead {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.schedule-list {
    max-width: 1000px;
    margin: 60px auto 0;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.schedule-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--gradient-1);
    border-radius: 20px 0 0 20px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    margin-bottom: 15px;
    background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.schedule-item:last-child {
    margin-bottom: 0;
}



.schedule-item:hover {
    background: linear-gradient(to right, #fff 0%, #f8f9fa 100%);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.schedule-time {
    font-weight: 700;
    color: white;
    background: var(--gradient-2);
    font-size: 15px;
    min-width: 130px;
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.schedule-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 18px;
    min-width: 150px;
    flex-shrink: 0;
    position: relative;
}

.schedule-title::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background: #e0e0e0;
}

.schedule-description {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    flex: 1;
}

/* 時間帯ごとの色分け */
.schedule-item:nth-child(1) .schedule-time,
.schedule-item:nth-child(2) .schedule-time,
.schedule-item:nth-child(3) .schedule-time,
.schedule-item:nth-child(4) .schedule-time {
    background: linear-gradient(135deg, #FFB347 0%, #FFCC70 100%);
}

.schedule-item:nth-child(5) .schedule-time {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A8A0 100%);
}

.schedule-item:nth-child(6) .schedule-time,
.schedule-item:nth-child(7) .schedule-time,
.schedule-item:nth-child(8) .schedule-time {
    background: linear-gradient(135deg, #4A90E2 0%, #5BA3F5 100%);
}

.schedule-item:nth-child(9) .schedule-time,
.schedule-item:nth-child(10) .schedule-time,
.schedule-item:nth-child(11) .schedule-time {
    background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%);
}

/* ホバー時の時間帯別ボーダー色 */
.schedule-item:nth-child(1):hover,
.schedule-item:nth-child(2):hover,
.schedule-item:nth-child(3):hover,
.schedule-item:nth-child(4):hover {
    border-left-color: #FFB347;
}

.schedule-item:nth-child(5):hover {
    border-left-color: #4ECDC4;
}

.schedule-item:nth-child(6):hover,
.schedule-item:nth-child(7):hover,
.schedule-item:nth-child(8):hover {
    border-left-color: #4A90E2;
}

.schedule-item:nth-child(9):hover,
.schedule-item:nth-child(10):hover,
.schedule-item:nth-child(11):hover {
    border-left-color: #9B59B6;
}



/* 会社概要 */
.company-table {
    width: 100%;
    max-width: 900px;
    margin: 60px auto 0;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: 15px;
    overflow: hidden;
}

.company-table th,
.company-table td {
    padding: 25px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.company-table th {
    background: var(--gradient-1);
    color: white;
    font-weight: 700;
    width: 30%;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

/* 求人情報 */
.jobinfo-content {
    max-width: 900px;
    margin: 60px auto 0;
}

.jobinfo-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.jobinfo-section h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.jobinfo-section h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.jobinfo-section ul {
    padding-left: 25px;
    margin: 15px 0;
}

.jobinfo-section li {
    margin-bottom: 8px;
}

.jobinfo-detail {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

.salary {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
}

.salary-model {
    list-style: none;
    padding: 0;
}

.salary-model li {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 15px;
}

/* 職場の雰囲気 */
.atmosphere-lead {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
}

.atmosphere-video {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.atmosphere-video iframe {
    display: block;
}

/* お問い合わせ */
.contact-lead {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-team-photo {
    max-width: 800px;
    margin: 40px auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-team-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-note {
    color: var(--text-light);
    margin-top: 20px;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-outro {
    text-align: center;
    font-size: 20px;
    margin-top: 40px;
    font-weight: 600;
    color: var(--primary-color);
}

/* フッター */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-company h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-company p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-tel {
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
}

.footer-tel a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-copy {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* ページトップボタン */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* モバイルメニューオーバーレイ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav.active {
        transform: translateX(0);
        display: flex;
    }

    .nav a {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 18px;
    }

    .nav-cta {
        margin-top: 10px;
        text-align: center;
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo {
        height: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .photo-slider {
        padding: 10px 0;
    }

    .photo-slide {
        width: 90px;
        height: 60px;
    }

    .section-title {
        font-size: 32px;
    }

    .business-step,
    .business-step-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .step-image {
        height: 300px;
    }

    .schedule-list {
        padding: 30px 20px 30px 25px;
    }

    .schedule-list::before {
        width: 5px;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 18px 15px;
        margin-bottom: 12px;
    }



    .schedule-item:hover {
        transform: translateX(3px);
    }

    .schedule-time {
        font-size: 14px;
        min-width: auto;
        padding: 6px 14px;
    }

    .schedule-title {
        font-size: 17px;
        min-width: auto;
    }

    .schedule-title::after {
        display: none;
    }

    .schedule-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .company-table th,
    .company-table td {
        padding: 15px;
        font-size: 14px;
    }
}