/* ========================================
   CAN-VAS Business Page
======================================== */

/* ----- Reset ----- */
body { margin: 0; }

/* ----- Header / Footer ----- */
:root {
    --cv-header-offset: 60px;
}

.decon_header {
    background-color: #fff;
    transition: .3s ease-in-out;
}

.decon_header.bg-wh {
    background-color: #fff;
}
.decon_footer {
    background-color: #fff;
}

/* ----- Scroll Animation ----- */
.cv-anim {
    --cv-anim-x: 0;
    --cv-anim-y: 24px;
    --cv-anim-scale: 1;
    opacity: 0;
    transform: translate3d(var(--cv-anim-x), var(--cv-anim-y), 0) scale(var(--cv-anim-scale));
    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--cv-delay, 0s);
    will-change: opacity, transform;
}

.cv-anim--fade {
    --cv-anim-y: 0;
}

.cv-anim--scale {
    --cv-anim-y: 12px;
    --cv-anim-scale: .97;
}

.cv-anim.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .cv-anim {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

/* ----- Sidebar ----- */
.cv-sidebar {
    position: fixed;
    left: 0;
    top: var(--cv-header-offset);
    width: 96px;
    height: calc(100vh - var(--cv-header-offset));
    background: #507679;
    border-right: 1px solid rgba(255,255,255,0.3);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 0;
    box-sizing: border-box;
    transition: opacity .3s;
}
.cv-sidebar.is-hidden {
    opacity: 0;
    pointer-events: none;
}
.cv-sidebar__logo {
    width: 14px;
    display: block;
    transform: translateY(14px);
}
.cv-sidebar__nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cv-sidebar__nav span {
    display: block;
    width: 44px;
    height: 1px;
    background: #fff;
}

/* ----- FV ----- */
.cv-fv {
    display: flex;
    height: 100vh;
    min-height: 640px;
    position: relative;
    padding-left: 96px;
    box-sizing: border-box;
}
.cv-fv__heading {
    position: absolute;
    top: 62px;
    left: 96px;
    right: 0;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}
.cv-fv__title-img {
    display: block;
    height: 52px;
    width: auto;
    margin: 0 auto 16px;
}
.cv-fv__sub-img {
    display: block;
    height: 24px;
    width: auto;
    margin: 0 auto;
}
.cv-fv__col {
    flex: 1;
    position: relative;
}
.cv-fv__col:nth-child(2) { background-color: #3BBAD4; }
.cv-fv__col:nth-child(3) { background-color: #A6CE57; }
.cv-fv__col:nth-child(4) { background-color: #B696C4; }
.cv-fv__col:nth-child(5) { background-color: #DCC328; }
.cv-fv__col::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 42%;
    background: #507679;
}
.cv-fv__col img {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 59vh;
    width: auto;
    z-index: 1;
    display: block;
}

/* ----- Sticky Main ----- */
.cv-main {
    display: flex;
    align-items: flex-start;
    position: relative;
}
.cv-main__left {
    position: sticky;
    top: 0;
    align-self: flex-start;
    width: 50%;
    height: 100vh;
    flex-shrink: 0;
    background-color: #507679;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 48px 52px 96px;
    box-sizing: border-box;
    gap: 32px;
}
.cv-main__hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.cv-main__hero img {
    width: 94%;
    max-height: 72vh;
    object-fit: contain;
    display: block;
}
.cv-main__catch {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.75;
    letter-spacing: 0.1em;
    color: #fff;
    margin: 0 0 36px;
    align-self: center;
    text-align: left;
}
.cv-main__btn {
    margin-right: 26px;
}
.cv-main__btn a {
    display: inline-block;
    border: 1px solid #fff;
    background: #fff;
    color: #507679;
    padding: 8px 36px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-decoration: none;
    border-radius: 8px;
    transition: background .25s, color .25s, border-color .25s;
}
.cv-main__btn a:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}
.cv-main__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.55);
}
.cv-main__scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
}
.cv-main__right {
    flex: 1;
    min-width: 0;
}
.cv-main__intro {
    background-color: #507679;
    min-height: 100vh;
    padding: 80px 64px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* ----- Panel共通 ----- */
.cv-panel {
    min-height: 100vh;
    padding: 80px 120px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cv-panel__title {
    font-size: 30px;
    font-weight: 900;
    margin: 0 0 40px;
    color: #2A4A4A;
}

/* ----- Originality ----- */
.cv-originality {
    background-color: #507679;
    position: relative;
    justify-content: flex-start;
    padding-left: 56px;
    padding-right: 56px;
    padding-bottom: 200px;
}
.cv-originality__group {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
}
.cv-originality__group:last-child {
    margin-bottom: 0;
}
.cv-originality .cv-panel__title {
    color: #fff;
    text-align: center;
}
.cv-originality__cat {
    font-size: 11px;
    font-weight: 700;
    color: #6dbd81;
    letter-spacing: 0.1em;
    margin: 0 0 10px;
}
.cv-originality__grid {
    display: grid;
    grid-template-columns: repeat(2, 204px);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.cv-originality__item {
    background: #fff;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #2A4A4A;
    border-radius: 8px;
    border-left: 4px solid #6dbd81;
}
.cv-originality__item::before {
    content: none;
}
.cv-originality__illust {
    position: absolute;
    bottom: 100px;
    right: 42px;
    width: 146px;
    z-index: 1;
}
.cv-originality__illust img {
    width: 100%;
    display: block;
}

/* ----- 3ステップ ----- */
.cv-steps {
    background-color: #507679;
    color: #fff;
}
.cv-steps__head {
    text-align: center;
    margin-bottom: 52px;
}
.cv-steps__head img {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}
.cv-steps__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cv-steps__item {
    display: flex;
    gap: 24px;
    align-items: center;
    position: relative;
}
.cv-steps__item:not(:last-child) .cv-steps__badge::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 52px;
    height: calc(100% + 86px);
    width: 0;
    border-left: 2px dotted #283740;
}
.cv-steps__badge {
    position: relative;
    flex-shrink: 0;
    width: 42px;
}
.cv-steps__badge img {
    width: 100%;
    display: block;
}
.cv-steps__card {
    flex: 1;
    background: transparent;
    border: 1px solid #283740;
    border-radius: 8px;
    padding: 20px 24px;
    max-width: 480px;
    letter-spacing: 0;
}
.cv-steps__card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
}
.cv-steps__card-sub {
    font-size: 12px;
    color: #8fffa7;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.5;
}
.cv-steps__card-txt {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    opacity: 0.88;
    margin: 0;
}
.cv-steps__note {
    font-size: 11px;
    opacity: 0.5;
    text-align: right;
    margin: 12px 0 0;
}

/* ----- 表現のしやすさ ----- */
.cv-expression {
    background: #507679;
    color: #fff;
}
.cv-expression .cv-panel__title {
    color: #fff;
    text-align: center;
}
.cv-expression__point {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: transparent;
    padding: 0;
    margin-bottom: 48px;
}
.cv-expression__point-left {
    flex-shrink: 0;
    width: 44%;
}
.cv-expression__point-img {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}
.cv-expression__point-img img {
    width: 100%;
    display: block;
}
.cv-expression__point-tag {
    display: inline-block;
    background: #6dbd81;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    border-radius: 4px;
}
.cv-expression__point-body {
    padding-top: 8px;
}
.cv-expression__point-heading {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.6;
}
.cv-expression__point-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.8;
}
.cv-expression__point-txt {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255,255,255,0.75);
    margin: 0;
}
.cv-expression__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cv-expression__feat {
    display: flex;
    gap: 24px;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    padding: 24px 28px;
}
.cv-expression__feat-label {
    flex: 4;
    background: transparent;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    padding: 0;
    line-height: 1.65;
    text-align: left;
}
.cv-expression__feat-txt {
    flex: 6;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255,255,255,0.8);
    margin: 0;
    padding: 0;
}

/* ----- Story ----- */
.cv-story {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px;
    box-sizing: border-box;
    color: #fff;
}
.cv-story__inner {
    max-width: 660px;
    margin: 0 auto;
}
.cv-story__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 60px;
    letter-spacing: 0.04em;
    text-align: center;
}
.cv-story__txt {
    font-size: 18px;
    line-height: 3.7;
    margin: 0;
    text-align: center;
}

/* ----- Event ----- */
.cv-event {
    background: #507679;
    color: #fff;
    padding: 100px 0;
}
.cv-event__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 48px;
}
.cv-event__heading {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 60px;
    letter-spacing: 0.05em;
}
.cv-event__body {
    display: flex;
    gap: 56px;
    align-items: flex-start;
}
.cv-event__photo {
    width: 40%;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}
.cv-event__photo img {
    width: 100%;
    display: block;
}
.cv-event__dtl-heading {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.55;
    margin: 0 0 6px;
    letter-spacing: 0.06em;
}
.cv-event__dtl-sub {
    font-size: 12px;
    color: #fff;
    margin: 0 0 32px;
}
.cv-event__steps {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.cv-event__step {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: 700;
}
.cv-event__step-badge {
    flex-shrink: 0;
    width: 80px;
    display: block;
}
.cv-event__sdgs {
    background: #fff;
    border-radius: 8px;
    padding: 20px 24px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #507679;
    letter-spacing: 0.1em;
}

/* ----- Other Cases ----- */
.cv-other {
    background: #507679;
    color: #fff;
    padding: 80px 0 100px;
}
.cv-other__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 32px;
}
.cv-other__heading {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 48px;
    letter-spacing: 0.08em;
}
.cv-other__grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 132px;
}
.cv-other__img {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-bottom: 16px;
}
.cv-other__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cv-other__caption {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 1.65;
    letter-spacing: 0.08em;
    margin: 0;
}

/* ----- Contact ----- */
.cv-contact {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.cv-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.38);
}
.cv-contact__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 48px;
    color: #fff;
    box-sizing: border-box;
}
.cv-contact__grid {
    display: grid;
    grid-template-columns: 1fr 200px 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}
.cv-contact__label {
    font-size: 11px;
    letter-spacing: 0.2em;
    border-top: 1px solid rgba(255,255,255,0.4);
    padding-top: 10px;
    margin: 0 0 12px;
}
.cv-contact__text {
    font-size: 14px;
    line-height: 2.0;
    margin: 0;
    letter-spacing: 0.12em;
}
.cv-contact__text--ruled {
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 12px;
}
.cv-contact__illust {
    text-align: center;
}
.cv-contact__illust img {
    width: 160px;
}
.cv-contact__btn {
    text-align: center;
}
.cv-contact__btn a {
    display: inline-block;
    border: 1px solid #fff;
    background: #fff;
    color: #333;
    padding: 16px 64px;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-decoration: none;
    border-radius: 8px;
    transition: background .25s, color .25s, border-color .25s;
}
.cv-contact__btn a:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

/* ===================================
   SP (〜767px)
=================================== */

/* ----- FV (SP専用要素) ----- */
.cv-fv--sp {
    height: auto;
    min-height: 0;
    padding-left: 0;
    background: #283740;
}
.cv-fv__sp-body {
    position: relative;
    width: 100%;
    aspect-ratio: 1180 / 2176;
    overflow: hidden;
    /* 上61%: カラーストライプ、下39%: ダークティール */
    background:
        linear-gradient(to bottom, transparent 61.2%, #507679 61.2%),
        linear-gradient(to right,
            #1FC8D2 0%, #1FC8D2 25%,
            #8DC420 25%, #8DC420 50%,
            #AA9BD0 50%, #AA9BD0 75%,
            #DDB000 75%, #DDB000 100%
        );
}
.cv-fv__sp-head {
    position: absolute;
    top: 10.5%;
    left: 0;
    z-index: 2;
    text-align: center;
    width: 100%;
}
.cv-fv__sp-head img {
    display: block;
    margin: 0 auto;
}
.cv-fv__sp-head img:first-child {
    width: 30%;
    max-width: none;
    margin-bottom: 3.2%;
}
.cv-fv__sp-head img:last-child {
    width: 30%;
    max-width: none;
}
.cv-fv__sp-bottle {
    display: block;
    position: absolute;
    top: 19.6%;
    left: 50%;
    z-index: 1;
    width: 88%;
    margin: 0;
    transform: translateX(-50%);
}
.cv-fv__sp-tagline {
    display: none;
}
.cv-fv__sp-tagline p {
    color: #fff;
    font-size: 36px;
    line-height: 2.0;
    letter-spacing: 0.08em;
    margin: 0;
    text-align: center;
}

/* ----- cv-main (SP) ----- */
.cv-main--sp {
    display: block;
}
.cv-main--sp .cv-main__right {
    width: 100%;
}

/* ----- Panel共通 (SP) ----- */
.cv-main--sp .cv-panel {
    min-height: 0;
    /* 背景は全幅、コンテンツはSP幅に収める */
    padding: 56px clamp(24px, calc(50% - 175px), 50%);
    box-sizing: border-box;
}
.cv-main--sp .cv-panel__title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 32px;
}

/* ----- Originality (SP) ----- */
.cv-main--sp .cv-originality {
    padding: 50px clamp(24px, calc(50% - 156px), 50%) 74px;
}
.cv-main--sp .cv-originality__lead {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.16em;
    text-align: center;
    margin: 0 0 108px;
}
.cv-main--sp .cv-originality .cv-panel__title {
    font-size: 23px;
    line-height: 1.15;
    margin-bottom: 36px;
}
.cv-main--sp .cv-originality__group {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 42px;
}
.cv-main--sp .cv-originality__group:last-child {
    margin-bottom: 0;
}
.cv-main--sp .cv-originality__cat {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 5px;
}
.cv-main--sp .cv-originality__grid {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}
.cv-main--sp .cv-originality__item {
    min-height: 51px;
    padding: 7px 13px;
    border-left-width: 4px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.45;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.cv-main--sp .cv-originality__illust {
    right: 8px;
    bottom: -10px;
    width: 97px;
}

/* ----- 3ステップ (SP) ----- */
.cv-main--sp .cv-steps {
    padding: 6px clamp(24px, calc(50% - 169px), 50%) 52px;
}
.cv-main--sp .cv-steps__head {
    margin-bottom: 43px;
}
.cv-main--sp .cv-steps__head img {
    max-width: 255px;
}
.cv-main--sp .cv-steps__list {
    width: 100%;
    gap: 34px;
}
.cv-main--sp .cv-steps__item {
    gap: 37px;
    align-items: center;
}
.cv-main--sp .cv-steps__item:not(:last-child) .cv-steps__badge::after {
    top: 42px;
    height: calc(100% + 78px);
    border-left-width: 1px;
}
.cv-main--sp .cv-steps__badge {
    width: 29px;
}
.cv-main--sp .cv-steps__card {
    max-width: none;
    padding: 12px 18px;
    border-radius: 5px;
}
.cv-main--sp .cv-steps__card-title {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 8px;
}
.cv-main--sp .cv-steps__card-sub {
    font-size: 9px;
    line-height: 1.55;
    margin-bottom: 10px;
}
.cv-main--sp .cv-steps__card-txt {
    font-size: 10px;
    line-height: 1.8;
}
.cv-main--sp .cv-steps__note {
    font-size: 6px;
    line-height: 1.5;
    margin-top: 10px;
    text-align: left;
}

@media (max-width: 767px) {
    /* ----- Sidebar ----- */
    .cv-sidebar { display: none; }

    /* ----- Panel共通 ----- */
    .cv-panel {
        min-height: 0;
        padding: 56px 24px;
    }
    .cv-panel__title {
        font-size: 26px;
        margin-bottom: 32px;
    }

    /* ----- Originality ----- */
    .cv-originality__grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .cv-originality__item {
        font-size: 12px;
        padding: 12px 10px;
    }

    /* ----- Steps ----- */
    .cv-steps__list {
        width: 100%;
    }
    .cv-steps__card {
        max-width: none;
    }
    .cv-steps__card-title {
        font-size: 16px;
    }
    .cv-steps__card-txt {
        font-size: 12px;
    }

    /* ----- Expression ----- */
    .cv-expression__point {
        flex-direction: column;
        gap: 20px;
    }
    .cv-expression__point-left {
        width: 100%;
    }
    .cv-expression__feat {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
    .cv-expression__feat-label,
    .cv-expression__feat-txt {
        flex: none;
    }
    .cv-expression__feat-label {
        font-size: 15px;
    }

    /* ----- Story ----- */
    .cv-story {
        background-attachment: scroll;
    }
    .cv-story__inner {
        padding: 60px 28px;
        max-width: none;
    }
    .cv-story__title {
        font-size: 20px;
        margin-bottom: 36px;
    }
    .cv-story__txt {
        font-size: 13px;
        line-height: 2.2;
        text-align: left;
    }

    /* ----- Event ----- */
    .cv-event__inner {
        padding: 60px 24px;
    }
    .cv-event__heading {
        font-size: 22px;
    }
    .cv-event__body {
        flex-direction: column;
        gap: 28px;
    }
    .cv-event__photo {
        width: 100%;
    }
    .cv-event__dtl-heading {
        font-size: 17px;
    }
    .cv-event__steps {
        gap: 28px;
    }
    .cv-event__step {
        font-size: 15px;
        gap: 14px;
    }
    .cv-event__step-badge {
        width: 56px;
    }
    .cv-event__sdgs {
        font-size: 15px;
        padding: 16px 20px;
    }

    /* ----- Other Cases ----- */
    .cv-other {
        padding: 56px 0 60px;
    }
    .cv-other__inner {
        padding: 0 20px;
    }
    .cv-other__heading {
        font-size: 16px;
        letter-spacing: 0.04em;
    }
    .cv-other__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }
    .cv-other__caption {
        font-size: 13px;
        letter-spacing: 0.04em;
    }

    /* ----- Contact ----- */
    .cv-contact__inner {
        padding: 56px 28px;
    }
    .cv-contact__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .cv-contact__illust {
        display: none;
    }
    .cv-contact__btn a {
        display: block;
        padding: 16px 0;
        text-align: center;
    }
}

/* ----- 表現のしやすさ (SP) ----- */
.cv-main--sp .cv-expression {
    padding: 60px clamp(21px, calc(50% - 177px), 50%) 60px;
}
.cv-main--sp .cv-expression .cv-panel__title {
    font-size: 23px;
    line-height: 1.35;
    margin-bottom: 26px;
}
.cv-main--sp .cv-expression__point {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.cv-main--sp .cv-expression__point-left {
    width: 46%;
}
.cv-main--sp .cv-expression__point-tag {
    font-size: 10px;
    line-height: 1.3;
    padding: 2px 14px;
    border-radius: 3px;
    margin-bottom: 6px;
}
.cv-main--sp .cv-expression__point-img {
    border-radius: 0;
}
.cv-main--sp .cv-expression__point-body {
    flex: 1;
    min-width: 0;
    padding-top: 13px;
}
.cv-main--sp .cv-expression__point-heading {
    font-size: 10px;
    line-height: 1.65;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.cv-main--sp .cv-expression__point-txt {
    font-size: 8px;
    line-height: 1.95;
    letter-spacing: 0.09em;
}
.cv-main--sp .cv-expression__list {
    gap: 7px;
}
.cv-main--sp .cv-expression__feat {
    flex-direction: row;
    gap: 0;
    align-items: center;
    min-height: 113px;
    padding: 24px 19px;
    border-radius: 4px;
}
.cv-main--sp .cv-expression__feat-label {
    flex: 0 0 42%;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.05em;
}
.cv-main--sp .cv-expression__feat-txt {
    flex: 1;
    font-size: 9px;
    line-height: 1.9;
    letter-spacing: 0.08em;
}

@media (max-width: 767px) {
    /* ----- Story (SP) ----- */
    .cv-story {
        min-height: 0;
        aspect-ratio: 1180 / 1810;
        align-items: flex-start;
        justify-content: center;
        padding: 88px 16px 40px;
        background-position: 50% 50%;
        background-attachment: scroll;
    }
    .cv-story__inner {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        padding: 0;
    }
    .cv-story__title {
        font-size: 22px;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0.12em;
        margin-bottom: 62px;
        text-align: center;
    }
    .cv-story__txt {
        font-size: 9px;
        font-weight: 400;
        line-height: 3;
        letter-spacing: 0.15em;
        text-align: center;
    }
}

@media (max-width: 767px) {
    /* ----- Event (SP) ----- */
    .cv-event {
        padding: 50px 0 62px;
    }
    .cv-event__inner {
        max-width: none;
        padding: 0 clamp(18px, calc(50% - 190px), 50%);
    }
    .cv-event__lead {
        font-size: 10px;
        font-weight: 400;
        line-height: 3.25;
        letter-spacing: 0.15em;
        text-align: center;
        margin: 0 0 75px;
    }
    .cv-event__heading {
        font-size: 24px;
        font-weight: 400;
        line-height: 1.4;
        letter-spacing: 0.16em;
        margin: 0 0 28px;
    }
    .cv-event__body {
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }
    .cv-event__photo {
        flex: 0 0 36%;
        width: auto;
        aspect-ratio: 1 / 1;
        border-radius: 7px;
    }
    .cv-event__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .cv-event__detail {
        flex: 1;
        min-width: 0;
    }
    .cv-event__dtl-heading {
        font-size: 10px;
        line-height: 1.5;
        letter-spacing: 0.1em;
        margin-bottom: 2px;
    }
    .cv-event__dtl-sub {
        font-size: 5px;
        line-height: 1.6;
        margin-bottom: 19px;
    }
    .cv-event__steps {
        gap: 12px;
        margin-bottom: 0;
    }
    .cv-event__step {
        gap: 9px;
        font-size: 8px;
        line-height: 1.5;
        letter-spacing: 0.12em;
        align-items: center;
    }
    .cv-event__step-badge {
        width: 27px;
    }
    .cv-event__sdgs {
        width: 61%;
        margin: 25px auto 0;
        padding: 10px 16px;
        border-radius: 4px;
        font-size: 10px;
        line-height: 1.55;
        letter-spacing: 0.14em;
    }
}

@media (max-width: 767px) {
    /* ----- Other Cases (SP) ----- */
    .cv-other {
        padding: 34px 0 52px;
    }
    .cv-other__inner {
        max-width: none;
        padding: 0 clamp(41px, calc(50% - 164px), 50%);
    }
    .cv-other__heading {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.65;
        letter-spacing: 0.12em;
        margin-bottom: 16px;
        white-space: nowrap;
    }
    .cv-other__grid {
        display: flex;
        flex-direction: column;
        gap: 37px;
    }
    .cv-other__img {
        aspect-ratio: 1025 / 591;
        border-radius: 7px;
        margin-bottom: 10px;
    }
    .cv-other__caption {
        font-size: 10px;
        line-height: 1.55;
        letter-spacing: 0.12em;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    /* ----- Contact (SP) ----- */
    .cv-contact {
        min-height: 0;
        align-items: flex-start;
        background-position: 50% 50%;
    }
    .cv-contact::before {
        background: rgba(0,0,0,0.4);
    }
    .cv-contact__inner {
        max-width: none;
        padding: 0 clamp(68px, calc(50% - 150px), 50%) 45px;
    }
    .cv-contact__btn {
        margin-bottom: 60px;
    }
    .cv-contact__btn a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 8px 8px;
        border-radius: 5px;
        font-size: 17px;
        line-height: 1.4;
        font-weight: 400;
        letter-spacing: 0.18em;
        text-align: center;
        transform: translateY(-50%);
    }
    .cv-contact__grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
    }
    .cv-contact__grid > div {
        width: 100%;
    }
    .cv-contact__label {
        border-top: 1px solid rgba(255,255,255,0.55);
        padding-top: 14px;
        margin-bottom: 15px;
        font-size: 10px;
        line-height: 1.4;
        letter-spacing: 0.22em;
    }
    .cv-contact__text {
        font-size: 10px;
        line-height: 2.4;
        letter-spacing: 0.15em;
    }
    .cv-contact__text--ruled {
        border-bottom: 1px solid rgba(255,255,255,0.55);
        padding-bottom: 18px;
    }
    .cv-contact__illust {
        display: block;
        padding: 28px 0 26px;
        text-align: center;
    }
    .cv-contact__illust img {
        width: 96px;
    }
}

/* ----- Ecforce shared CSS guards ----- */
.p-canvas {
    overflow: visible !important;
}

.p-canvas .cv-sidebar {
    top: var(--cv-header-offset) !important;
    height: calc(100vh - var(--cv-header-offset)) !important;
}

.p-canvas .cv-main {
    align-items: flex-start !important;
    overflow: visible !important;
}

.p-canvas .cv-main__left {
    align-self: flex-start !important;
}

.p-canvas .cv-main__left.is-fixed {
    position: fixed !important;
    top: 0 !important;
    left: var(--cv-main-left-x, 0) !important;
    width: var(--cv-main-left-w, 50vw) !important;
    height: var(--cv-main-left-h, 100vh) !important;
    z-index: 5;
}

.p-canvas .cv-main__left.is-absolute {
    position: absolute !important;
    top: var(--cv-main-left-y, 0) !important;
    left: 0 !important;
    width: var(--cv-main-left-w, 50%) !important;
    height: var(--cv-main-left-h, 100vh) !important;
    z-index: 5;
}

.p-canvas .cv-main__btn {
    opacity: 1 !important;
    transform: none !important;
}

.p-canvas .cv-main__catch,
.p-canvas .cv-originality__lead,
.p-canvas .cv-steps__card-title,
.p-canvas .cv-steps__card-txt,
.p-canvas .cv-steps__note,
.p-canvas .cv-expression__point-heading,
.p-canvas .cv-expression__feat-label,
.p-canvas .cv-story__title,
.p-canvas .cv-story__txt,
.p-canvas .cv-event__lead,
.p-canvas .cv-event__dtl-heading,
.p-canvas .cv-event__dtl-sub,
.p-canvas .cv-event__step,
.p-canvas .cv-other__heading,
.p-canvas .cv-other__caption,
.p-canvas .cv-contact__label,
.p-canvas .cv-contact__text,
.p-canvas .cv-expression__point-tag,
.p-canvas .cv-fv__sp-tagline p {
    color: #fff !important;
}

.p-canvas .cv-originality__item,
.p-canvas .cv-panel__title {
    color: #2A4A4A !important;
}

.p-canvas .cv-originality .cv-panel__title,
.p-canvas .cv-expression .cv-panel__title,
.p-canvas .cv-main--sp .cv-panel__title {
    color: #fff !important;
}

.p-canvas .cv-originality__cat,
.p-canvas .cv-steps__card-sub {
    color: #6dbd81 !important;
}

.p-canvas .cv-expression__point-txt,
.p-canvas .cv-expression__feat-txt {
    color: rgba(255,255,255,0.8) !important;
}

.p-canvas .cv-event__sdgs,
.p-canvas .cv-main__btn a {
    color: #507679 !important;
}

.p-canvas .cv-contact__btn a {
    color: #333 !important;
}

@media (max-width: 767px) {
    :root {
        --cv-header-offset: 66px;
    }
}
