/* 基本スタイル */
:root {
    --primary-color: #0018cf;
    --secondary-color: #00c89e;
    --cta-bg-color: #00bfff;
    --text-dark: #333;
    --text-light: #fff;
    --background-light: #f0f2f5;
    --background-white: #fff;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    margin: 0;
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
}

.page-wrapper {
    max-width: 500px; /* モバイルでの最大幅 */
    margin: 0 auto;
    background-color: var(--background-white);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.container {
    padding: 0 15px;
}
a {
    text-decoration: none;
    color: inherit;
}
.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.section-title::before {
    content: '';
    display: block;
    width: 8px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 4px;
}
.section-title h2 {
    font-size: 20px;
    margin: 0;
    line-height: 1.2;
}
.section-wrapper {
     background-color: var(--background-white);
     padding: 40px 0;
}
.section-wrapper.bg-light {
    background-color: var(--background-light);
}

/* ====================
    ヘッダー 
    ==================== */
.header {
    background-color: var(--background-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
}
.header-logo img {
    height: 22px;
    vertical-align: middle;
}
.header-nav {
    display: flex;
    align-items: center;
}
.header-nav a.nav-link {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 9px;
    font-weight: bold;
    margin-left: 10px;
    color: var(--primary-color);
    white-space: nowrap;
}
.header-nav a.nav-link i {
    font-size: 16px;
    margin-bottom: 2px;
}
.menu-toggle {
    font-size: 22px;
    color: var(--primary-color);
    padding: 5px 8px;
    border-left: 1px solid #ddd;
    margin-left: 10px;
    cursor: pointer;
}
.pc-only {
    display: none;
}

/* ====================
    モバイル用ナビゲーション
    ==================== */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--background-white);
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease-in-out;
    z-index: 200;
    display: flex;
    flex-direction: column;
}
.mobile-nav-menu.active {
    right: 0;
}
.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: var(--text-light);
    flex-shrink: 0;
}
.mobile-nav-header a {
     display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 9px;
    font-weight: bold;
    margin-left: 15px;
}
.mobile-nav-header a i {
    font-size: 16px;
    margin-bottom: 2px;
}
.mobile-nav-header .close-btn {
    font-size: 24px;
    cursor: pointer;
    padding: 5px 8px;
    border-left: 1px solid rgba(255,255,255,0.3);
    margin-left: 15px;
}
.mobile-nav-body {
    flex-grow: 1;
    overflow-y: auto;
    background-color: #f0f8ff;
    padding: 20px;
}
.menu-section {
    margin-bottom: 25px;
}
.menu-section-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.menu-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
}
.menu-section li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.menu-section li a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: var(--text-dark);
    font-weight: bold;
}
.menu-section li a .icon {
    font-size: 18px;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
    margin-right: 10px;
}
.menu-section li a .arrow-right {
    margin-left: auto;
    color: #ccc;
}
.menu-section .special-link {
    display: flex;
    align-items: center;
    padding: 15px;
}
.menu-section .special-link .text-group {
    line-height: 1.3;
}
.menu-section .special-link .text-group span {
    font-weight: bold;
}
.menu-section .special-link .text-group p {
    font-size: 12px;
    color: #666;
    margin: 0;
}
.menu-footer-logo {
    text-align: center;
    margin-top: 20px;
}
.menu-footer-logo img {
    max-width: 150px;
}

/* ====================
    メインビジュアル（ヒーローセクション）
    ==================== */
.hero {
    position: relative;
    padding: 30px 20px 100px 20px;
    color: var(--text-light);
    overflow: hidden;

    background-image:
        linear-gradient(to right, #0018cf 25%, rgba(0, 24, 207, 0.6) 55%, transparent 75%),
        url('https://www.juku.st/cdn/article_images/10303/xlarge_juku_entry_images_image.webp');
    background-repeat: no-repeat;
    background-position:
        left center,
        right center;
    background-size:
        100% 100%,
        contain;
}
.hero::before, .hero::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 100px;
    background-color: var(--primary-color);
    opacity: 0.3;
    transform: rotate(-15deg);
    z-index: 1;
}
.hero::before {
    top: -30px;
    left: -50px;
}
.hero::after {
    bottom: -50px;
    right: -80px;
    background-color: var(--secondary-color);
    height: 80px;
}
.hero .container {
    position: relative;
    z-index: 2;
    text-align: left;
}
.hero .tagline {
    display: inline-block;
    color: #0056b3;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 15px;
}
.hero .tagline-text {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 5px 15px;
    border-radius: 15px;
}
.hero .tagline-text span {
    color: #ff8c00;
    font-size: 1.2em;
}
.hero h1 {
    font-size: 21px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 15px 0 15px 0;
    line-height: 1.4;
    font-weight: bold;
}
.hero .hero-subcopy {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    line-height: 1.5;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    border-radius: 8px;
}


/* ====================
    検索ボックス
    ==================== */
.search-wrapper {
    position: relative;
    z-index: 10;
}
.search-box {
    background: var(--background-white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 15px;
    margin: -80px 15px 0;
}
.job-count {
    font-size: 1em;
    margin-bottom: 15px;
    text-align: center;
}
.job-count span {
    font-size: 1.6em;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0 3px;
}
.search-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}
.search-button {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 15px 5px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.search-button i {
    font-size: 1.8em;
    margin-bottom: 8px;
}
.detailed-search-button {
    display: block;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.1em;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    grid-column: 1 / -1; /* 2列にまたがるように設定 */
}

/* ====================
    課題解決セクション
    ==================== */
.problem-solving-section {
    padding: 40px 15px;
}
.problem-solving-section h2 {
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    margin: 0 auto 25px;
    line-height: 1.5;
}
.demands-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.demands-list li {
    background-color: transparent;
    padding: 0 0 15px 0;
    margin-bottom: 15px;
    border-radius: 0;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    border-bottom: 1px dashed var(--border-color);
}
.demands-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.demands-list li i {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin-right: 10px;
    margin-top: 3px;
}
.solution-text {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 0 30px 0;
}
.solution-text span {
    display: inline-block;
    background: linear-gradient(transparent 60%, #a2e4d9 60%);
    padding: 0 3px;
}
.proof-grid {
    display: grid;
    gap: 20px;
}
.proof-card {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.proof-card h3 {
    font-size: 1.2em;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    font-weight: bold;
}
.proof-card h4 {
    font-size: 1.1em;
    margin: 0 0 10px 0;
    font-weight: bold;
}
.proof-card p {
    font-size: 14px;
    margin: 0;
    color: #555;
}

/* ====================
    シンプルCTAセクション
    ==================== */
.simple-cta-section {
    padding: 30px 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--cta-bg-color));
    text-align: center;
}
.simple-cta-button {
    display: inline-block;
    width: 100%;
    max-width: 350px;
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease-in-out;
}
.simple-cta-button:hover {
    transform: translateY(-2px);
}

/* ====================
    職種から探すセクション（アイコン形式）
    ==================== */
.job-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.job-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
}
.job-type-card:hover {
    background-color: #e9ecef;
    transform: translateY(-3px);
}
.job-type-card i {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.job-type-card span {
    font-weight: bold;
    font-size: 13px;
}

/* ====================
    利用者紹介セクション
    ==================== */
.user-examples-section {
    padding: 40px 15px;
}
.user-examples-heading {
    position: relative;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 35px;
}
.user-examples-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0 15px;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
}
.example-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--background-white);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.example-card .icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #e9f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.example-card .icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}
.example-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
}

/* ====================
    スカウトセクション
    ==================== */
.scout-section {
    padding: 40px 15px;
}
.scout-heading {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 20px 0;
    line-height: 1.4;
}
.scout-heading span {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 2px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    margin-bottom: 5px;
}
.benefits-intro {
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}
.benefits-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.benefit-card {
    width: 48%;
    background-color: var(--background-white);
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 2px solid var(--secondary-color);
}
.benefit-card i {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.benefit-card h4 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
}
.scout-description {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 25px;
}
.scout-cta-wrapper {
    margin-top: 20px;
    text-align: center;
}

/* ====================
    人気の学習塾セクション
    ==================== */
.popular-schools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.popular-school-card {
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}
.popular-school-card .logo-wrapper {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.popular-school-card .logo-wrapper img {
    max-height: 100%;
    max-width: 100%;
}
.popular-school-card h4 {
    font-size: 1em;
    margin: 0 0 8px;
}
.popular-school-card p {
    font-size: 0.85em;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* ====================
    最終CTAセクション
    ==================== */
.final-cta-section {
    padding: 40px 15px;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color), var(--cta-bg-color));
}
.final-cta-heading {
    font-size: 1.1em;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.5;
    color: var(--text-light);
}
.final-cta-subheading {
    font-size: 0.8em;
    margin: 0 0 30px 0;
    color: var(--text-light);
    opacity: 0.9;
}

/* ====================
    キャリアコラムセクション (修正後)
    ==================== */
.column-card-new {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--background-white);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: var(--text-dark);
}
.column-card-new:last-child {
    margin-bottom: 0;
}
.column-card-new__image {
    flex-shrink: 0;
}
.column-card-new__image img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}
.column-card-new__content {
    flex-grow: 1;
}
.column-card-new__content h4 {
    font-size: 1em;
    font-weight: bold;
    margin: 0 0 5px 0;
}
.column-card-new__content p {
    font-size: 0.8em;
    color: #555;
    margin: 0;
    line-height: 1.5;
    /* 2行で省略表示 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.column-card-new__arrow {
    color: #ccc;
    font-size: 1em;
}


/* ====================
    FAQセクション
    ==================== */
.faq-item details {
    background: var(--background-white);
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}
.faq-item summary {
    font-size: 0.9em;
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.5em;
    color: var(--primary-color);
    transition: transform 0.2s;
}
.faq-item details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}
.faq-item .faq-answer {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: 0;
}
.faq-item .faq-answer p { 
    margin: 0 0 10px 0; 
    font-size: 0.8em;
}
.faq-item .faq-answer p:first-child {
    margin-top: 10px;
}
.faq-item .faq-answer a {
    text-decoration: underline;
}

/* ====================
    CTA (掲載案内) セクション
    ==================== */
.cta-section {
    background-color: #e0f2f1;
    color: var(--text-dark);
    text-align: center;
    padding: 30px 20px;
}
.cta-section p {
    font-weight: bold;
    margin: 0;
    font-size: 14px;
}
.cta-section h3 {
    font-size: 1.5em;
    margin: 10px 0 20px 0;
    line-height: 1.4;
}
.cta-section .cta-button-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.cta-section .cta-button-dark i {
    margin-left: 10px;
}

/* ====================
    フッター
    ==================== */
.footer {
    background-color: var(--background-white);
    padding: 30px 0;
    font-size: 13px;
}
.footer .page-top {
    text-align: right;
    margin-bottom: 20px;
}
.footer .page-top a {
    color: #888;
    font-weight: bold;
    font-size: 12px;
}
.footer-logo-desc img {
    height: 32px;
    margin-bottom: 15px;
}
.footer-logo-desc p {
    font-size: 12px;
    color: #555;
    margin-bottom: 20px;
}
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links li:last-child {
    margin-bottom: 0;
}
.footer-links a {
    color: var(--primary-color);
    font-weight: bold;
}
.copyright-bar {
    text-align: center;
    font-size: 11px;
    color: #777;
    padding: 20px 0 10px;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}

/* ===============================
   PC版レスポンシブスタイル (768px以上)
   =============================== */
@media screen and (min-width: 768px) {
    .page-wrapper {
        max-width: none; /* PCでは最大幅を解除 */
        box-shadow: none;
    }
    .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .section-wrapper {
        padding: 80px 0;
    }
    .section-title h2 {
        font-size: 28px;
    }
    .section-title::before {
        width: 10px;
        height: 32px;
    }

    /* ヘッダー */
    .mobile-only {
        display: none !important;
    }
    .pc-only {
        display: flex;
    }
    .header {
        box-shadow: none;
    }
    .header-inner {
        border-bottom: 1px solid var(--border-color);
        padding: 15px 20px;
    }
    .header-logo img {
        height: 30px;
    }
    .header-top-right {
        align-items: center;
        gap: 20px;
    }
    .header-keep-link {
        font-weight: bold;
        color: var(--primary-color);
        font-size: 14px;
    }
    .header-keep-link i {
        margin-right: 5px;
    }
    .header-login-button {
        background-color: var(--secondary-color);
        color: white;
        padding: 8px 20px;
        border-radius: 5px;
        font-weight: bold;
        font-size: 14px;
    }
    .header-bottom-nav {
        background-color: var(--primary-color);
        justify-content: center;
    }
    .header-bottom-nav a {
        color: white;
        padding: 12px 20px;
        font-weight: bold;
        text-align: center;
        flex: 1;
        max-width: 250px;
        border-right: 1px solid rgba(255,255,255,0.2);
    }
    .header-bottom-nav a:first-child {
        border-left: 1px solid rgba(255,255,255,0.2);
    }
    .header-bottom-nav a.active {
        background-color: #f0f2f5;
        color: var(--text-dark);
        position: relative;
    }
    .header-bottom-nav a.active::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid #f0f2f5;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
    }
    
    /* ヒーロー */
    .hero {
        padding: 80px 0 150px;
        background-size: auto, contain;
        background-position: left center, 85% center;
    }
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .hero h1 {
        font-size: 42px;
    }
    .hero .tagline {
        font-size: 16px;
    }
    .hero .hero-subcopy {
        font-size: 16px;
        padding: 10px 20px;
    }

    /* 検索ボックス */
    .search-box {
        max-width: 800px;
        margin: -100px auto 0;
        padding: 25px;
    }
    .job-count {
        font-size: 1.2em;
    }
    
    /* 課題解決 */
    .problem-solving-section h2 {
        font-size: 2em;
    }
    .proof-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* 職種から探す */
    .job-type-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    /* 利用者紹介 */
    .user-examples-section .container {
        max-width: 800px;
    }
    .user-examples-heading {
        font-size: 1.5em;
    }

    /* スカウト */
    .scout-section .container {
        max-width: 900px;
    }
    .scout-heading {
        font-size: 2.2em;
    }
    .benefits-container {
        justify-content: center;
        gap: 30px;
    }
    .benefit-card {
        width: 300px;
    }
    
    /* 人気の学習塾 */
    .popular-schools-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* キャリアコラム */
    .column-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .column-card-new {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        margin-bottom: 0;
    }
    .column-card-new__image img {
        width: 100%;
        height: 150px;
        border-radius: 8px 8px 0 0;
    }
    .column-card-new__content {
        padding: 15px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .column-card-new__content h4 {
        margin-bottom: auto;
    }
    .column-card-new__content p {
        margin-top: 10px;
    }
    .column-card-new__arrow {
        display: none;
    }

    /* FAQ */
    .faq-section .container {
        max-width: 800px;
    }

    /* フッター */
    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .footer-logo-desc {
        flex-basis: 45%;
    }
    .footer-links {
        flex-basis: 50%;
        grid-template-columns: 1fr 1fr;
        border-top: none;
        padding-top: 0;
    }
}
.c-wrapper,
.c-inner {
    padding: 0 !important;
    max-width: 100% !important; /* 念のため幅も調整 */
}
