@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #FDFCF8;
    color: #2B2B2B;
    overflow-x: hidden;
    line-height: 1.6;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul {
    list-style: none;
}

/* --- Layout --- */
.l-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    position: relative;
}

/* --- Components --- */
.c-label {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #DA6F31;
    margin-bottom: 16px;
}

.c-label--center {
    justify-content: center;
}

.c-label__bar {
    width: 40px;
    height: 2px;
    background-color: #DA6F31;
}

.c-label__text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

/* Cards */
.c-card-selection {
    background-color: #FDFBF7;
    border: 1px solid rgba(255, 142, 63, 0.1);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.5s;
    position: relative;
    touch-action: manipulation;
}

@media (hover: hover) {
    .c-card-selection:hover {
        transform: translateY(-8px);
        box-shadow: 0 40px 80px rgba(255, 142, 63, 0.15);
    }
}

.c-card-selection__img-box {
    position: relative;
    aspect-ratio: 1.3 / 1;
    overflow: hidden;
    z-index: 5;
}

.c-card-selection__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.c-card-selection__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.c-card-selection__icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 140px;
    height: 140px;
    opacity: 0.1;
    color: #E09B6B;
    transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1);
    transform: rotate(-12deg);
    pointer-events: none;
    z-index: 1;
}

.c-card-selection:hover .c-card-selection__icon {
    transform: translate(-15px, -15px) rotate(0deg) scale(1.1);
    opacity: 0.25;
}

.c-card-selection__body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 5;
}

.c-card-selection__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: left;
    color: #444444;
}

.c-card-selection__desc {
    font-size: 12px;
    color: #444444;
    margin-bottom: 32px;
    text-align: left;
}

@media (min-width: 768px) {
    .c-card-selection__desc {
        font-size: 15px;
    }
}

.c-card-product {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(60, 44, 37, 0.1);
    transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

.c-card-product__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-card-product__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(60, 44, 37, 0.5);
    transition: 0.5s;
    z-index: 5;
}

.c-card-product:hover .c-card-product__overlay {
    background-color: rgba(60, 44, 37, 0.75);
}

.c-card-product__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #FFFFFF;
    text-align: center;
    z-index: 10;
}

.c-card-product__tag {
    font-size: 10px;
    font-weight: 700;
    color: #E09B6B;
    margin-bottom: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.c-card-product__name {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    max-width: 200px;
    margin-bottom: 16px;
}

.c-card-product__arrow-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.c-card-product:hover .c-card-product__arrow-icon {
    background-color: #E09B6B;
    border-color: #E09B6B;
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .c-card-product__name {
        font-size: 16px;
    }

    .c-card-product {
        margin-left: -15px;
        margin-right: -15px;
    }

    .c-card-product:nth-child(even) {
        transform: translateY(80px);
        z-index: 2;
    }

    .c-card-product:nth-child(even).js-fade-up {
        transform: translateY(110px);
    }

    .c-card-product:nth-child(even).js-fade-up.is-in-view {
        transform: translateY(80px);
    }

    .c-card-product:nth-child(even).js-fade-up.is-in-view:hover {
        transform: translateY(70px) scale(1.05);
    }

    .c-card-product:nth-child(even):hover {
        transform: translateY(70px) scale(1.05);
        z-index: 10;
    }

    .c-card-product:nth-child(odd):hover {
        transform: translateY(-10px) scale(1.05);
        z-index: 10;
    }
}

.c-card-cv {
    display: flex;
    flex-direction: column;
    background-color: #E09B6B;
    color: #FFFFFF;
    padding: 40px 32px;
    border-radius: 16px;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.c-card-cv--dark {
    background-color: #2B2B2B;
}

.c-card-cv:hover {
    transform: translateY(-8px);
    background-color: #FF7A1F;
}

.c-card-cv--dark:hover {
    background-color: #2D211B;
}

.c-card-cv__text-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.c-card-cv__label {
    font-size: 11px;
    font-weight: 700;
    opacity: 0.8;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.c-card-cv__title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

.c-card-cv__desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 320px;
}

.c-card-cv__action {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (min-width: 768px) {
    .c-card-cv {
        padding: 56px 40px;
    }

    .c-card-cv__title {
        font-size: 28px;
    }
}

/* --- Sections --- */
.u-section-py {
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (min-width: 768px) {
    .u-section-py {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.p-hero {
    position: relative;
    background-color: #FDFCF8;
    height: calc(100vh - 80px);
    margin-top: 80px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}



.p-hero__main-box {
    position: relative;
    width: calc(100% - 30px);
    /* margin-left: -30px; */
    max-width: none;
    height: 90%;
    border-radius: 0 30px 30px 0;
    overflow: hidden;
    background-color: #2B2B2B;
    box-shadow: 20px 10px 60px rgba(60, 44, 37, 0.08);
}

.p-hero>.l-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 20;
    height: 100%;
}

.p-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(70deg, rgba(60, 44, 37, 0.7) 0%, rgba(60, 44, 37, 0.2) 60%, rgba(60, 44, 37, 0.1) 100%);
    z-index: 5;
}

.p-hero__content {
    position: absolute;
    left: 15px;
    bottom: 18%;
    pointer-events: auto;
    color: #FFFFFF;
    opacity: 1;
    transform: translateY(0) translateZ(0);
    transition: 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-hero__area-label {
    display: block;
    width: fit-content;
    background-color: rgba(128, 128, 128, 0.7);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.p-hero__tag {
    display: inline-block;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.9;
}

.p-hero__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.p-hero__sub-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 500;
}

.p-hero__sub-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.p-hero__sub-item::before {
    content: "";
    display: block;
    width: 16px;
    height: 1px;
    background-color: #E09B6B;
}

@media (min-width: 768px) {
    .p-hero__main-box {
        width: calc(100% - 60px);
        margin-left: 0;
        border-radius: 0 60px 60px 0;
        height: 92%;
    }

    .p-hero__area-label {
        font-size: 28px;
    }

    .p-hero__content {
        left: 15px;
        bottom: 15%;
    }

    .p-hero__tag {
        font-size: 32px;
        letter-spacing: 0.1em;
    }

    .p-hero__title {
        font-size: 64px;
    }

    .p-hero__sub-copy {
        font-size: 16px;
    }
}

@media (min-width: 1025px) {
    .p-hero__sub-copy {
        flex-direction: row;
        gap: 40px;
        margin-top: 40px;
        font-size: 18px;
    }
}

.p-hero__scroll-indicator-zone {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 40px;
    z-index: 30;
}

.p-hero__scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.p-hero__scroll-text {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    writing-mode: vertical-rl;
    opacity: 0.6;
}

.p-hero__scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(60, 44, 37, 0.1);
    position: relative;
    overflow: hidden;
}

.p-hero__scroll-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E09B6B;
    animation: scroll-line-anim 2s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

@keyframes scroll-line-anim {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

@media (min-width: 768px) {
    .p-hero__scroll-indicator-zone {
        width: 60px;
        padding-bottom: 60px;
    }
}

.p-selection__header {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
}

.p-selection__title {
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: 0.1em;
    color: #444444;
}

.p-selection__title .u-color-accent {
    color: #DA6F31;
}

.p-selection__intro {
    font-size: 16px;
    font-weight: 500;
    color: #444444;
    max-width: 400px;
    border-left: 2px solid rgba(255, 142, 63, 0.2);
    padding-left: 24px;
    line-height: 1.7;
    letter-spacing: 0.05em;
}

.p-selection__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .p-selection__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .p-selection__title {
        font-size: 48px;
        line-height: 64px;
        font-weight: 500;
        letter-spacing: 0.1em;
    }

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

@media (min-width: 1025px) {
    .p-selection__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.p-movie {
    background-color: #2b2b2b;
    color: #FFFFFF;
    position: relative;
    z-index: 10;
}

.p-movie__flex {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    text-align: left;
}

.p-movie__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.p-movie__title .u-color-accent {
    color: #DA6F31;
}

.p-movie__desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    text-align: left;
}

.p-movie__video-container {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.p-movie__iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (min-width: 768px) {
    .p-movie__desc {
        font-size: 16px;
    }

    .p-movie__flex {
        flex-direction: row;
        gap: 80px;
        text-align: left;
    }

    .p-movie__text-content {
        flex: 1;
    }

    .p-movie__visual-content {
        flex: 1.2;
    }

    .p-movie__title {
        font-size: 36px;
        font-weight: 500;
        line-height: 48px;
        letter-spacing: 0.1em;
    }
}

.p-lineup {
    background-color: #FDFBF7;
}

.p-lineup__header {
    margin-bottom: 60px;
}

.p-lineup__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

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

@media (min-width: 768px) {
    .p-lineup__title {
        font-size: 36px;
        font-weight: 500;
        line-height: 48px;
        letter-spacing: 0.1em;
    }

    .p-lineup__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.p-promotion__list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.p-promotion__banner {
    width: 100%;
    display: flex;
    justify-content: center;
}

.p-promotion__banner img {
    max-width: 100%;
    height: auto;
}

.p-promotion__card {
    background-color: #FDFCF8;
    border-radius: 16px;
    padding: 32px 24px;
    border: 2px solid rgba(255, 142, 63, 0.1);
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
}

.p-promotion__card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 142, 63, 0.3);
}

.p-promotion__card--campaign {
    border: 1px solid rgba(255, 142, 63, 0.2);
    background: linear-gradient(135deg, #FDFBF7 0%, #FFFFFF 100%);
}

.p-promotion__card--campaign::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: #E09B6B;
}

.p-promotion__card-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 24px;
}

.p-promotion__card-desc {
    font-size: 15px;
    color: rgba(60, 44, 37, 0.8);
    letter-spacing: 0.05em;
    line-height: 1.7;
}

.p-promotion__btn-wrap {
    align-self: center;
}

.p-promotion__campaign-sub {
    color: rgba(60, 44, 37, 0.5);
    font-size: 18px;
    margin-bottom: 4px;
}

.p-promotion__campaign-title {
    font-weight: 900;
}

.p-promotion__campaign-text {
    font-size: 22px;
    line-height: 1.4;
}

.p-promotion__campaign-highlight {
    font-size: 56px;
    color: #E09B6B;
    font-style: italic;
    margin-right: 4px;
}

@media (min-width: 768px) {
    .p-promotion__card {
        padding: 60px;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        gap: 40px;
    }

    .p-promotion__card-title {
        font-size: 32px;
    }

    .p-promotion__card-desc {
        font-size: 16px;
        max-width: 560px;
    }

    .p-promotion__btn-wrap {
        align-self: flex-end;
    }

    .p-promotion__campaign-text {
        font-size: 32px;
        white-space: nowrap;
    }
}

.p-promotion__badge {
    background-color: #2B2B2B;
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(60, 44, 37, 0.15);
}

.p-promotion__badge-label {
    font-size: 10px;
    opacity: 0.7;
    letter-spacing: 0.15em;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.p-promotion__badge-text {
    font-size: 20px;
    font-weight: 900;
}

@media (min-width: 768px) {
    .p-promotion__badge {
        padding: 10px 28px;
        border-radius: 20px;
        margin: 0;
    }
}


/* Floating CTA */
.c-floating-cta {
    position: fixed;
    bottom: 24px;
    left: 20px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.c-floating-cta.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.c-floating-cta__btn {
    width: 100%;
    background-color: #E09B6B;
    color: #FFFFFF;
    padding: 20px;
    border-radius: 999px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(255, 142, 63, 0.4);
}

@media (min-width: 768px) {
    .c-floating-cta {
        display: none;
    }
}

/* --- Utilities --- */
.u-block {
    display: block;
}

.u-text-center {
    text-align: center;
}

.u-color-accent {
    color: #E09B6B;
}

.u-mb-60 {
    margin-bottom: 60px;
}

.u-mt-20 {
    margin-top: 20px;
}

.u-overflow-hidden {
    overflow: hidden;
}

.u-hidden-pc {
    display: none;
}

@media (min-width: 768px) {
    .u-hidden-pc {
        display: none !important;
    }
}

/* --- Animation Utilities --- */
.js-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1), transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.js-fade-up.is-in-view {
    opacity: 1;
    transform: translateY(0);
}

.u-delay-100 {
    transition-delay: 0.1s;
}

.u-delay-200 {
    transition-delay: 0.2s;
}

.u-delay-300 {
    transition-delay: 0.3s;
}

.u-delay-400 {
    transition-delay: 0.4s;
}

/* Extracted from index.php */
/* Event Section Styles */
        /* Lineup Section Padding adjustment */
        @media (min-width: 768px) {
            .p-lineup {
                padding-bottom: 180px !important;
            }
        }

        .p-event {
            background-color: #FFFFFF;
        }

        .p-event__header {
            margin-bottom: 48px;
        }

        @media (min-width: 768px) {
            .p-event__header {
                margin-bottom: 60px;
            }
        }

        .p-event__title {
            font-size: 24px;
            font-weight: 500;
            line-height: 38px;
            letter-spacing: 0.1em;
            margin-top: 8px;
        }

        @media (min-width: 768px) {
            .p-event__title {
                font-size: 36px;
                line-height: 48px;
            }
        }

        .p-event__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .p-event__btn-wrap {
            margin-top: 40px;
            display: flex;
            justify-content: center;
        }

        @media (min-width: 768px) {
            .p-event__grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }
        }

        /* Event Card Component Styles */
        .c-card-event {
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: 0.4s;
            touch-action: manipulation;
        }

        @media (hover: hover) {
            .c-card-event:hover {
                transform: translateY(-8px);
            }

            .c-card-event:hover .c-card-event__img {
                transform: scale(1.05);
            }

            .c-card-event:hover .c-button-area,
            .c-card-event:hover .c-button-area__text {
                color: #DA6F31;
            }

            .c-card-event:hover .c-button-area__arrow {
                background-color: #444444;
                border-color: #444444;
                color: #ffffff;
                transform: translateX(4px);
            }
        }

        .c-card-event__img-box {
            width: 100%;
            aspect-ratio: 16 / 10;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 24px;
        }

        .c-card-event__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .c-card-event__body {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .c-card-event__tag {
            background-color: #E65510;
            color: #FFFFFF;
            font-size: 11px;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 999px;
            margin-bottom: 12px;
            letter-spacing: 0.05em;
        }

        .c-card-event__date {
            font-size: 14px;
            color: rgba(60, 44, 37, 0.6);
            margin-bottom: 12px;
            font-weight: 500;
            letter-spacing: 0.05em;
        }

        .c-card-event__title {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.6;
            margin-bottom: 24px;
            color: #2B2B2B;
        }

        .c-card-event .c-button-area {
            margin-top: auto;
        }

        /* スマホ：タップした瞬間にテキスト色・矢印を変化（c-card-selection / c-card-event 共通） */
        @media (max-width: 767px) {
            .c-card-selection .c-button-area,
            .c-card-selection .c-button-area__text,
            .c-card-selection .c-button-area__arrow,
            .c-card-event .c-button-area,
            .c-card-event .c-button-area__text,
            .c-card-event .c-button-area__arrow {
                transition: color 0.1s, background-color 0.1s, border-color 0.1s, transform 0.1s;
            }

            .c-card-selection.is-tapped .c-button-area,
            .c-card-selection.is-tapped .c-button-area__text,
            .c-card-event.is-tapped .c-button-area,
            .c-card-event.is-tapped .c-button-area__text {
                color: #DA6F31 !important;
            }

            .c-card-selection.is-tapped .c-button-area__arrow,
            .c-card-event.is-tapped .c-button-area__arrow {
                background-color: #444444 !important;
                border-color: #444444 !important;
                color: #ffffff !important;
                transform: translateX(4px);
            }
        }

        .c-btn-event {
            background-color: #2B2B2B !important;
            box-shadow: 0 10px 20px rgba(43, 43, 43, 0.2);
            display: inline-flex;
            align-items: center;
        }

        .c-btn-event:hover {
            background-color: #444444 !important;
        }

        /* Column Section Styles (Same as Event) */
        .p-column {
            background-color: #FFFFFF;
        }

        .p-column__header {
            margin-bottom: 48px;
        }

        @media (min-width: 768px) {
            .p-column__header {
                margin-bottom: 60px;
            }
        }

        .p-column__title {
            font-size: 24px;
            font-weight: 500;
            line-height: 38px;
            letter-spacing: 0.1em;
            margin-top: 8px;
            color: #2B2B2B;
        }

        @media (min-width: 768px) {
            .p-column__title {
                font-size: 36px;
                line-height: 48px;
            }
        }

        .p-column__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        @media (min-width: 768px) {
            .p-column__grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }
        }

        .p-column__btn-wrap {
            margin-top: 40px;
            display: flex;
            justify-content: center;
        }

        .c-card-column {
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: 0.4s;
            text-decoration: none;
        }

        .c-card-column:hover {
            transform: translateY(-8px);
        }

        .c-card-column:hover .c-card-column__img {
            transform: scale(1.05);
        }

        .c-card-column:hover .c-button-area {
            color: #E09B6B;
        }

        .c-card-column:hover .c-button-area__arrow {
            background-color: #2B2B2B;
            color: #FFFFFF;
            transform: translateX(4px);
        }

        .c-card-column__img-box {
            width: 100%;
            aspect-ratio: 16 / 10;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 24px;
        }

        .c-card-column__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .c-card-column__body {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .c-card-column__tag {
            background-color: #E65510;
            color: #FFFFFF;
            font-size: 11px;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 999px;
            margin-bottom: 12px;
            letter-spacing: 0.05em;
        }

        .c-card-column__date {
            font-size: 14px;
            color: rgba(43, 43, 43, 0.6);
            margin-bottom: 12px;
            font-weight: 500;
            letter-spacing: 0.05em;
        }

        .c-card-column__title {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.6;
            margin-bottom: 24px;
            color: #2B2B2B;
        }

        .c-card-column .c-button-area {
            margin-top: auto;
        }

        .c-btn-column {
            background-color: #2B2B2B !important;
            box-shadow: 0 10px 20px rgba(43, 43, 43, 0.2);
            display: inline-flex;
            align-items: center;
        }

        .c-btn-column:hover {
            background-color: #444444 !important;
        }

        /* Staff Section Styles */
        .p-staff {
            background-color: #FFFFFF;
        }

        .p-staff__header {
            margin-bottom: 48px;
        }

        @media (min-width: 768px) {
            .p-staff__header {
                margin-bottom: 60px;
            }
        }

        .p-staff__title {
            font-size: 24px;
            font-weight: 500;
            line-height: 38px;
            letter-spacing: 0.1em;
            margin-top: 8px;
            color: #2B2B2B;
        }

        @media (min-width: 768px) {
            .p-staff__title {
                font-size: 36px;
                line-height: 48px;
            }
        }

        .p-staff__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        @media (min-width: 768px) {
            .p-staff__grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }
        }

        .c-card-staff {
            display: flex;
            flex-direction: column;
            border-radius: 8px;
            overflow: hidden;
            transition: 0.3s;
        }

        .c-card-staff__img-box {
            width: 100%;
            aspect-ratio: 3 / 4;
            overflow: hidden;
            margin-bottom: 24px;
            border-radius: 4px;
        }

        .c-card-staff__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .c-card-staff__content {
            display: flex;
            flex-direction: column;
        }

        .c-card-staff__role {
            font-size: 12px;
            color: #E09B6B;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.05em;
        }

        .c-card-staff__name {
            font-size: 20px;
            font-weight: 700;
            color: #2B2B2B;
            margin-bottom: 16px;
        }

        .c-card-staff__comment {
            font-family: 'Noto Sans JP', sans-serif;
            font-weight: 500;
            font-size: 14px;
            line-height: 24px;
            letter-spacing: 0.1em;
            color: rgba(43, 43, 43, 0.8);
        }

        @media (min-width: 768px) {
            .c-card-staff__comment {
                font-size: 16px;
            }
        }

        /* Company Section Dark Theme */
        .p-company {
            background-color: #2F2F2F !important;
            color: #FFFFFF !important;
        }

        .p-company__title,
        .p-company__intro,
        .p-company__phone,
        .p-company__val,
        .p-company__name {
            color: #FFFFFF !important;
        }

        .p-company__key {
            color: rgba(255, 255, 255, 0.6) !important;
        }

        .p-company__sub-info {
            border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        }

        .p-company__row {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        }

        .p-company .c-label__text {
            color: #FFFFFF !important;
        }

        /* Concept Card Background */
        .p-promotion__card {
            background-color: #FFFFFF !important;
        }
