:root {
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-primary: #0052cc;
    --color-accent-pink: #FF2B8B;
    --color-accent-green: #00c853;
    --color-bg-grey: #f8f9fa;
    --font-main: 'Chillax', sans-serif;
    --font-en: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.8;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
}

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

ul {
    list-style: none;
}

.u-sp-only {
    display: none !important;
}

.u-w100 {
    width: 100% !important;
}

.u-md-br {
    display: none;
}

/* Header */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.l-header__inner {
    width: 100%;
    margin: 0;
    padding: 0 4.86vw;
    /* 1440px時に約70pxになる相対サイズ (70/1440*100) */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l-header__logo p {
    margin: 0;
    line-height: 1;
}

.l-header__logo-link {
    display: block;
    text-decoration: none;
}

.l-header__logo-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.l-header__logo-img {
    height: 48px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .l-header__logo-img {
        height: 40px;
        width: auto;
        display: block;
    }
}

.l-header__logo-subtitle {
    font-size: 10px;
    color: #888;
    margin-top: 2px !important;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.l-header__nav {
    margin-left: auto;
    margin-right: 40px;
}

.l-header__menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.l-header__menu-item {
    position: relative;
    padding-left: 16px;
}

.l-header__menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc !important;
    /* 通常時はいかなる場合もグレーに固定 */
    transition: background 0.3s;
}

/* ホバー（オンマウス）時のみピンクにする */
.l-header__menu-item:hover::before {
    background: var(--color-accent-pink) !important;
}

.l-header__menu-item a {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.l-header__menu-item a .en {
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.l-header__menu-item a .ja {
    font-size: 10px;
    font-weight: 500;
    color: #888;
    margin-top: 2px;
}

.l-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.c-btn-header-contact {
    background: #1a1a17;
    color: #fff;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.c-btn-header-contact:hover {
    background: #000;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .c-btn-header-contact {
        display: none;
    }
}

.l-header__hamburger {
    display: none;
    /* デフォルト（PC）では非表示 */
    flex-direction: column;
    gap: 5px;
    background: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.l-header__hamburger:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.l-header__hamburger span {
    width: 20px;
    height: 2px;
    background: #333;
    transition: 0.3s;
}

.l-header__hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.l-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.l-header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Main Visual */
.p-mv {
    position: relative;
    padding: 15rem 0 10rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #fff;
    z-index: 1;
    overflow: hidden;
    /* 背景のはみ出しを止める */
}

.p-mv__inner {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 4.86vw;
}

/* Sticky Layout */
.l-sticky-layout {
    background-color: #fff;
    padding-bottom: 3.5rem;
}

.l-sticky-layout__inner {
    width: 100%;
    margin: 0;
    padding: 0 4.86vw;
    display: flex;
    gap: 5rem;
}

/* Sidebar (Left Column) */
.l-sticky-sidebar {
    width: 20rem;
    flex-shrink: 0;
    position: sticky;
    top: 9.375rem;
    height: fit-content;
    padding: 0;
    align-self: flex-start;
}

/* Features page unique width */
.p-page-features .l-sticky-sidebar {
    width: 12rem;
}

.l-sticky-main {
    flex-grow: 1;
}

/* PC表示時にモバイル用パーツを非表示にする */
.l-header__drawer,
.l-header__overlay {
    display: none;
}

.p-mv__bg-lp {
    position: absolute;
    top: calc(50% + 50px);
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background: url('images/lp_bg.png') no-repeat center right;
    background-size: contain;
    filter: brightness(0);
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.p-mv__title {
    font-size: 140px;
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    color: #000;
    line-height: 0.9;
}

.p-mv__title.is-privacy {
    font-size: 94px;
}

.p-mv__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.p-mv__list-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333;
    /* margin-bottom: 0.5rem; */
}

.p-mv__item {
    font-family: var(--font-en), var(--font-main);
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    color: #333;
    transition: color 0.3s, font-weight 0.3s;
}

.p-mv__item::before {
    content: '';
    display: inline-block;
    width: 1.125rem;
    height: 1.125rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230052cc' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    margin-right: 0.75rem;
    opacity: 0;
    /* デフォルト非表示 */
    transition: opacity 0.3s, transform 0.3s;
    transform: scale(0.5);
}

.p-mv__item.is-active {
    color: var(--color-primary);
    font-weight: 500;
}

.p-mv__item.is-active::before {
    opacity: 1;
    /* アクティブ時のみ表示 */
    transform: scale(1);
}

/* Service Detail */
.p-service-detail {
    padding-bottom: 7.5rem;
}

.p-service-detail__grid {
    display: grid;
    grid-template-columns: 0.7fr 1.2fr;
    gap: 3.75rem;
    align-items: flex-start;
}

#profile .p-service-detail__grid {
    grid-template-columns: 320px 1fr;
    gap: 4rem;
}

@media (max-width: 75rem) {
    .l-sticky-layout__inner {
        gap: 2.5rem;
    }

    .l-sticky-sidebar {
        width: 16rem;
    }

    .p-mv__list-label {
        font-size: 1rem;
    }

    .p-mv__item {
        font-size: 0.9rem;
    }

    .p-mv__item::before {
        width: 0.875rem;
        height: 0.875rem;
        margin-right: 0.5rem;
    }

    #profile .p-service-detail__grid {
        grid-template-columns: 240px 1fr;
        gap: 3rem;
    }
}

.p-service-detail__image {
    width: 100%;
}

.p-service-detail__img {
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.1);
}

.p-service-detail__right-col {
    grid-column: 2;
    display: flex;
    flex-direction: column;
}

.p-service-detail__body {
    display: flex;
    flex-direction: column;
}

.p-service-detail__num {
    display: block;
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: #333;
}

.p-service-detail__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.p-service-detail__subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Representative Profile Specific Styles */
#profile .p-service-detail__subtitle {
    margin-bottom: 0.5rem;
}

#profile .p-service-detail__desc {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--color-accent-pink);
}

#profile h4 {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    margin-top: 3rem;
}

#profile .p-service-detail__solution-text p {
    font-size: 1rem !important;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

#profile .p-service-detail__solution-text p:last-child {
    margin-bottom: 0;
}

#profile hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #ddd;
}

/* Privacy Policy Specific Styles */
#privacy-policy h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    border-left: 4px solid var(--color-accent-pink);
    padding-left: 0.75rem;
    color: #1a1a1a;
}

#privacy-policy p {
    margin-bottom: 1.5rem;
}

#privacy-policy a {
    color: var(--color-primary);
    text-decoration: underline;
}

#privacy-policy hr {
    margin: 3rem 0;
    border: none;
    border-top: 1px dashed #ccc;
}

/* Lists Download Page Styles */
.category-filters {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.category-filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid #333;
    border-radius: 2rem;
    background: white;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.category-filter-btn:hover {
    background: #f5f5f5;
}

.category-filter-btn.active {
    background: #333;
    color: white;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.article-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

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

.article-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 2rem;
    text-align: center;
}

.article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: #333;
    font-weight: 700;
}

.article-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    flex: 1;
}

.download-button {
    width: 100%;
    background-color: #0ea5e9;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
    display: block;
}

.download-button:hover {
    background-color: #0284c7;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.pagination-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-btn:hover {
    background: #f5f5f5;
}

.pagination-btn.active {
    background: #333;
    color: white;
    border-color: #333;
}

.page-header {
    text-align: center;
    padding: 3rem 0 1rem;
}

.page-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-description {
    max-width: 800px;
    margin: 1rem auto 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2rem;
    }
}


.p-service-detail__pain-points p,
.p-service-detail__pain-points li {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    list-style: none;
    /* デフォルトのポチを消す */
}

.p-service-detail__pain-points p::before,
.p-service-detail__pain-points li::before {
    content: '・';
    position: absolute;
    left: 0;
}

.p-service-detail__text-area {
    margin-top: 2rem;
}

.p-service-detail__text-area p+p {
    margin-top: 1.5rem;
}

.p-service-detail__solution {
    background: var(--color-bg-grey);
    padding: 2rem 2.5rem;
    border-radius: 0.75rem;
    margin-top: 0.9375rem;
    /* 15px */
}

.p-service-detail__solution-label {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.p-service-detail__solution-icon {
    width: 32px;
    height: 32px;
    background: #1a1a17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.p-service-detail__solution-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.p-service-detail__solution-text {
    line-height: 2;
    color: #333;
}

/* Placeholder Image */
.c-placeholder-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* CTA */
.p-cta {
    padding: 120px 0;
    text-align: center;
    background: #fff;
    border-top: 1px solid #eee;
}

.p-cta__message {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.p-cta__btns {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.p-cta__btns .c-btn {
    min-width: 300px;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}

.c-btn {
    display: inline-block;
    padding: 20px 64px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.c-btn--request {
    background: var(--color-accent-green);
}

.c-btn--contact {
    background: var(--color-accent-pink);
}

@media (max-width: 93.75rem) {

    /* 1500px */
    .l-sticky-layout__inner {
        /* サイドバーを維持するため column にしない */
        gap: 3rem;
    }

    .l-sticky-sidebar {
        width: 18rem;
        /* 少し狭めてコンテンツ領域を確保 */
    }

    .p-page-features .l-sticky-sidebar {
        width: 12rem;
    }

    .p-service-detail__right-col {
        display: contents;
        /* ラッパーのグリッド影響を排除し、中身を直接制御 */
    }

    .p-service-detail__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .p-service-detail__image {
        grid-column: 1;
        grid-row: 1;
        /* 1500px未満では上段左にのみ配置 */
    }

    .p-service-detail__body {
        grid-column: 2;
        grid-row: 1;
    }

    .p-service-detail__solution {
        grid-column: 1 / -1;
        /* 下段にカラム落ちして全幅に広がる */
        grid-row: 2;
        margin-top: 1rem;
    }

    .p-service-detail__image {
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 75rem) {

    /* 1200px - Header Navigation Breakpoint */
    .l-sticky-sidebar {
        width: 16rem;
    }

    .l-sticky-layout__inner {
        gap: 2.5rem;
    }

    .l-header__nav {
        display: none;
    }

    .l-header__hamburger {
        display: flex;
    }

    /* オーバーレイ（背景黒半透明） */
    .l-header__overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }

    .l-header__overlay.is-active {
        opacity: 1;
        pointer-events: auto;
    }

    /* ドロワーメニュー */
    .l-header__drawer {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 20rem;
        /* 320px */
        height: 100vh;
        background: #fff;
        z-index: 1000;
        padding: 3.5rem 2.5rem;
        transition: right 0.4s;
        box-shadow: -0.625rem 0 1.875rem rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
    }

    .l-header__drawer.is-active {
        right: 0;
    }

    .l-header__drawer-logo {
        margin-bottom: 1.0rem;
    }

    .l-header__drawer-logo-img {
        width: 10rem;
        height: auto;
    }

    .l-header__drawer-menu {
        display: flex;
        flex-direction: column;
        gap: 1.6rem;
        margin-left: 0.5rem;
    }

    .l-header__drawer-item .en {
        font-family: var(--font-en);
        font-size: 1.2rem;
        font-weight: 700;
        color: #000;
    }

    .l-header__drawer-item .ja {
        font-size: 0.75rem;
        color: #888;
        margin-left: 15px;
    }
}

@media (max-width: 1024px) {
    /* 1024px - Layout Breakpoint */

    .p-mv {
        position: relative;
        padding: 3rem 0 0rem;
        min-height: 49vh;
        display: flex;
        align-items: center;
        background-color: #fff;
        z-index: 1;
    }

    .p-mv__bg-lp {
        right: -100px;
        background-size: 75%;
    }

    /* 追従サイドバーを非表示にし、1カラム化 */
    .l-sticky-layout__inner {
        flex-direction: column;
        padding: 0 5vw;
        gap: 0;
    }

    .l-sticky-sidebar {
        display: none;
        /* ←ご指示通り非表示に */
    }

    .p-service-detail {
        padding-bottom: 5rem;
    }

    .p-service-detail__num {
        margin-bottom: 0.5rem;
    }

    .c-company-table {
        margin-top: 0rem !important;
    }

    .p-service-detail__text-area {
        margin-top: 1rem !important;
    }

    .p-service-detail__text-area p+p {
        margin-top: 1rem;
    }

    .p-service-detail__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #profile .p-service-detail__grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    #profile .p-service-detail__image {
        max-width: 320px;
        margin-bottom: 0rem;
        margin-top: 3rem;
    }

    #profile h4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem;
    }

    #profile .p-service-detail__right-col {
        width: 100%;
    }

    .p-service-detail__image,
    .p-service-detail__body,
    .p-service-detail__solution {
        grid-column: 1 / -1;
        grid-row: auto;
        /* グリッドマッピングをリセットして縦並びに */
    }

    .p-service-detail__right-col {
        display: contents;
        /* 1024px以下でもグリッドリセットを有効に */
    }

    .p-news-page {
        padding-bottom: 80px;
    }

    /* CTA (<= 1024px) */
    .p-cta {
        padding: 100px 0;
    }

    .p-cta__message {
        font-size: 22px;
    }

    /* Sitemap (<= 1024px) */
    .p-sitemap {
        padding: 80px 0 100px;
    }

    .p-sitemap__grid {
        gap: 40px 60px;
    }
}

/* Footer Refinement */
.l-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 140px 0 40px;
    /* 40pxから100px追加して140pxに調整 */
    font-family: var(--font-en);
}

.l-footer__inner {
    width: 100%;
    margin: 0;
    padding: 0 4.86vw;
}

.l-footer__about {
    padding-bottom: 80px;
}

.l-footer__about-title-wrap {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 30px;
}

.l-footer__about-title {
    font-size: 4.75rem;
    /* 5remから約2ポイント強分小さく調整 */
    font-family: var(--font-en);
    font-weight: 600;
    /* 700から1段階落としてセミボールドに */
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
}

.l-footer__about-sub {
    font-size: 1.5rem;
    font-weight: 700;
}

.l-footer__about-lead {
    font-size: 1.125rem;
    color: #ccc;
    margin-bottom: 40px;
    font-family: var(--font-ja);
}

.c-btn-footer-about {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    border: 1px solid #fff;
    border-radius: 100px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.c-btn-footer-about:hover {
    background: #fff;
    color: #1a1a1a;
}

.c-btn-footer-about svg {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: 12px;
}

.l-footer__about-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 80px;
}

.l-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 65px;
}

.l-footer__nav {
    display: flex;
    gap: 40px;
}

.l-footer__nav-col {
    display: flex;
    flex-direction: column;
}

.l-footer__nav-link {
    display: flex;
    flex-direction: column;
    color: #fff;
    position: relative;
    padding-left: 20px;
    transition: opacity 0.3s;
}

.l-footer__nav-link:hover {
    opacity: 0.7;
}

.l-footer__nav-link:hover .c-footer-dot {
    color: var(--color-accent-pink) !important;
}

.l-footer__nav-link .en {
    font-family: var(--font-en);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.l-footer__nav-link .ja {
    font-size: 0.75rem;
    font-weight: 500;
    color: #888;
    margin-top: 4px;
    white-space: nowrap;
}

.l-footer__nav-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.l-footer__nav-aux {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-left: 18px;
}

.l-footer__nav-aux li a {
    font-size: 0.8125rem;
    color: #888;
    font-family: var(--font-en);
}

.l-footer__nav-aux li a:hover {
    color: #fff;
}

.c-external-icon {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    margin-left: 4px;
    vertical-align: middle;
    color: var(--color-accent-pink);
    stroke: var(--color-accent-pink);
}

.l-footer__business {
    text-align: right;
}

.l-footer__business-label {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.l-footer__business-group {
    margin-bottom: 24px;
}

.l-footer__business-group:last-child {
    margin-bottom: 0;
}

.l-footer__business-sub-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-align: left;
    display: block;
    opacity: 0.9;
    padding-left: 2px;
}

.l-footer__business-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px 32px;
    font-size: 0.875rem;
    color: #888;
    max-width: 500px;
    margin-left: auto;
}

.l-footer__business-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.l-footer__business-list a:hover {
    color: #fff;
}

.l-footer__business-list li {
    white-space: nowrap;
}

.l-footer__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

.l-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.l-footer__logo-img {
    height: 36px;
    width: auto;
}

.l-footer__copyright {
    font-size: 0.75rem;
    color: #888;
}

.l-footer__policy-links {
    display: flex;
    gap: 24px;
}

.l-footer__policy-links a {
    font-size: 0.75rem;
    color: #888;
}

.l-footer__policy-links a:hover {
    color: #fff;
}

@media (max-width: 90rem) {
    .l-footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .l-footer__business {
        text-align: left;
        width: 100%;
    }

    .l-footer__business-label {
        justify-content: flex-start;
    }

    .l-footer__business-list {
        flex-wrap: wrap;
        gap: 15px 24px;
        margin-left: 0;
    }
}

@media (max-width: 64rem) {
    .l-footer {
        background: #1a1a1a;
        color: #fff;
        padding: 60px 0 40px;
        font-family: var(--font-en);
    }

    .l-footer__about {
        padding-bottom: 55px;
    }

    .l-footer__inner {
        padding: 0 30px;
    }

    .l-footer__about-divider {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 45px;
    }

    .l-footer__about-title {
        font-size: 3.5rem;
    }

    .l-footer__about-sub {
        font-size: 1.25rem;
    }

    .l-footer__about-lead {
        font-size: 1rem;
    }

    .p-contact-cta {
        padding: 70px 0;
        background-color: #f8f9fa;
        text-align: center;
    }

    .p-contact-cta__title {
        font-size: 3.125rem;
        font-family: var(--font-en);
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
        letter-spacing: -0.01em;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        line-height: 1;
    }

    .l-footer__nav {
        flex-wrap: wrap;
        gap: 30px 40px;
    }

    .l-footer__nav-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .l-footer__nav-aux {
        margin-left: 20px;
        gap: 20px;
    }

    @media (max-width: 480px) {
        .l-footer__nav {
            flex-direction: column !important;
            gap: 15px !important;
            align-items: flex-start !important;
        }

        .l-footer__nav-col {
            width: 100% !important;
        }

        .l-footer__nav-link .en {
            font-size: 1rem;
        }

        .l-footer__nav-link {
            padding-left: 15px;
        }

        .l-footer__nav-aux {
            margin-left: 0;
            gap: 12px 18px;
        }

        .l-footer__nav-aux li a {
            font-size: 0.75rem;
        }

        .l-footer__business-label {
            font-size: 0.8125rem;
            margin-bottom: 12px;
        }

        .l-footer__business-sub-label {
            font-size: 0.75rem;
            margin-bottom: 8px;
        }

        .l-footer__business-list {
            gap: 10px 16px;
            font-size: 0.8125rem;
        }
    }

    .l-footer__business-label {
        font-size: 0.875rem;
        font-weight: 700;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
    }

    .l-footer__bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .l-footer__policy-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .l-footer {
        padding: 55px 0 40px;
    }

    .l-footer__about-title {
        font-size: 3.0rem;
    }

    .l-footer__about-sub {
        font-size: 1.1rem;
    }

    .l-footer__about-title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    #profile h4 {
        margin-bottom: 1rem;
        margin-top: 1rem !important;
    }

    .p-company-business-desc {
        line-height: 1.5rem !important;
    }
}

/* Footer Dot Styling */
.c-footer-dot {
    position: absolute;
    left: 0;
    top: 1px;
    color: #fff;
}

.l-footer__nav-col:first-child .c-footer-dot {
    color: #fff;
}

/* TOP Main Visual */
.p-top-mv {
    position: relative;
    padding: 160px 0 100px;
    background-color: transparent;
    z-index: 10;
    overflow: hidden;
    /* blobのはみ出しをここで止める */
}

.p-top-mv__inner {
    width: 100%;
    margin: 0;
    padding: 0 4.86vw;
    position: relative;
    z-index: 20;
}

.p-top-mv__card {
    background: #f4f9ff;
    border-radius: 40px;
    display: flex;
    align-items: stretch;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 50, 150, 0.04);
    min-height: 520px;
    overflow: hidden;
    position: relative;
    z-index: 20;
}

.p-top-mv__visual {
    flex: 1.1;
    min-width: 0;
    align-self: stretch;
    overflow: hidden;
    /* カードの左端と完全に合わせるため左側は 40px、内部の右側も 40px で統一して見切れを防ぐ */
    border-radius: 40px;
    margin: 0;
}

.p-top-mv__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.p-top-mv__content {
    flex: 1;
    min-width: 0;
    padding: 3.5rem 1.5rem 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.p-top-mv__lead {
    font-size: 1.1875rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: auto;
    /* 上部に空白を作り、中央寄りに配置 */
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
}

.p-top-mv__copy {
    font-size: 2.5625rem;
    font-weight: 800;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: auto;
    /* キャッチコピーの後に可変の空白を作り、下部要素を押し下げる */
    letter-spacing: -0.01em;
    white-space: nowrap;
    padding-bottom: 2rem;
    /* 押し下げる際の最低限の余白 */
}

.p-top-mv__desc {
    font-size: 1.0625rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    max-width: none;
}

.c-btn-top-about {
    display: inline-flex;
    align-items: center;
    background: #23221f;
    color: #fff;
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-en);
    text-decoration: none;
    transition: 0.3s;
}

.c-btn-top-about:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.c-btn-top-about .arrow {
    margin-left: 12px;
    transition: 0.3s;
}

.c-btn-top-about:hover .arrow {
    transform: translateX(5px);
}

/* Background Decorations (Blobs) */
.p-top-mv__blob {
    position: absolute;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    border-radius: 50%;
}

.p-top-mv__blob--1 {
    width: 600px;
    height: 600px;
    background: #e0f0ff;
    top: -100px;
    left: -200px;
}

.p-top-mv__blob--2 {
    width: 400px;
    height: 400px;
    background: #fff0f7;
    bottom: -100px;
    right: -100px;
}

@media (max-width: 100rem) {
    .p-top-mv__content {
        padding: 3vw 1.5rem 3vw 3vw;
    }

    .p-top-mv__copy {
        font-size: clamp(1.8rem, 2.6vw, 2.75rem);
        white-space: normal;
        word-break: keep-all;
        /* 単語の途中で改行させない */
        overflow-wrap: anywhere;
    }

    .p-top-mv__lead {
        font-size: clamp(1rem, 1.2vw, 1.1875rem);
    }

    .p-top-mv__desc {
        font-size: clamp(0.9rem, 1.1vw, 1.0625rem);
    }
}

@media (max-width: 64rem) {
    .p-top-mv {
        padding: 100px 0 60px;
    }

    .p-top-mv__inner {
        padding: 0 24px;
    }

    .p-top-mv__card {
        flex-direction: column;
        padding: 0rem;
        border-radius: 30px;
    }

    .p-top-mv__visual {
        padding-right: 0;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .p-top-mv__content {
        flex: 1;
        padding: 1.5rem 1.5rem 1.5rem 2rem;
        display: flex;
        flex-direction: column;
        align-self: stretch;
    }

    .p-top-mv__copy {
        font-size: 2.25rem;
    }

    .p-top-mv__desc {
        font-size: 18px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .p-top-mv {
        padding: 87px 0 43px;
    }
}

/* TOP Mission Section */
.p-top-mission {
    position: relative;
    padding: 80px 0 150px;
    background-color: transparent;
    overflow: visible;
}

.p-top-mission__inner {
    width: 100%;
    padding: 0 4.86vw;
    position: relative;
}

.p-top-mission__bg-lp {
    position: absolute;
    top: -260px;
    left: calc(-5vw + 70px);
    width: clamp(600px, 60vw, 1100px);
    opacity: 0.5;
    z-index: 15;
    pointer-events: none;
}

.p-top-mission__bg-img {
    width: 100%;
    height: auto;
}

.p-top-mission__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.p-top-mission__main {
    flex: 1;
    padding-top: 120px;
}

.p-top-mission__title {
    font-size: 2.25rem;
    font-weight: 750;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 3.5rem;
    padding-left: 12vw;
}

.p-top-mission__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 12vw;
}

.p-top-mission__list li {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    padding-left: 2rem;
    position: relative;
}

.p-top-mission__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 1.2rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.p-top-mission__side {
    flex: 0 0 640px;
    margin-top: -25px;
    margin-left: 2rem;
}

.p-top-mission__callout {
    background: #dcdcdc;
    border-radius: 12px;
    padding: 22px 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    transition: 0.3s;
}

.p-top-mission__callout-icon {
    flex: 0 0 54px;
    height: 54px;
    background: #1a1a17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-top-mission__callout-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.p-top-mission__callout-text {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
    flex: 1;
}

.p-top-mission__callout-arrow {
    flex: 0 0 20px;
}

.p-top-mission__callout-arrow svg {
    width: 20px;
    height: 20px;
    color: #1a1a1a;
}

@media (max-width: 105rem) {
    .p-top-mission__title {
        padding-left: 4vw;
    }

    .p-top-mission__list {
        padding-left: 4vw;
    }

    .p-top-mission__side {
        flex: 0 0 600px;
        margin-left: 2rem;
    }

    .p-top-mission__callout {
        max-width: none;
    }
}

@media (max-width: 80rem) {
    .p-top-mission {
        padding: 30px 0 40px;
    }

    .p-top-mission__container {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-top-mission__main {
        width: 100%;
        margin-bottom: 4rem;
        padding-top: 40px;
    }

    .p-top-mission__side {
        width: 100%;
        flex: 1;
        margin-left: 0;
        margin-top: 0;
    }

    .p-top-mission__callout {
        max-width: none;
    }
}

@media (max-width: 64rem) {
    .p-top-mission {
        padding: 0 0 0;
        margin-bottom: 7rem;
    }

    .p-top-mission__inner {
        padding: 0 30px;
    }

    .p-top-mission__container {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-top-mission__title {
        font-size: 1.6rem;
        margin-bottom: 2.0rem;
        padding-left: 9vw;
    }

    .p-top-mission__list {
        gap: 1.0rem;
        padding-left: 9vw;
        margin-right: 1rem;
    }

    .p-top-mission__list li {
        font-weight: 500;
        line-height: 1.7rem;
    }

    .p-top-mission__side {
        flex: 1;
        width: 100%;
        margin-left: 0rem;
    }

    .p-top-mission__callout {
        opacity: 1;
        background-color: #dcdcdc;
    }

    .p-top-mission__callout-text {
        font-size: 16px !important;
    }

    .p-top-mission__main {
        width: 100%;
        margin-bottom: 3rem;
        padding-top: 60px;
    }

    .p-top-mission__bg-lp {
        width: 100vw;
        left: -10vw;
        top: -40px;
        z-index: 0;
    }
}

@media (max-width: 768px) {
    .p-top-mission {
        margin-bottom: 0;
    }

    .p-top-mission__side {
        margin-left: 0rem;
    }

    .p-top-mission__list {
        padding-left: 3vw;
    }
}

/* TOP Unique Value Section */
.p-top-unique {
    position: relative;
    padding: 80px 0 30px;
    background-color: #fff;
    overflow: hidden;
}

.p-top-unique__inner {
    max-width: 1324px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.p-top-unique__header {
    margin-bottom: 40px;
}

.p-top-unique__title {
    font-size: 3.125rem;
    font-family: var(--font-en);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    gap: 12px;
    line-height: 1;
}

.p-top-unique__title::before {
    content: "我々の強み";
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent-pink);
    letter-spacing: 0.1em;
}

.p-top-unique__lead {
    font-size: 1.4375rem;
    font-weight: 500;
    line-height: 1.8;
    color: #1a1a1a;
    max-width: 895px;
}

.p-top-unique__content {
    position: relative;
    padding-top: 20px;
}

.p-top-unique__bg-shape {
    display: block;
    position: absolute;
    top: 180px;
    left: 0;
    right: 0;
    bottom: 0px;
    background-color: #e2eaf2;
    border-radius: 24px;
    z-index: 1;
}

@media (max-width: 90rem) {
    .p-top-unique__inner {
        margin: 0 40px;
    }
}

.p-top-unique__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
    padding: 0 40px 60px;
}

.p-top-unique__card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 35px rgba(0, 50, 150, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.p-top-unique__card-visual {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    /* 上の角丸をカードに合わせる */
    border-radius: 20px 20px 0 0;
    margin-bottom: 0;
}

.p-top-unique__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-top-unique__card:hover .p-top-unique__card-img {
    transform: scale(1.05);
}

.p-top-unique__card-body {
    padding: 2rem 1.5rem 2.5rem;
}

.p-top-unique__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
}

.p-top-unique__card-desc {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666;
}

@media (max-width: 64rem) {
    .p-top-unique {
        padding: 40px 0 60px;
        /* 60px / 100px の 2/3 に調整 */
    }

    .p-top-unique__inner {
        padding: 0 20px;
    }

    .p-top-unique__header {
        margin-bottom: 15px;
    }

    .p-top-unique__lead {
        font-size: 18px;
    }

    .p-top-unique__title {
        font-size: 3rem;
        margin-bottom: 1.3rem;
    }

    .p-top-unique__cards {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 8vw;
        margin-bottom: 1.5rem;
    }

    .p-top-unique__bg-shape {
        top: 30px;
        bottom: -30px;
        margin: 0 10px;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .p-top-unique__inner {
        padding: 0 5px;
    }
}

/* TOP Service Section */
.p-top-service {
    position: relative;
    padding: 170px 0 50px;
    background-color: #fff;
}

.p-top-service__inner {
    max-width: 1324px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.p-top-service__visual {
    position: absolute;
    top: 145px;
    bottom: 25px;
    left: 0;
    width: 50vw;
    background-color: #f0f4f8;
    border-radius: 0 30px 30px 0;
    overflow: hidden;
    z-index: 1;
}

.p-top-service__img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.p-top-service__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.05);
}

.p-top-service__img.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.p-top-service__content {
    margin-left: auto;
    width: 612px;
    /* 1324pxの中央から50pxの余白を確保 */
}

.p-top-service__header {
    margin-bottom: 30px;
}

.p-top-service__title {
    font-size: 3.125rem;
    font-family: var(--font-en);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    line-height: 1;
}

.p-top-service__title::before {
    content: "サービス概要";
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent-pink);
    letter-spacing: 0.1em;
}

.p-top-service__lead {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
}

.p-top-service__link:hover .p-top-service__label {
    padding-left: 10px;
}

.p-top-service__item {
    padding-bottom: 24px;
}

.p-top-service__item dt {
    margin-bottom: 10px;
}

.p-top-service__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    padding-left: 0.5rem;
}

.p-top-service__tag {
    background: #fff;
    border: 1px solid #ddd;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.p-top-service__tag:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.p-top-service__tag::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent-green);
    margin-right: 6px;
    transition: 0.3s;
}

.p-top-service__tag:hover::before {
    background: #fff;
}

.p-top-service__btn-wrap {
    margin-top: 10px;
}

.c-btn-service-more {
    display: inline-flex;
    align-items: center;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9375rem;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 5px;
}

.c-btn-service-more::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: #1a1a1a;
    transition: width 0.3s;
}

.c-btn-service-more:hover::after {
    width: 100%;
}

.c-btn-service-more .arrow {
    margin-left: 10px;
    transition: transform 0.3s;
}

.c-btn-service-more:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 90rem) {
    .p-top-service__inner {
        padding: 0 40px;
    }
}

@media (max-width: 1450px) {
    .p-top-service__visual {
        width: 45vw;
        /* 画像の幅を少し削ってテキストエリアを確保 */
    }

    .p-top-service__inner {
        padding: 0 40px;
    }
}

@media (max-width: 1250px) {
    .p-top-service__visual {
        width: 38vw;
        /* 1250px以下はさらに絞って衝突を回避 */
    }

    .p-top-service__inner {
        padding: 0 40px;
    }

    .u-md-br {
        display: inline;
    }

    .p-consultation-banner__text {
        line-height: 1.7;
    }
}

@media (max-width: 64rem) {
    .p-top-service {
        padding: 25px 0 10px;
    }

    .p-top-service__inner {
        padding: 0 30px;
    }

    .p-top-service__visual {
        position: static;
        width: 100vw;
        height: 60vw;
        border-radius: 0;
        margin-bottom: 40px;
    }

    .p-top-service__inner {
        padding: 0 20px;
    }

    .p-top-service__label {
        font-size: 1.1rem;
    }

    .p-top-service__content {
        width: 100%;
    }

    .p-top-service__link {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .p-top-service__title {
        font-size: 3rem;
    }

    .p-top-service__lead {
        font-size: 18px;
        font-weight: normal;
    }
}

@media (max-width: 768px) {
    .p-top-service__btn-wrap {
        margin-top: 20px;
    }
}

/* TOP News Section */
.p-top-news {
    padding: 120px 0;
    background-color: #fff;
}

.p-top-news__inner {
    max-width: 1324px;
    margin: 0 auto;
    padding: 0 40px;
}

.p-top-news__header {
    margin-bottom: 60px;
}

.p-top-news__title {
    font-size: 3.125rem;
    font-family: var(--font-en);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    gap: 12px;
    line-height: 1;
}

.p-top-news__title::before {
    content: "お知らせ";
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent-pink);
    letter-spacing: 0.1em;
}

.p-top-news__lead {
    font-size: 1.4375rem;
    font-weight: 500;
    line-height: 1.8;
    color: #1a1a1a;
    max-width: 895px;
}

.p-top-news__list {
    border-top: 1px solid #eee;
}

.p-top-news__item {
    display: flex;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s;
}

.p-top-news__item:hover {
    background-color: #fafafa;
}

.p-top-news__item-meta {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.p-top-news__item-date {
    font-size: 0.9375rem;
    color: var(--color-accent-pink);
    /* 日付のアピールカラー */
    font-weight: 500;
    font-family: var(--font-en);
}

.p-top-news__item-cat {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-accent-pink);
    /* カテゴリーのアピールカラー */
    font-family: var(--font-en);
    letter-spacing: 0.05em;
}

.p-top-news__item-cat.is-info {
    color: var(--color-accent-pink);
}

.p-top-news__item-cat.is-event {
    color: #eab308;
    /* Yellow-500 */
}

.p-top-news__item-cat.is-seminar {
    color: #3b82f6;
    /* Blue-500 */
}

.p-top-news__item-title {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.6;
    padding-right: 40px;
}

.p-top-news__item-arrow {
    flex: 0 0 40px;
    display: flex;
    justify-content: flex-end;
    color: var(--color-accent-pink);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-top-news__item:hover .p-top-news__item-arrow {
    transform: translateX(5px);
}

.p-top-news__item-arrow svg {
    width: 28px;
    height: 28px;
}

.p-top-news__btn-wrap {
    text-align: center;
    margin-top: 80px;
}

.c-btn-news-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    padding: 16px 40px;
    border: 1px solid var(--color-accent-pink);
    border-radius: 100px;
    color: var(--color-accent-pink);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 700;
    transition: all 0.3s;
}

.c-btn-news-more:hover {
    background-color: var(--color-accent-pink);
    color: #fff;
}

.c-btn-news-more .arrow {
    margin-left: 10px;
}

@media (max-width: 64rem) {
    .p-top-news {
        padding: 80px 0;
        background-color: #fff;
    }

    .p-top-news__inner {
        padding: 0 30px;
    }

    .p-top-news__header {
        margin-bottom: 30px;
    }

    .p-top-news__title {
        font-size: 3rem;
        font-family: var(--font-en);
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
        letter-spacing: -0.01em;
        display: flex;
        flex-direction: column;
        gap: 12px;
        line-height: 1;
    }

    .p-top-news__lead {
        font-size: 18px !important;
        font-weight: normal;
    }

    .p-top-news__item-title {
        flex: 1;
        font-size: 1.0rem;
        font-weight: 500;
        color: #1a1a1a;
        line-height: 1.6;
        padding-right: 40px;
    }

    .p-top-news__btn-wrap {
        text-align: center;
        margin-top: 45px;
    }
}

@media (max-width: 48rem) {
    .p-top-news {
        padding: 50px 0;
        background-color: #fff;
    }

    .p-top-news__item {
        flex-wrap: wrap;
        padding: 24px 0;
    }

    .p-top-news__item-meta {
        flex: 0 0 100%;
        margin-bottom: 12px;
    }

    .p-top-news__item-title {
        padding-right: 20px;
    }

    .p-top-news__item-arrow {
        margin-left: auto;
    }

    .p-top-news__btn-wrap {
        margin-top: 45px;
    }
}

/* TOP Blog Section */
.p-top-blog {
    padding: 140px 0;
    background-color: #fcfcfc;
}

.p-top-blog__inner {
    max-width: 1324px;
    margin: 0 auto;
    padding: 0 40px;
}

.p-top-blog__header {
    margin-bottom: 40px;
}

.p-top-blog__subtitle {
    display: block;
    font-size: 1.125rem;
    font-family: var(--font-en);
    font-weight: 600;
    color: #8c8c8c;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.p-top-blog__title {
    font-size: 3.125rem;
    font-family: var(--font-en);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    gap: 12px;
    line-height: 1;
}

.p-top-blog__title::before {
    content: "ITカケハシ";
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent-pink);
    letter-spacing: 0.1em;
}

.p-top-blog__lead {
    font-size: 1.4375rem;
    font-weight: 500;
    line-height: 1.8;
    color: #1a1a1a;
    max-width: 895px;
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.category-filter-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #d1d1d1;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a1a1a;
    background: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.category-filter-btn.active {
    background: #1a1a17;
    border-color: #1a1a17;
    color: #fff;
}

.category-filter-btn:hover:not(.active) {
    background: #f4f4f4;
    border-color: #1a1a17;
}

/* Post Grid */
#list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.entry-card-wrap {
    text-decoration: none;
    color: inherit;
    display: block;
}

.entry-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.entry-card-wrap:hover .entry-card {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.entry-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f0f0;
}

.entry-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.entry-card-wrap:hover .entry-card-thumb img {
    transform: scale(1.08);
}

.cat-label {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
    margin-right: 12px;
}

.cat-label-9 {
    background: #333;
}

.entry-card-content {
    padding: 20px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.entry-card-meta {
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: #666;
    display: flex;
    align-items: center;
}

.entry-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.6;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-top-blog__btn-wrap {
    text-align: center;
    margin-top: 60px;
}

.c-btn-blog-more {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    padding: 14px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-en);
    text-decoration: none;
    transition: 0.3s;
}

.c-btn-blog-more:hover {
    background: #1a1a17;
    color: #fff;
}

.c-btn-blog-more .arrow {
    margin-left: 10px;
}

@media (max-width: 64rem) {
    .p-top-blog {
        padding: 80px 0;
        background-color: #fcfcfc;
    }

    .p-top-blog__inner {
        padding: 0 50px;
    }

    .p-top-blog__title {
        margin-bottom: 1.5rem;
    }

    #list {
        grid-template-columns: repeat(2, 1fr);
    }

    .p-top-blog__title {
        font-size: 3rem;
    }

    .p-top-blog__lead {
        font-size: 18px;
    }

    .entry-card-title {
        font-size: 1.0rem;
        font-weight: 600;
        line-height: 1.6;
        color: #1a1a1a;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 48rem) {
    #list {
        grid-template-columns: 1fr;
    }

    .p-top-blog {
        padding: 80px 0;
    }

    .p-top-blog__title {
        font-size: 2rem;
    }
}

/* TOP Media Section */
.p-top-media {
    padding: 120px 0;
    background-color: #f6f6f6;
}

.p-top-media__inner {
    max-width: 1324px;
    margin: 0 auto;
    padding: 0 40px;
}

.p-top-media__header {
    margin-bottom: 60px;
}

.p-top-media__title {
    font-size: 3.125rem;
    font-family: var(--font-en);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    gap: 12px;
    line-height: 1;
}

.p-top-media__title::before {
    content: "関連メディアとプロジェクト";
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent-pink);
    letter-spacing: 0.1em;
}

.p-top-media__lead {
    font-size: 1.4375rem;
    font-weight: 500;
    line-height: 1.8;
    color: #1a1a1a;
    max-width: 895px;
}

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

.p-top-media__item {
    display: flex;
    flex-direction: column;
}

.p-top-media__item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.p-top-media__item-label {
    font-size: 1.125rem;
    font-family: var(--font-en);
    font-weight: 400;
    color: var(--color-accent-pink);
    white-space: nowrap;
}

.p-top-media__item-line {
    flex: 1;
    height: 1px;
    background-color: var(--color-accent-pink);
}

.p-top-media__card {
    background-color: #fff;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 20px;
}

.p-top-media__logo-text {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
}

.p-top-media__item-caption {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 75rem) {
    .p-top-media__inner {
        padding: 0 65px;
    }
}

@media (max-width: 64rem) {
    .p-top-media {
        padding: 70px 0;
        background-color: #f6f6f6;
    }

    .p-top-media__inner {
        padding: 0 50px;
    }

    .p-top-media__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .p-top-media__header {
        margin-bottom: 30px;
    }

    .p-top-media__title {
        font-size: 3.125rem;
        font-family: var(--font-en);
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
        letter-spacing: -0.01em;
        display: flex;
        flex-direction: column;
        gap: 12px;
        line-height: 1;
    }

    .p-top-media__lead {
        font-size: 18px;
    }
}

@media (max-width: 48rem) {
    .p-top-media__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .p-top-media__title {
        font-size: 2.5rem;
    }
}

/* Company Table */
.c-company-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.c-company-table th,
.c-company-table td {
    padding: 24px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.c-company-table th {
    width: 25%;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
    padding-right: 20px;
}

.c-company-table td {
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 48rem) {

    .c-company-table th,
    .c-company-table td {
        display: block;
        width: 100%;
    }

    .c-company-table th {
        padding: 12px 0 0;
        border-bottom: none;
    }

    .c-company-table td {
        padding: 3px 0 12px;
    }
}

/* Sitemap */
.p-sitemap {
    padding: 100px 0 140px;
}

.p-sitemap__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4.86vw;
}

.p-sitemap__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
}

.p-sitemap__group {
    display: flex;
    flex-direction: column;
}

.p-sitemap__group-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent-pink);
    color: #1a1a1a;
}

.p-sitemap__group-title a {
    text-decoration: none;
    color: inherit;
}

.p-sitemap__group-title a:hover {
    color: var(--color-accent-pink);
}

.p-sitemap__list {
    list-style: none;
    padding: 0;
}

.p-sitemap__item {
    margin-bottom: 0.5rem;
}

.p-sitemap__link {
    font-size: 1.0625rem;
    font-weight: 400;
    color: #333;
    display: block;
    transition: color 0.3s;
}

.p-sitemap__link:hover {
    color: var(--color-accent-pink);
}

.p-sitemap__sub-list {
    margin-top: 10px;
    padding-left: 20px;
    border-left: 1px solid #eee;
    list-style: none;
}

.p-sitemap__sub-item {
    margin-bottom: 8px;
    font-size: 0.9375rem;
    color: #666;
}

.p-sitemap__sub-item a {
    color: inherit;
    transition: color 0.3s;
}

.p-sitemap__sub-item a:hover {
    color: var(--color-accent-pink);
}

@media (max-width: 768px) {
    .p-sitemap__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* News List Page */
.p-news-page {
    padding-bottom: 120px;
    background-color: #fff;
}

.p-news-page__inner {
    max-width: 1324px;
    margin: 0 auto;
    padding: 0 4.86vw;
}

.p-news-page__list-box {
    background-color: #f6f6f6;
    border-radius: 24px;
    padding: 60px 80px;
}

.p-news-page__item {
    padding: 40px 0;
    border-bottom: 1px dotted #999;
}

.p-news-page__item:first-child {
    padding-top: 0;
}

.p-news-page__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.p-news-page__item-date {
    display: block;
    font-size: 0.9375rem;
    color: #666;
    font-family: var(--font-en);
    margin-bottom: 15px;
}

.p-news-page__item-title {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
}

.p-news-page__item-title a {
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s;
}

.p-news-page__item-title a:hover {
    color: var(--color-accent-pink);
}

@media (max-width: 768px) {
    .p-news-page__list-box {
        padding: 40px 40px;
    }

    .p-news-page__item-title {
        font-size: 1rem;
    }
}

/* Consultation Banner */
.p-consultation-banner {
    padding: 0 0 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* 背景レイアウト（4つの画像枠） */
.p-consultation-banner__bg {
    position: absolute;
    top: -100px;
    /* 背景をコンテンツの開始位置より100px上に突き出させる */
    left: 0;
    width: 100%;
    height: 700px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 0;
}

.p-consultation-banner__bg-item {
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-consultation-banner__bg-item:last-child {
    border-right: none;
}

/* 個別画像の設定例（今後ご自身で差し替え可能） */
.p-consultation-banner__bg-item:nth-child(1) {
    background-image: url('images/consultation-01.png');
}

.p-consultation-banner__bg-item:nth-child(2) {
    background-image: url('images/consultation-02.png');
}

.p-consultation-banner__bg-item:nth-child(3) {
    background-image: url('images/consultation-03.png');
}

.p-consultation-banner__bg-item:nth-child(4) {
    background-image: url('images/consultation-04.png');
}

.p-consultation-banner__inner {
    max-width: 1324px;
    margin: 0 auto;
    padding: 350px 4.86vw 0;
    /* セクション最上部より配置（白いボックスを背景画像の下方に配置するため調整） */
    position: relative;
    z-index: 1;
}

.p-consultation-banner__box {
    background-color: #fff;
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.p-consultation-banner__title {
    font-size: 3rem;
    font-family: var(--font-en);
    font-weight: 700;
    color: #1a2544;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    line-height: 1;
}

.p-consultation-banner__title::before {
    content: "無料相談";
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent-pink);
    letter-spacing: 0.1em;
}

.p-consultation-banner__text {
    font-size: 1.25rem;
    line-height: 2.2;
    font-weight: 500;
    color: #333;
    margin-bottom: 40px;
}

.c-btn-consultation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent-pink);
    color: #fff;
    padding: 22px 60px;
    border-radius: 100px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 43, 139, 0.3);
}

.c-btn-consultation:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 43, 139, 0.5);
    background-color: #ff4d9e;
}

.c-btn-consultation svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

@media (max-width: 1024px) {
    .p-consultation-banner {
        padding: 0px 0 50px 0;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .p-consultation-banner__inner {
        padding-top: 250px;
    }

    .p-consultation-banner__box {
        padding: 60px 40px;
    }

    .p-consultation-banner__text {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .p-consultation-banner__bg {
        grid-template-columns: repeat(2, 1fr) !important;
        height: 450px;
    }

    .p-consultation-banner__bg-item:nth-child(3),
    .p-consultation-banner__bg-item:nth-child(4) {
        display: none;
    }
}

@media (max-width: 768px) {
    .p-consultation-banner {
        padding: 50px 0;
    }

    .p-consultation-banner__inner {
        padding-top: 80px;
    }

    .p-consultation-banner__box {
        padding: 55px 25px;
        border-radius: 24px;
    }

    .p-consultation-banner__text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .c-btn-consultation {
        padding: 18px 40px;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
    }
}

/* Download Banner */
.p-download-banner {
    padding: 60px 0 120px;
    background-color: #fff;
}

.p-download-banner__inner {
    max-width: 1324px;
    margin: 0 auto;
    padding: 0 4.86vw;
}

.p-download-banner__box {
    display: flex;
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.p-download-banner__left {
    flex: 0 0 320px;
    background-color: #1a2544;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* 斜めの装飾ライン */
.p-download-banner__left::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.03) 20px,
            transparent 20px,
            transparent 40px);
    pointer-events: none;
}

.p-download-banner__en {
    font-size: 3rem;
    font-family: var(--font-en);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
}

.p-download-banner__ja {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    position: relative;
}

.p-download-banner__right {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-download-banner__lead {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.p-download-banner__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.p-download-banner__item {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.p-download-banner__item::before {
    content: "●";
    color: #1a2544;
    font-size: 0.8rem;
    margin-right: 12px;
}

.p-download-banner__sub {
    font-size: 0.9375rem;
    color: #444;
    margin-bottom: 40px;
}

.p-download-banner__btn-wrap {
    text-align: center;
}

.c-btn-download {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-accent-green);
    color: #fff;
    padding: 18px 40px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.2);
}

.c-btn-download:hover {
    background-color: #00e676;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 200, 83, 0.3);
}

.c-btn-download svg {
    width: 18px;
    height: 18px;
    margin-right: 12px;
}

@media (max-width: 1024px) {
    .p-download-banner__left {
        flex: 0 0 280px;
        padding: 60px 35px;
    }

    .p-download-banner__en {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .p-download-banner__item {
        font-weight: 500;
        margin-bottom: 4px;
    }

    .p-download-banner__right {
        padding: 40px 50px;
    }

    .p-download-banner__lead {
        margin-bottom: 20px;
    }

    .p-download-banner__list {
        margin-bottom: 10px;
    }

    .p-download-banner__sub {
        margin-bottom: 35px;
    }

    .p-download-banner__btn-wrap {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .p-download-banner {
        padding: 40px 0 90px;
        background-color: #fff;
    }

    .p-download-banner__box {
        flex-direction: column;
    }

    .p-download-banner__left {
        flex: none;
        padding: 40px;
        text-align: center;
    }

    .p-download-banner__right {
        flex: none;
        padding: 50px 40px;
    }

    .p-download-banner__en {
        font-size: 2.5rem;
    }

    .p-download-banner__btn-wrap {
        text-align: center;
    }

    .c-btn-download {
        width: 100%;
        max-width: 320px;
    }
}

/* Page Top Button */
.c-pagetop {
    position: fixed;
    right: 30px;
    bottom: 80px;
    width: 60px;
    height: 60px;
    background-color: var(--color-accent-pink);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(255, 43, 139, 0.2);
    border: none;
    cursor: pointer;
}

.c-pagetop.is-show {
    opacity: 1;
    visibility: visible;
}

.c-pagetop:hover {
    transform: translateY(-5px);
    background-color: #ff4d9e;
    box-shadow: 0 15px 30px rgba(255, 43, 139, 0.4);
}

.c-pagetop__arrow {
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 5px;
    margin-bottom: 2px;
}

.c-pagetop__text {
    font-size: 10px;
    font-family: var(--font-en);
    font-weight: 700;
}

@media (max-width: 768px) {
    .c-pagetop {
        right: 20px;
        bottom: 70px;
        width: 50px;
        height: 50px;
    }

    .c-pagetop__text {
        font-size: 8px;
    }
}

/* Contact Section */
.p-contact {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.p-contact__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 4.86vw;
}

.p-contact__header {
    text-align: center;
    margin-bottom: 60px;
}

.p-contact__title {
    font-size: 3.125rem;
    font-family: var(--font-en);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    gap: 12px;
    line-height: 1;
    align-items: center;
}

.p-contact__title::before {
    content: "お問い合わせ";
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent-pink);
    letter-spacing: 0.1em;
}

.p-contact__lead {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.p-contact__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: left;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.p-contact__desc-list {
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 1.2rem;
    list-style: none;
    /* デフォルトのポチを消す */
}

.p-contact__desc-list li {
    position: relative;
    padding-left: 0.2rem;
}

.p-contact__desc-list li::before {
    content: '・';
    position: absolute;
    left: -1.2rem;
    font-weight: 700;
}

.p-contact__desc-text strong {
    color: var(--color-accent-pink);
}

/* Contact Form */
.p-contact__form {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.p-contact__form-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.p-contact__item {
    margin-bottom: 30px;
}

.p-contact__label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.p-contact__label-required {
    background: var(--color-accent-pink);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.p-contact__checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.p-contact__checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
}

.p-contact__checkbox-label input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent-pink);
}

.p-contact__input,
.p-contact__textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
    background: #fdfdfd;
}

.p-contact__input:focus,
.p-contact__textarea:focus {
    outline: none;
    border-color: var(--color-accent-pink);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 43, 139, 0.1);
}

.p-contact__textarea {
    height: 200px;
    resize: vertical;
    line-height: 1.6;
}

.p-contact__privacy {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.p-contact__privacy .p-contact__checkbox-label {
    justify-content: center;
    margin-bottom: 2rem;
}

.c-btn-submit {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
    background: var(--color-accent-pink);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 20px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(255, 43, 139, 0.3);
}

.c-btn-submit:hover {
    background: #ff4d9e;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 43, 139, 0.5);
}

@media (max-width: 768px) {

    .p-contact__desc,
    .p-contact__form {
        padding: 30px 35px;
    }

    .p-contact__lead {
        font-size: 1.25rem;
    }
}

@media (max-width: 750px) {
    .p-contact__desc {
        line-height: 1.5;
    }
}

/* Contact CTA Section (for Top Page) */
.p-contact-cta {
    padding: 100px 0;
    background-color: #f8f9fa;
    text-align: center;
}



.p-contact-cta__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 4.86vw;
}

.p-contact-cta__title {
    font-size: 3.125rem;
    font-family: var(--font-en);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    line-height: 1;
}

.p-contact-cta__title::before {
    content: "お問い合わせ";
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent-pink);
    letter-spacing: 0.1em;
}

.p-contact-cta__lead {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.p-contact-cta__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.c-btn-contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--color-accent-pink);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 100px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(255, 43, 139, 0.3);
}

.c-btn-contact-cta:hover {
    background: #ff4d9e;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 43, 139, 0.5);
}

.c-btn-contact-cta svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 64rem) {
    .p-contact-cta {
        padding: 70px 0;
        background-color: #f8f9fa;
        text-align: center;
    }

    .p-contact-cta__inner {
        padding: 0 20px;
    }

    .p-contact-cta__title {
        font-size: 3.125rem;
        font-family: var(--font-en);
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
        letter-spacing: -0.01em;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        line-height: 1;
    }

    .p-contact-cta__lead {
        margin-bottom: 15px;
    }

    .p-contact-cta__text {
        margin-bottom: 25px;
    }

    .p-top-media__title {
        font-size: 3rem;
        font-family: var(--font-en);
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
        letter-spacing: -0.01em;
        display: flex;
        flex-direction: column;
        gap: 12px;
        line-height: 1;
    }
}

/* Page Header (Small) - for Subpages */
.p-page-header {
    background-color: #f8f9fa;
    padding: 80px 0 60px;
    text-align: center;
}

.p-page-header__inner {
    padding: 0 4.86vw;
}

.p-page-header__title {
    font-size: 2.5rem;
    font-family: var(--font-en);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 10px;
}

.p-page-header__sub {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-accent-pink);
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .u-sp-only {
        display: block !important;
    }

    /* フッターのリンク間隔調整 */
    .l-footer__nav-aux {
        gap: 15px !important;
    }

    .l-footer__nav-aux li {
        margin-bottom: 5px;
    }
}

/* -----------------------------------
 * Smartphone Layout (<= 480px)
 * ----------------------------------- */
@media (max-width: 480px) {

    /* メインビジュアル */
    .p-top-mv__inner {
        padding: 0 5px;
    }

    .p-top-mv__copy {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .p-top-mv__desc {
        font-size: 0.85rem;
    }

    /* 各セクションの見出しサイズ最適化 */
    .p-top-mission__title {
        font-size: 1.35rem;
        line-height: 1.5;
    }

    .p-top-mission__title br {
        display: none;
    }

    .p-top-mission__list li {
        font-size: 1rem;
    }

    .p-top-unique__title,
    .p-top-news__title,
    .p-top-blog__title,
    .p-top-service__title,
    .p-top-media__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    /* 各種テキストサイズ最適化 */
    .p-top-unique__lead,
    .p-top-service__lead,
    .p-top-news__lead,
    .p-top-blog__lead,
    .p-top-media__lead {
        font-size: 0.9rem !important;
    }

    .p-top-mission__callout {
        padding: 20px 1.5rem;
    }

    .p-top-mission__callout-text {
        font-size: 0.85rem !important;
    }

    .p-top-news__item-date,
    .p-top-news__item-cat {
        font-size: 0.8rem;
    }

    .p-top-unique__inner {
        margin: 0 20px;
    }

    .p-top-unique__cards {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 6vw;
        margin-bottom: 1.5rem;
    }

    .p-top-unique__card-body {
        padding: 1.5rem 1.4rem 1.5rem;
    }

    .p-consultation-banner__title,
    .p-download-banner__en {
        font-size: 2rem !important;
    }

    .p-top-unique__card-title {
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.4;
        color: #1a1a1a;
        margin-bottom: 1.0rem;
    }

    .p-top-media__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .p-download-banner__lead {
        font-size: 1rem;
    }

    .p-download-banner__item {
        font-size: 0.9rem;
    }

    .p-download-banner__sub {
        font-size: 0.85rem;
    }

    .p-consultation-banner__text {
        font-size: 0.9rem;
    }

    /* Footer (<= 480px) */
    .l-footer__about-title-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .l-footer__about-title {
        font-size: 3rem;
    }

    .l-footer__about-sub {
        font-size: 1.1rem;
    }

    .l-footer__about-lead {
        text-align: center;
        font-size: 0.95rem;
    }

    .l-footer__about-btn-wrap {
        text-align: center;
    }

    /* Company Page (<= 480px) */
    .p-mv {
        padding: 8rem 0 3rem;
    }

    .p-mv__title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .l-sticky-layout {
        padding-bottom: 3.5rem;
    }

    .p-service-detail {
        padding-bottom: 3rem;
    }

    .p-service-detail__num {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .c-company-table {
        margin-top: 0rem;
    }

    .p-service-detail__subtitle {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }

    .p-service-detail__solution {
        padding: 1.25rem 1rem;
    }

    .l-sitemap__link svg {
        width: 14px;
        height: 14px;
        margin-left: 5px;
    }

    .p-service-detail__pain-points p,
    .p-service-detail__pain-points li {
        padding-left: 0.8rem;
    }

    .p-service-detail__grid {
        gap: 1rem !important;
    }

    .p-service-detail__pain-points p,
    .p-service-detail__pain-points li,
    .p-service-detail__solution-label,
    .p-service-detail__solution-text,
    .p-service-detail__text-area p {
        font-size: 0.9rem !important;
    }

    .p-service-detail__desc {
        font-size: 0.85rem !important;
    }

    .c-company-table th {
        padding: 8px 0 0;
    }

    .c-company-table td {
        padding: 3px 0 12px;
    }

    /* News Page (<= 480px) */
    .p-news-page {
        padding-bottom: 40px;
    }

    .p-news-page__list-box {
        padding: 30px 15px;
    }

    .p-news-page__item {
        padding: 25px 0;
    }

    .p-news-page__item-date {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .p-news-page__item-title {
        font-size: 0.95rem;
    }

    /* CTA (<= 480px) */
    .p-cta {
        padding: 60px 0;
    }

    .p-cta__message {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .p-cta__btns {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0 20px;
    }

    .c-btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 30px;
        font-size: 1rem;
    }

    /* Sitemap (<= 480px) */
    .p-sitemap {
        padding: 50px 0 60px;
    }

    .p-sitemap__group-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .p-sitemap__link {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {

    /* Company Page (<= 768px) */
    .p-mv {
        padding: 10rem 0 5rem;
        min-height: auto;
    }

    .p-mv__title {
        font-size: 5rem;
        margin-bottom: 25px;
    }

    .l-sticky-layout {
        padding-bottom: 3.5rem;
    }

    .p-service-detail {
        padding-bottom: 4rem;
    }

    .p-service-detail__num {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .c-company-table {
        margin-top: 0rem;
    }

    .p-service-detail__subtitle {
        font-size: 1.4rem;
    }

    .p-service-detail__solution {
        padding: 1.5rem;
    }

    .p-service-detail__solution-text {
        line-height: 1.7;
    }

    /* News Page (<= 768px) */
    .p-news-page {
        padding-bottom: 60px;
    }

    .p-news-page__list-box {
        padding: 40px 40px;
    }

    /* CTA (<= 768px) */
    .p-cta {
        padding: 80px 0;
    }

    .p-cta__message {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .p-cta__btns {
        gap: 16px;
    }

    /* Sitemap (<= 768px) */
    .p-sitemap {
        padding: 60px 0 80px;
    }

    .p-sitemap__group-title {
        font-size: 1.15rem;
    }
}

.l-footer__logo-link {
    display: inline-block;
    transition: opacity 0.3s;
}

.l-footer__logo-link:hover {
    opacity: 0.8;
}

/* Pagination */
.c-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.c-pagination__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.c-pagination__item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-pagination__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 500;
    color: #1a1a17;
    text-decoration: none;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.c-pagination__link:hover {
    border-color: #1a1a17;
    background: #f8f9fa;
}

.c-pagination__item.is-active .c-pagination__link {
    background: #1a1a17;
    color: #fff;
    border-color: #1a1a17;
}

.c-pagination__item.is-dots {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

.c-pagination__item svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .c-pagination {
        margin-top: 40px;
    }

    .c-pagination__link {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

}

@media (max-width: 770px) {

    /* Adjust pain point spacing for screens under 770px */
    .p-service-detail__pain-points li {
        padding-left: 0.8rem !important;
    }

    .c-btn-submit {
        max-width: 330px;
        margin: 30px auto 30px;
    }
}

.font-bold {
    font-weight: 700 !important;
}

/* -----------------------------------
 * News Single Page Styles
 * ----------------------------------- */
.p-news-single {
    padding: 80px 0 140px;
    background: #fff;
}

.p-news-single__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 4.86vw;
}

.p-news-single__header {
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.p-news-single__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.p-news-single__date {
    font-size: 16px;
    font-family: var(--font-en);
    color: #888;
}

.p-news-single__cat {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    color: #fff;
    background: #888;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.p-news-single__cat.is-event {
    background: var(--color-accent-pink, #ff4d8d);
}

.p-news-single__cat.is-seminar {
    background: var(--color-primary, #0052cc);
}

.p-news-single__cat.is-info {
    background: #1a1a17;
}

.p-news-single__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* Article Content Typography */
.p-news-single__content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.p-news-single__content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 60px 0 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #1a1a17;
}

.p-news-single__content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-news-single__content h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: #1a1a17;
}

.p-news-single__content p {
    margin-bottom: 30px;
}

.p-news-single__content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 40px 0;
}

.p-news-single__content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.p-news-single__content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    list-style: none;
}

.p-news-single__content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--color-primary, #0052cc);
    border-radius: 50%;
}

/* Navigation */
.p-news-single__nav {
    margin-top: 100px;
    border-top: 1px solid #eee;
    padding-top: 60px;
    text-align: center;
}

.c-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #1a1a17;
    text-decoration: none;
    transition: 0.3s;
}

.c-btn-back:hover {
    color: var(--color-primary, #0052cc);
    transform: translateX(-5px);
}

.c-btn-back svg {
    width: 20px;
    height: 20px;
    transform: rotate(180deg);
}

/* Breadcrumbs */
.c-breadcrumbs {
    padding: 30px 0;
    background: #f8f9fa;
}

.c-breadcrumbs__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4.86vw;
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #888;
}

.c-breadcrumbs__item a {
    color: #888;
    text-decoration: none;
}

.c-breadcrumbs__item a:hover {
    text-decoration: underline;
}

.c-breadcrumbs__separator {
    color: #ccc;
}

@media (max-width: 768px) {
    .p-news-single {
        padding: 60px 0 100px;
    }

    .p-news-single__title {
        font-size: 24px;
    }

    .p-news-single__content h2 {
        font-size: 20px;
        margin: 40px 0 20px;
    }
}