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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul, ol {
    list-style: none;
}

/* ========================================
   共通コンテナ
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.pc-only {
    display: inline;
}

.sp-only {
    display: none;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    border-bottom: 1px solid #eee;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000;
}

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

.nav-list a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #666;
    opacity: 1;
}

.nav-list a.active {
    color: #000;
    font-weight: 700;
}

.nav-cta {
    padding: 10px 24px;
    background-color: #000;
    color: #fff !important;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: #333;
    opacity: 1;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #fff;
    opacity: 0.8;
}

.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background-color: #fff;
    position: relative;
    animation: scroll-animation 2s ease-in-out infinite;
}

@keyframes scroll-animation {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
}

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

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 24px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
}

.section-title-center {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 80px;
}

.section-content {
    max-width: 800px;
}

.lead-text {
    font-size: 16px;
    line-height: 2;
    color: #555;
}

/* ミッションセクション */
.mission {
    background-color: #fafafa;
}

/* ========================================
   サービスカード（トップページ）
======================================== */
.service-overview {
    background-color: #fff;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    display: block;
    background-color: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.service-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 32px 24px;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.service-card-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.service-card-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
}

/* ========================================
   CTAセクション
======================================== */
.cta-section {
    background-color: #000;
    color: #fff;
    text-align: center;
}

.cta-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.cta-text {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 48px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 18px 56px;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    opacity: 1;
}

/* ========================================
   フッター
======================================== */
.footer {
    background-color: #111;
    color: #fff;
    padding: 80px 0 40px;
}

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

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.footer-nav {
    margin-bottom: 48px;
}

.footer-nav ul {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-info {
    margin-bottom: 48px;
    line-height: 1.8;
}

.footer-info p {
    font-size: 13px;
    opacity: 0.6;
}

.footer-copyright {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: 11px;
    opacity: 0.4;
    letter-spacing: 0.05em;
}

/* ========================================
   ページヘッダー（下層ページ）
======================================== */
.page-header {
    padding: 180px 0 80px;
    background-color: #fafafa;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 15px;
    color: #666;
    letter-spacing: 0.05em;
}

/* ========================================
   サービス詳細ページ
======================================== */
.service-detail {
    background-color: #fff;
}

.service-detail.alt {
    background-color: #fafafa;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-detail-image {
    width: 100%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-number {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #ccc;
    margin-bottom: 16px;
}

.service-detail-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.service-detail-subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.service-detail-description p {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 24px;
}

.service-features {
    margin-top: 48px;
    padding: 32px;
    background-color: #fafafa;
    border-radius: 4px;
}

.service-detail.alt .service-features {
    background-color: #fff;
}

.service-features h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    font-size: 14px;
    line-height: 2;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: #999;
}

/* システム開発体制・構築能力 */
.system-capability {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 2px solid #000;
}

.system-capability h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.capability-intro {
    margin-bottom: 48px;
}

.capability-intro p {
    font-size: 16px;
    line-height: 2;
    color: #333;
}

.capability-intro strong {
    color: #000;
    font-weight: 600;
}

.capability-strengths {
    margin-bottom: 60px;
}

.capability-strengths h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000;
}

.strengths-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strengths-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding: 24px;
    background-color: #fafafa;
    border-left: 4px solid #000;
}

.strength-icon {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.strength-content strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.strength-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.development-structure {
    margin-bottom: 60px;
}

.development-structure h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.structure-item {
    background-color: #fff;
    border: 2px solid #000;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.structure-item:hover {
    background-color: #000;
    transform: translateY(-4px);
}

.structure-item:hover .structure-role,
.structure-item:hover .structure-desc {
    color: #fff;
}

.structure-role {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.structure-desc {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
}

.structure-note {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    padding: 20px 24px;
    background-color: #fafafa;
    border-radius: 4px;
}

.structure-note strong {
    color: #000;
    font-weight: 600;
}

.positioning h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000;
}

.positioning-box {
    background-color: #000;
    color: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 4px;
}

.positioning-box p {
    font-size: 16px;
    line-height: 2;
    margin: 0;
}

.positioning-emphasis {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-top: 16px;
    letter-spacing: 0.05em;
}

/* ========================================
   会社概要ページ
======================================== */
.company-info {
    background-color: #fff;
}

.info-table {
    max-width: 800px;
    margin: 0 auto;
}

.info-table dl {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px 40px;
    padding: 32px 0;
    border-bottom: 1px solid #eee;
}

.info-table dl:first-child {
    border-top: 1px solid #eee;
}

.info-table dt {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #333;
}

.info-table dd {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.business-list {
    list-style: none;
}

.business-list li {
    font-size: 15px;
    line-height: 2;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.business-list li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: #999;
}

/* 企業姿勢 */
.company-philosophy {
    background-color: #fafafa;
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.philosophy-card {
    background-color: #fff;
    padding: 48px 32px;
    text-align: center;
}

.philosophy-icon {
    font-size: 28px;
    font-weight: 700;
    color: #ddd;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}

.philosophy-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.philosophy-description {
    font-size: 14px;
    line-height: 2;
    color: #666;
    text-align: left;
}

/* メッセージセクション */
.message-section {
    background-color: #fff;
}

.message-content {
    margin-top: 48px;
    font-size: 15px;
    line-height: 2.2;
    color: #555;
}

/* ========================================
   お問い合わせページ
======================================== */
.contact-content {
    background-color: #fff;
}

.contact-intro {
    font-size: 15px;
    line-height: 2.2;
    color: #555;
    margin-bottom: 80px;
}

.contact-intro strong {
    font-weight: 700;
    color: #000;
}

.contact-examples {
    margin-bottom: 80px;
}

.contact-examples-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    text-align: center;
}

.examples-list {
    display: grid;
    gap: 32px;
}

.examples-list li {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background-color: #fafafa;
    border-radius: 4px;
}

.example-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.example-content h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

.example-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* お問い合わせフォーム */
.contact-form-section {
    background-color: #fafafa;
}

.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-align: center;
}

.contact-form-note {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

.form-container {
    background-color: #fff;
    padding: 60px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.form-container iframe {
    width: 100%;
    min-height: 1076px;
    border: none;
}

.form-placeholder {
    font-size: 14px;
    line-height: 2;
    color: #999;
    text-align: center;
}

.privacy-notice {
    text-align: center;
    font-size: 13px;
    color: #666;
}

.privacy-notice a {
    color: #000;
    text-decoration: underline;
}

/* その他の連絡方法 */
.contact-other {
    background-color: #fff;
}

.contact-info-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.contact-info-item {
    text-align: center;
}

.contact-info-item h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.contact-info-item p {
    font-size: 14px;
    line-height: 2;
    color: #555;
}

.contact-note {
    font-size: 13px;
    line-height: 2;
    color: #999;
    text-align: center;
}

/* ========================================
   プライバシーポリシーページ
======================================== */
.privacy-content {
    background-color: #fff;
}

.privacy-text {
    font-size: 15px;
    line-height: 2;
    color: #555;
}

.privacy-intro {
    margin-bottom: 60px;
    font-size: 15px;
    line-height: 2.2;
}

.privacy-section {
    margin-bottom: 48px;
}

.privacy-section h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    color: #000;
}

.privacy-section p {
    margin-bottom: 16px;
}

.privacy-section ul {
    margin-top: 16px;
    margin-bottom: 16px;
    padding-left: 24px;
}

.privacy-section li {
    font-size: 14px;
    line-height: 2;
    color: #555;
    position: relative;
    padding-left: 16px;
}

.privacy-section li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: #999;
}

.contact-box {
    background-color: #fafafa;
    padding: 32px;
    border-radius: 4px;
    margin-top: 24px;
}

.contact-box p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 0;
}

.contact-box a {
    color: #000;
    text-decoration: underline;
}

.privacy-updated {
    text-align: right;
    font-size: 13px;
    color: #999;
    margin-top: 60px;
}

/* ========================================
   レスポンシブ対応（タブレット）
======================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .container-narrow {
        padding: 0 30px;
    }

    .section {
        padding: 80px 0;
    }

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

    .section-title,
    .section-title-center {
        font-size: 36px;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .philosophy-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========================================
   レスポンシブ対応（スマートフォン）
======================================== */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: inline;
    }

    .container {
        padding: 0 20px;
    }

    .container-narrow {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    /* ヘッダー */
    .header-container {
        padding: 16px 20px;
    }

    .logo a {
        font-size: 18px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #fff;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .nav-list a {
        font-size: 16px;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    /* ヒーロー */
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.5;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .scroll-indicator {
        bottom: 40px;
    }

    /* セクション */
    .section-label {
        font-size: 10px;
        margin-bottom: 16px;
    }

    .section-title,
    .section-title-center {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .lead-text {
        font-size: 15px;
    }

    /* サービスカード */
    .service-cards {
        gap: 40px;
        margin-top: 40px;
    }

    .service-card-content {
        padding: 24px 20px;
    }

    /* CTA */
    .cta-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .cta-text {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .btn-primary {
        padding: 16px 40px;
        font-size: 13px;
        width: 100%;
        max-width: 300px;
    }

    /* システム開発体制・構築能力 レスポンシブ */
    .system-capability {
        margin-top: 60px;
        padding-top: 60px;
    }

    .system-capability h4 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .capability-intro p {
        font-size: 15px;
    }

    .capability-strengths h5,
    .development-structure h5,
    .positioning h5 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .strengths-list li {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .strength-icon {
        font-size: 20px;
    }

    .strength-content strong {
        font-size: 15px;
    }

    .strength-content p {
        font-size: 13px;
    }

    .structure-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .structure-item {
        padding: 20px 16px;
    }

    .structure-role {
        font-size: 14px;
    }

    .structure-desc {
        font-size: 11px;
    }

    .structure-note {
        font-size: 14px;
        padding: 16px 20px;
    }

    .positioning-box {
        padding: 32px 24px;
    }

    .positioning-box p {
        font-size: 15px;
    }

    .positioning-emphasis {
        font-size: 18px;
        margin-top: 12px;
    }

    /* フッター */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-logo {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .footer-nav {
        margin-bottom: 40px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .footer-info {
        margin-bottom: 40px;
    }

    /* ページヘッダー */
    .page-header {
        padding: 140px 0 60px;
    }

    .page-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    /* サービス詳細 */
    .service-detail-content {
        gap: 32px;
    }

    .service-number {
        font-size: 12px;
    }

    .service-detail-title {
        font-size: 24px;
    }

    .service-detail-subtitle {
        font-size: 17px;
        margin-bottom: 32px;
    }

    .service-detail-description p {
        font-size: 14px;
    }

    .service-features {
        padding: 24px 20px;
        margin-top: 32px;
    }

    .service-features h4 {
        font-size: 15px;
    }

    .service-features li {
        font-size: 13px;
    }

    /* 会社概要 */
    .info-table dl {
        grid-template-columns: 1fr;
        gap: 12px 0;
        padding: 24px 0;
    }

    .info-table dt {
        font-size: 13px;
    }

    .info-table dd {
        font-size: 14px;
    }

    .philosophy-cards {
        margin-top: 40px;
    }

    .philosophy-card {
        padding: 32px 24px;
    }

    .philosophy-icon {
        font-size: 24px;
    }

    .philosophy-title {
        font-size: 17px;
    }

    .philosophy-description {
        font-size: 13px;
    }

    .message-content {
        margin-top: 32px;
        font-size: 14px;
    }

    /* お問い合わせ */
    .contact-intro {
        margin-bottom: 60px;
        font-size: 14px;
    }

    .contact-examples {
        margin-bottom: 60px;
    }

    .contact-examples-title {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .examples-list li {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
    }

    .example-icon {
        font-size: 28px;
    }

    .example-content h3 {
        font-size: 16px;
    }

    .example-content p {
        font-size: 13px;
    }

    .contact-form-title {
        font-size: 24px;
    }

    .form-container {
        padding: 40px 20px;
    }

    .form-container iframe {
        min-height: 1200px;
    }

    .form-placeholder {
        font-size: 13px;
        text-align: left;
    }

    .contact-info-box {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    /* プライバシーポリシー */
    .privacy-intro {
        margin-bottom: 48px;
        font-size: 14px;
    }

    .privacy-section {
        margin-bottom: 40px;
    }

    .privacy-section h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .privacy-section p {
        font-size: 14px;
    }

    .privacy-section li {
        font-size: 13px;
    }

    .contact-box {
        padding: 24px 20px;
    }

    .privacy-updated {
        margin-top: 48px;
        font-size: 12px;
    }
}

/* ========================================
   実績セクション（トップページ）
======================================== */
.achievements {
    background-color: #fff;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.achievement-item {
    text-align: center;
}

.achievement-number {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #000;
    margin-bottom: 16px;
}

.achievement-unit {
    font-size: 24px;
    font-weight: 500;
    margin-left: 4px;
}

.achievement-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.achievements-highlight {
    background-color: #fafafa;
    padding: 60px;
    border-radius: 4px;
}

.achievements-highlight-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
    line-height: 1.6;
}

.achievements-highlight-text {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 32px;
}

.achievements-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.achievements-link:hover {
    opacity: 0.6;
}

/* ========================================
   実績詳細セクション（事業内容ページ）
======================================== */
.service-achievements {
    margin-top: 48px;
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.service-detail.alt .service-achievements {
    background-color: #fff;
}

.service-achievements h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.achievement-highlight-box {
    background-color: #fff;
    padding: 32px;
    border-radius: 4px;
    border-left: 4px solid #000;
}

.service-detail.alt .achievement-highlight-box {
    background-color: #fafafa;
}

.achievement-highlight-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    color: #000;
}

.achievement-highlight-detail {
    font-size: 14px;
    line-height: 2;
    color: #555;
    margin-bottom: 24px;
}

.achievement-points {
    list-style: none;
    padding-left: 0;
}

.achievement-points li {
    font-size: 14px;
    line-height: 2;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.achievement-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 700;
}

/* ========================================
   実績紹介ページ
======================================== */
.works-overview {
    background-color: #fafafa;
}

.works-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.works-stat-item {
    text-align: center;
}

.works-stat-number {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #000;
    margin-bottom: 16px;
}

.works-stat-unit {
    font-size: 28px;
    font-weight: 500;
    margin-left: 4px;
}

.works-stat-label {
    font-size: 15px;
    color: #666;
    letter-spacing: 0.05em;
}

/* 実績カテゴリーセクション */
.works-category {
    background-color: #fff;
}

.works-category.alt {
    background-color: #fafafa;
}

.category-header {
    margin-bottom: 80px;
}

/* 個別実績アイテム */
.work-item {
    margin-bottom: 100px;
}

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

.work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.work-content.reverse {
    direction: rtl;
}

.work-content.reverse > * {
    direction: ltr;
}

.work-info {
    padding: 20px 0;
}

.work-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    line-height: 1.5;
}

.work-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.work-category-tag,
.work-location {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.work-description {
    margin-bottom: 32px;
}

.work-description p {
    font-size: 15px;
    line-height: 2;
    color: #555;
}

.work-results {
    margin-bottom: 32px;
    padding: 24px;
    background-color: #fafafa;
    border-radius: 4px;
}

.work-results h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.work-results ul {
    list-style: none;
}

.work-results li {
    font-size: 14px;
    line-height: 2;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.work-results li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 700;
}

.work-reference {
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.work-reference-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.work-reference-link {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    text-decoration: underline;
}

.work-image {
    width: 100%;
}

.work-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

/* 実績サマリー */
.work-summary {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid #eee;
}

.work-summary-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    text-align: center;
}

.work-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.work-summary-card {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.work-summary-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.work-summary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-summary-card:hover .work-summary-image img {
    transform: scale(1.05);
}

.work-summary-content {
    padding: 28px 24px;
}

.work-summary-content h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

.work-summary-content p {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
}

/* 旧スタイル（後方互換性） */
.work-summary-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.work-summary-item {
    text-align: center;
    padding: 32px 24px;
    background-color: #fafafa;
    border-radius: 4px;
}

.work-summary-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

/* 実績リスト */
.work-list {
    display: grid;
    gap: 40px;
}

.work-list-item {
    padding: 40px;
    background-color: #fafafa;
    border-radius: 4px;
}

.works-category.alt .work-list-item {
    background-color: #fff;
}

.work-list-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.work-list-description {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

.work-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    background-color: #e0e0e0;
    color: #555;
    border-radius: 3px;
}

.works-note {
    margin-top: 60px;
    padding: 32px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 14px;
    line-height: 2;
    color: #666;
    text-align: center;
}

/* ========================================
   採用セクション
======================================== */
.recruit-section {
    background-color: #fafafa;
}

.recruit-intro {
    font-size: 16px;
    line-height: 2;
    color: #555;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.recruit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.recruit-card {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.recruit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.recruit-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.recruit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recruit-card:hover .recruit-card-image img {
    transform: scale(1.05);
}

.recruit-card-content {
    padding: 32px 28px;
}

.recruit-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.recruit-card-type {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background-color: #000;
    padding: 4px 12px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.recruit-card-description {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.recruit-card-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recruit-card-points li {
    position: relative;
    font-size: 13px;
    color: #666;
    padding-left: 20px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.recruit-card-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 700;
}

.recruit-card-points li strong {
    color: #000;
    font-weight: 600;
}

.recruit-note {
    margin-top: 60px;
    padding: 32px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    text-align: center;
}

.recruit-note p {
    font-size: 14px;
    line-height: 2;
    color: #666;
    margin: 0;
}

.recruit-note p:first-child {
    margin-bottom: 8px;
}

/* ========================================
   実績セクション レスポンシブ
======================================== */
@media (max-width: 1024px) {
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .achievements-highlight {
        padding: 40px 30px;
    }

    .works-stats {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .work-summary-list {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .work-summary-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .work-summary-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .achievement-number {
        font-size: 42px;
    }

    .achievement-unit {
        font-size: 18px;
    }

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

    .achievements-highlight {
        padding: 32px 20px;
    }

    .achievements-highlight-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .achievements-highlight-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .service-achievements {
        padding: 24px 20px;
        margin-top: 32px;
    }

    .achievement-highlight-box {
        padding: 24px 20px;
    }

    .achievement-highlight-title {
        font-size: 16px;
    }

    .achievement-highlight-detail {
        font-size: 13px;
    }

    .achievement-points li {
        font-size: 13px;
    }

    .works-stat-number {
        font-size: 48px;
    }

    .works-stat-unit {
        font-size: 22px;
    }

    .works-stat-label {
        font-size: 14px;
    }

    .category-header {
        margin-bottom: 60px;
    }

    .work-item {
        margin-bottom: 60px;
    }

    .work-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .work-meta {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }

    .work-category-tag,
    .work-location {
        font-size: 11px;
        padding: 5px 12px;
    }

    .work-description p {
        font-size: 14px;
    }

    .work-results {
        padding: 20px 16px;
        margin-bottom: 24px;
    }

    .work-results h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .work-results li {
        font-size: 13px;
    }

    .work-reference {
        padding-top: 20px;
    }

    .work-summary {
        margin-top: 60px;
        padding-top: 60px;
    }

    .work-summary-title {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .work-summary-item {
        padding: 24px 20px;
    }

    .work-summary-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .work-summary-content h4 {
        font-size: 15px;
    }

    .work-summary-content p {
        font-size: 12px;
    }

    .work-list {
        gap: 32px;
    }

    .work-list-item {
        padding: 28px 20px;
    }

    .work-list-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .work-list-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .tag {
        font-size: 10px;
        padding: 5px 12px;
    }

    .works-note {
        margin-top: 40px;
        padding: 24px 20px;
        font-size: 13px;
    }
}

/* ========================================
   MVVセクション
======================================== */
.mvv-section {
    background-color: #fafafa;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.mvv-item {
    background-color: #fff;
    padding: 48px 40px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #000;
}

.mvv-icon svg {
    width: 48px;
    height: 48px;
}

.mvv-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: #000;
}

.mvv-title-ja {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #999;
    margin-left: 12px;
}

.mvv-subtitle {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.03em;
    color: #333;
    margin-bottom: 20px;
}

.mvv-description {
    font-size: 14px;
    line-height: 2;
    color: #666;
}

.mvv-values-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.mvv-values-list li {
    font-size: 14px;
    line-height: 2;
    color: #666;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.mvv-values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 700;
}

.mvv-values-list strong {
    color: #000;
    font-weight: 700;
}

/* ========================================
   代表者プロフィールページ
======================================== */
.ceo-profile {
    background-color: #fff;
}

.ceo-profile-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
}

.ceo-profile-content-text {
    max-width: 800px;
    margin: 0 auto;
}

.ceo-name {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: center;
}

.ceo-name-en {
    display: block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #999;
    margin-top: 8px;
}

.ceo-position {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
    text-align: center;
}

.ceo-brief {
    padding: 32px;
    background-color: #fafafa;
    border-radius: 4px;
    border-left: 4px solid #000;
}

.ceo-brief p {
    font-size: 15px;
    line-height: 2;
    color: #555;
}

/* 代表メッセージ */
.ceo-message {
    background-color: #fafafa;
}

.ceo-message-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 60px;
}

.ceo-message-content {
    max-width: 800px;
    margin: 0 auto;
}

.ceo-message-lead {
    font-size: 16px;
    line-height: 2.2;
    color: #555;
    margin-bottom: 60px;
    padding: 32px;
    background-color: #fff;
    border-radius: 4px;
}

.ceo-message-content h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 60px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #000;
}

.ceo-message-content p {
    font-size: 15px;
    line-height: 2.2;
    color: #555;
    margin-bottom: 32px;
}

.ceo-signature {
    margin-top: 80px;
    text-align: right;
}

.signature-text {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
}

.signature-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000;
}

/* リンクカード */
.link-section {
    background-color: #fff;
}

.link-card {
    background-color: #fafafa;
    padding: 60px;
    border-radius: 4px;
    text-align: center;
    border: 2px solid #eee;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    border-color: #000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.link-card-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.link-card-description {
    font-size: 15px;
    line-height: 2;
    color: #666;
    margin-bottom: 32px;
}

.link-card-button {
    display: inline-block;
    padding: 14px 40px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.link-card-button:hover {
    background-color: #333;
    opacity: 1;
}

/* ========================================
   追加の実績スタイル
======================================== */
.work-list-item.highlight {
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    border: 2px solid #000;
    position: relative;
}

.work-list-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 3px;
    margin-bottom: 16px;
}

.work-results-inline {
    margin-top: 24px;
    padding: 24px;
    background-color: #fff;
    border-radius: 4px;
    border-left: 4px solid #000;
}

.work-results-inline h4 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.work-results-inline ul {
    list-style: none;
    padding: 0;
}

.work-results-inline li {
    font-size: 14px;
    line-height: 2;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.work-results-inline li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 700;
}

/* ========================================
   MVV・代表プロフィール レスポンシブ
======================================== */
@media (max-width: 1024px) {
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mvv-item {
        padding: 40px 32px;
    }

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

    .ceo-profile-content-text {
        max-width: 100%;
    }

    .ceo-message-title {
        font-size: 30px;
        margin-bottom: 48px;
    }
}

@media (max-width: 768px) {
    .mvv-grid {
        gap: 32px;
        margin-top: 40px;
    }

    .mvv-item {
        padding: 32px 24px;
    }

    .mvv-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    .mvv-icon svg {
        width: 40px;
        height: 40px;
    }

    .mvv-title {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .mvv-title-ja {
        font-size: 11px;
        margin-left: 8px;
    }

    .mvv-subtitle {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .mvv-description {
        font-size: 13px;
    }

    .mvv-values-list li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .ceo-profile-content {
        gap: 32px;
    }

    .ceo-image-placeholder svg {
        max-width: 200px;
    }

    .image-note {
        font-size: 11px;
    }

    .ceo-name {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .ceo-name-en {
        font-size: 14px;
        margin-top: 6px;
    }

    .ceo-position {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .ceo-brief {
        padding: 24px 20px;
    }

    .ceo-brief p {
        font-size: 14px;
    }

    .ceo-message-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .ceo-message-lead {
        font-size: 15px;
        padding: 24px 20px;
        margin-bottom: 48px;
    }

    .ceo-message-content h3 {
        font-size: 19px;
        margin-top: 48px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .ceo-message-content p {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .ceo-signature {
        margin-top: 60px;
    }

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

    .signature-name {
        font-size: 16px;
    }

    .link-card {
        padding: 40px 24px;
    }

    .link-card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .link-card-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .link-card-button {
        padding: 12px 32px;
        font-size: 13px;
        width: 100%;
        max-width: 300px;
    }

    .work-list-badge {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .work-results-inline {
        padding: 20px 16px;
        margin-top: 20px;
    }

    .work-results-inline h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .work-results-inline li {
        font-size: 13px;
    }

    /* 採用セクション レスポンシブ */
    .recruit-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .recruit-card-image {
        height: 200px;
    }

    .recruit-card-content {
        padding: 28px 24px;
    }

    .recruit-card-title {
        font-size: 20px;
    }

    .recruit-card-type {
        font-size: 11px;
        padding: 4px 10px;
    }

    .recruit-card-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .recruit-card-points li {
        font-size: 12px;
    }

    .recruit-note {
        margin-top: 40px;
        padding: 24px 20px;
    }

    .recruit-note p {
        font-size: 13px;
    }
}