:root {
    --m-blue: #4ABFEB;
    --m-blue-dark: #2B8FC4;
    --m-gold: #F5A623;
    --m-gold-dark: #E8941A;
    --m-orange: #EF6C00;
    --m-orange-light: #FF8F00;
    --m-navy: #1A3A5C;
    --m-navy-deep: #0F2438;
    --m-gray: #6B7B8D;
    --m-gray-light: #94A3B3;
    --m-light: #F4F8FB;
    --m-light-alt: #EAF0F6;
    --m-light-mid: #DCE6EF;
    --m-border: #E3EBF0;
    --m-border-dark: #D0DAE3;
    --m-white: #fff;
    --m-off-white: #FAFCFD;
    --m-radius: 16px;
    --m-radius-lg: 24px;
    --m-shadow: 0 4px 24px rgba(26, 58, 92, .08);
}

.tp {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--m-navy);
    line-height: 1.8;
    overflow-x: hidden;
}

.tp *,
.tp *::before,
.tp *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

.tp-hd {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: 800;
}

.tp-a {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}

.tp-a.--fl {
    transform: translateX(-50px);
}

.tp-a.--fr {
    transform: translateX(50px);
}

.tp-a.is-v {
    opacity: 1;
    transform: none;
}

.tp-a.--d1 {
    transition-delay: .1s;
}

.tp-a.--d2 {
    transition-delay: .2s;
}

.tp-a.--d3 {
    transition-delay: .3s;
}

.tp-a.--d4 {
    transition-delay: .4s;
}

.tp-sh {
    text-align: center;
    margin-bottom: 56px;
}

.tp-sh__en {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;
    color: var(--m-blue);
    padding: 6px 20px;
    border: 1.5px solid var(--m-blue);
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.tp-sh__title {
    font-size: clamp(24px, 4vw, 34px);
    letter-spacing: .05em;
    line-height: 1.5;
    margin-bottom: 16px;
}

.tp-sh__text {
    font-size: 15px;
    color: var(--m-gray);
    line-height: 2;
    max-width: 640px;
    margin: 0 auto;
}

.tp-sh.--on-dark .tp-sh__en {
    color: var(--m-blue);
    border-color: rgba(74, 191, 235, .4);
}

.tp-sh.--on-dark .tp-sh__title {
    color: var(--m-white);
}

.tp-sh.--on-dark .tp-sh__text {
    color: var(--m-gray-light);
}

.tp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 60px;
    transition: all .3s;
    letter-spacing: .04em;
}

.tp-btn__ar {
    display: inline-block;
    transition: transform .3s;
    font-size: 16px;
}

.tp-btn:hover .tp-btn__ar {
    transform: translateX(5px);
}

.tp-btn.--primary {
    background: linear-gradient(135deg, var(--m-blue), var(--m-blue-dark));
    color: #fff;
    box-shadow: 0 4px 18px rgba(74, 191, 235, .3);
}

.tp-btn.--primary:hover {
    box-shadow: 0 6px 24px rgba(74, 191, 235, .45);
    transform: translateY(-2px);
}

.tp-btn.--gold {
    background: linear-gradient(135deg, var(--m-gold), var(--m-gold-dark));
    color: #fff;
    box-shadow: 0 4px 18px rgba(245, 166, 35, .3);
}

.tp-btn.--gold:hover {
    box-shadow: 0 6px 24px rgba(245, 166, 35, .45);
    transform: translateY(-2px);
}

.tp-btn.--outline {
    background: var(--m-white);
    color: var(--m-navy);
    border: 2px solid var(--m-border-dark);
}

.tp-btn.--outline:hover {
    border-color: var(--m-blue);
    color: var(--m-blue);
    transform: translateY(-2px);
}

.tp-btn.--outline-blue {
    background: transparent;
    color: var(--m-blue);
    border: 2px solid var(--m-blue);
}

.tp-btn.--outline-blue:hover {
    background: var(--m-blue);
    color: #fff;
    transform: translateY(-2px);
}

.tp-c {
    text-align: center;
}

/* === 1. Issue === */
.tp-issue {
    background: var(--m-navy-deep);
    padding: 100px 24px 80px;
    position: relative;
    overflow: hidden;
}

.tp-issue::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(74, 191, 235, .06);
    pointer-events: none;
}

.tp-issue::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(245, 166, 35, .04);
    pointer-events: none;
}

.tp-issue__in {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.tp-issue__catch {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: .04em;
    color: var(--m-white);
    margin-bottom: 24px;
}

.tp-issue__catch em {
    font-style: normal;
    color: var(--m-blue);
    position: relative;
}

.tp-issue__catch em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(74, 191, 235, .25);
    border-radius: 4px;
    z-index: -1;
}

.tp-issue__lead {
    font-size: 15px;
    color: var(--m-gray-light);
    line-height: 2.4;
    max-width: 640px;
    margin: 0 auto 36px;
}

.tp-issue__highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--m-blue), var(--m-blue-dark));
    color: #fff;
    font-size: clamp(15px, 2.5vw, 18px);
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 60px;
    letter-spacing: .06em;
    box-shadow: 0 6px 24px rgba(74, 191, 235, .3);
}

/* === 2. Philosophy === */
.tp-phil {
    background: var(--m-white);
    padding: 80px 24px;
}

.tp-phil__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto;
}

.tp-phil__text {
    font-size: 15px;
    line-height: 2.1;
    color: var(--m-gray);
}

.tp-phil__text strong {
    color: var(--m-navy);
    font-weight: 800;
}

.tp-phil__strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-radius: var(--m-radius-lg);
    overflow: hidden;
}

.tp-phil__strip img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

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

    .tp-phil__strip img {
        height: 140px;
    }
}

/* === 代表の想い === */
.tp-ceo {
    background: var(--m-light);
    padding: 80px 24px;
    overflow: hidden;
}

.tp-ceo__in {
    max-width: 1060px;
    margin: 0 auto;
}

.tp-ceo__card {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: center;
    background: var(--m-white);
    border-radius: var(--m-radius-lg);
    padding: 48px;
    box-shadow: 0 8px 36px rgba(26, 58, 92, .06);
    border: 1px solid var(--m-border);
    transition: transform .35s, box-shadow .35s;
}

.tp-ceo__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 58, 92, .12);
}

.tp-ceo__img {
    border-radius: var(--m-radius-lg);
    overflow: hidden;
}

.tp-ceo__img img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform .4s;
}

.tp-ceo__card:hover .tp-ceo__img img {
    transform: scale(1.03);
}

.tp-ceo__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tp-ceo__label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    color: var(--m-blue);
    background: rgba(74, 191, 235, .1);
    padding: 5px 16px;
    border-radius: 20px;
    align-self: flex-start;
}

.tp-ceo__name {
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.4;
}

.tp-ceo__name small {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--m-gray);
    margin-top: 4px;
    letter-spacing: .04em;
}

.tp-ceo__text {
    font-size: 14px;
    line-height: 2.1;
    color: var(--m-gray);
}

.tp-ceo__text strong {
    color: var(--m-navy);
    font-weight: 700;
}

.tp-ceo__links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.tp-ceo__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--m-navy);
    border: 1.5px solid var(--m-border-dark);
    padding: 12px 28px;
    border-radius: 60px;
    text-decoration: none;
    transition: all .3s;
}

.tp-ceo__link:hover {
    border-color: var(--m-blue);
    color: var(--m-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(74, 191, 235, .15);
}

.tp-ceo__link .tp-btn__ar {
    display: inline-block;
    transition: transform .3s;
    font-size: 14px;
}

.tp-ceo__link:hover .tp-btn__ar {
    transform: translateX(5px);
}

@media(max-width: 768px) {
    .tp-ceo__card {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        gap: 28px;
    }

    .tp-ceo__img {
        max-width: 300px;
        margin: 0 auto;
    }

    .tp-ceo__links {
        flex-direction: column;
        gap: 12px;
    }

    .tp-ceo__link {
        width: 100%;
        justify-content: center;
    }
}

/* === 業種別 === */
.tp-industry {
    background: var(--m-light);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.tp-industry__in {
    max-width: 1060px;
    margin: 0 auto;
}

.tp-industry__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.tp-ind-card {
    background: var(--m-white);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 2px 16px rgba(26, 58, 92, .05);
    border: 1px solid var(--m-border);
    transition: transform .35s, box-shadow .35s;
}

.tp-ind-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 58, 92, .1);
}

.tp-ind-card__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    color: #fff;
    background: linear-gradient(135deg, var(--m-blue), var(--m-blue-dark));
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tp-ind-card__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--m-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 28px;
}

.tp-ind-card__title {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--m-navy);
    line-height: 1.5;
    margin-bottom: 24px;
}

.tp-ind-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.tp-ind-card__list li {
    font-size: 14px;
    line-height: 1.9;
    color: var(--m-gray);
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid var(--m-border);
    position: relative;
}

.tp-ind-card__list li:last-child {
    border-bottom: none;
}

.tp-ind-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--m-blue);
}

.tp-ind-card__note {
    padding: 20px 24px;
    background: var(--m-light);
    border-radius: 14px;
    font-size: 13px;
    line-height: 2;
    color: var(--m-gray);
}

.tp-ind-card__note strong {
    color: var(--m-blue);
    font-weight: 700;
}

.tp-industry__foot {
    margin-top: 36px;
    text-align: center;
    font-size: 13px;
    color: var(--m-gray);
    line-height: 1.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

    .tp-ind-card {
        padding: 32px 24px;
    }
}

/* === MASAが選ばれる理由 === */
.tp-str {
    background: var(--m-white);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.tp-str__in {
    max-width: 1060px;
    margin: 0 auto;
}

.tp-str__items {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 48px;
}

.tp-sc-row {
    display: grid;
    grid-template-columns: 100px 1fr 340px;
    gap: 32px;
    align-items: center;
}

.tp-sc-row.--reverse {
    grid-template-columns: 340px 1fr 100px;
}

.tp-sc-row.--reverse .tp-sc-num-side {
    order: 3;
}

.tp-sc-row.--reverse .tp-sc-content {
    order: 2;
}

.tp-sc-row.--reverse .tp-sc-photo {
    order: 1;
}

.tp-sc-num-side {
    text-align: center;
}

.tp-sc-num-side__num {
    display: block;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: var(--m-blue);
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
}

.tp-sc-num-side__keyword {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--m-gray);
    margin-top: 6px;
    text-transform: uppercase;
}

.tp-sc-content {
    background: var(--m-light);
    border-radius: var(--m-radius-lg);
    padding: 32px 36px;
}

.tp-sc-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--m-navy);
}

.tp-sc-content p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--m-gray);
    margin: 0;
}

.tp-sc-photo {
    border-radius: var(--m-radius-lg);
    overflow: hidden;
    box-shadow: var(--m-shadow);
}

.tp-sc-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

@media(max-width: 768px) {

    .tp-sc-row,
    .tp-sc-row.--reverse {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tp-sc-row .tp-sc-num-side {
        order: 0;
    }

    .tp-sc-row .tp-sc-content {
        order: 1;
    }

    .tp-sc-row .tp-sc-photo {
        order: 2;
    }

    .tp-sc-row.--reverse .tp-sc-num-side {
        order: 0;
    }

    .tp-sc-row.--reverse .tp-sc-content {
        order: 1;
    }

    .tp-sc-row.--reverse .tp-sc-photo {
        order: 2;
    }

    .tp-sc-photo img {
        height: 180px;
    }

    .tp-sc-content {
        padding: 24px;
    }
}

/* === MASAができること === */
.tp-can {
    background: var(--m-light);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.tp-can__in {
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tp-can__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tp-can-card {
    padding: 36px 32px;
    background: var(--m-white);
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(26, 58, 92, .05);
    transition: transform .35s, box-shadow .35s;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--m-border);
}

.tp-can-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    border-radius: 20px 0 0 20px;
}

.tp-can-card:nth-child(1)::before {
    background: linear-gradient(to bottom, #88D8F7, var(--m-blue));
}

.tp-can-card:nth-child(2)::before {
    background: linear-gradient(to bottom, #A8E6CF, #5BCFDB);
}

.tp-can-card:nth-child(3)::before {
    background: linear-gradient(to bottom, #FFD9A8, var(--m-gold));
}

.tp-can-card:nth-child(4)::before {
    background: linear-gradient(to bottom, #A8E6A8, #66BB6A);
}

.tp-can-card:nth-child(5)::before {
    background: linear-gradient(to bottom, #FFB88C, var(--m-orange));
}

.tp-can-card:nth-child(6)::before {
    background: linear-gradient(to bottom, #C8A8F0, #7E57C2);
}

.tp-can-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(26, 58, 92, .12);
}

.tp-can-card__title {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--m-navy);
}

.tp-can-card__text {
    font-size: 13px;
    line-height: 2;
    color: var(--m-gray);
}

@media(max-width: 768px) {
    .tp-can__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* === プロセス === */
.tp-svc {
    background: var(--m-white);
    padding: 100px 24px 80px;
    position: relative;
    overflow: hidden;
}

.tp-svc__in {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tp-timeline {
    position: relative;
    padding-left: 60px;
}

.tp-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--m-blue), var(--m-gold), var(--m-orange));
    border-radius: 2px;
}

.tp-tl-item {
    position: relative;
    margin-bottom: 56px;
    display: flex;
    gap: 36px;
    align-items: flex-start;
    background: var(--m-light);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--m-border);
    transition: box-shadow .35s;
}

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

.tp-tl-item:hover {
    box-shadow: 0 12px 40px rgba(26, 58, 92, .1);
}

.tp-tl-dot {
    position: absolute;
    left: -60px;
    top: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--m-white);
    border: 3px solid var(--m-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--m-blue);
    z-index: 2;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(26, 58, 92, .1);
}

.tp-tl-item:nth-child(2) .tp-tl-dot {
    border-color: #5BCFDB;
    color: #5BCFDB;
}

.tp-tl-item:nth-child(3) .tp-tl-dot {
    border-color: var(--m-gold);
    color: var(--m-gold);
}

.tp-tl-item:nth-child(4) .tp-tl-dot {
    border-color: var(--m-orange);
    color: var(--m-orange);
}

.tp-tl-item:hover .tp-tl-dot {
    background: var(--m-blue);
    color: #fff;
    box-shadow: 0 6px 24px rgba(74, 191, 235, .3);
}

.tp-tl-item:nth-child(2):hover .tp-tl-dot {
    background: #5BCFDB;
    box-shadow: 0 6px 24px rgba(91, 207, 219, .3);
}

.tp-tl-item:nth-child(3):hover .tp-tl-dot {
    background: var(--m-gold);
    box-shadow: 0 6px 24px rgba(245, 166, 35, .3);
}

.tp-tl-item:nth-child(4):hover .tp-tl-dot {
    background: var(--m-orange);
    box-shadow: 0 6px 24px rgba(239, 108, 0, .3);
}

.tp-tl-img {
    flex: 0 0 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(26, 58, 92, .08);
}

.tp-tl-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .4s;
}

.tp-tl-item:hover .tp-tl-img img {
    transform: scale(1.04);
}

.tp-tl-body {
    flex: 1;
    min-width: 0;
}

.tp-tl-step {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    color: var(--m-blue);
    background: rgba(74, 191, 235, .1);
}

.tp-tl-item:nth-child(2) .tp-tl-step {
    color: #5BCFDB;
    background: rgba(91, 207, 219, .1);
}

.tp-tl-item:nth-child(3) .tp-tl-step {
    color: var(--m-gold);
    background: rgba(245, 166, 35, .1);
}

.tp-tl-item:nth-child(4) .tp-tl-step {
    color: var(--m-orange);
    background: rgba(239, 108, 0, .1);
}

.tp-tl-title {
    font-size: clamp(17px, 2.5vw, 21px);
    margin-bottom: 10px;
    color: var(--m-navy);
}

.tp-tl-desc {
    font-size: 13px;
    line-height: 2.1;
    color: var(--m-gray);
}

.tp-tl-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--m-blue);
    text-decoration: none;
    transition: gap .3s;
}

.tp-tl-link:hover {
    gap: 8px;
}

@media(max-width: 768px) {
    .tp-timeline {
        padding-left: 48px;
    }

    .tp-tl-item {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .tp-tl-img {
        flex: none;
        max-width: 60%;
        margin: 0 auto;
    }

    .tp-tl-dot {
        left: -48px;
        width: 40px;
        height: 40px;
        font-size: 11px;
    }

    .tp-timeline::before {
        left: 18px;
    }
}

@media(max-width: 480px) {
    .tp-tl-img {
        max-width: 80%;
    }
}

/* === YouTube === */
.tp-video {
    background: var(--m-navy-deep);
    padding: 80px 24px;
    position: relative;
}

.tp-video__in {
    max-width: 800px;
    margin: 0 auto;
}

.tp-video__wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(0, 0, 0, .25);
}

.tp-video__wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* === 実績 === */
.tp-res {
    background: var(--m-light);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.tp-res__in {
    max-width: 1000px;
    margin: 0 auto;
}

.tp-res-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
    background: var(--m-white);
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 8px 36px rgba(26, 58, 92, .06);
    border: 1px solid var(--m-border);
    transition: transform .35s, box-shadow .35s;
    text-decoration: none;
    color: var(--m-navy);
}

.tp-res-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 58, 92, .12);
}

.tp-res-card__img {
    border-radius: 16px;
    overflow: hidden;
}

.tp-res-card__img img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform .4s;
}

.tp-res-card:hover .tp-res-card__img img {
    transform: scale(1.03);
}

.tp-res-card__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tp-res-card__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tp-res-card__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--m-blue);
    border: 1.5px solid var(--m-blue);
    border-radius: 20px;
    padding: 4px 16px;
}

.tp-res-card__ttl {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.6;
}

.tp-res-card__excerpt {
    font-size: 14px;
    line-height: 2;
    color: var(--m-gray);
}

.tp-res-card__date {
    font-size: 12px;
    color: var(--m-gray);
    opacity: .7;
}

.tp-res-card__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--m-blue);
    text-decoration: none;
    transition: gap .3s;
}

.tp-res-card__more:hover {
    gap: 10px;
}

.tp-res-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--m-gray);
}

@media(max-width: 768px) {
    .tp-res-card {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        gap: 24px;
    }
}

/* === お客様の声 === */
.tp-voice {
    background: var(--m-white);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.tp-voice__in {
    max-width: 1060px;
    margin: 0 auto;
}

.tp-voice__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.tp-vc {
    background: var(--m-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 58, 92, .06);
    transition: transform .35s, box-shadow .35s;
    text-decoration: none;
    color: var(--m-navy);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--m-border);
    position: relative;
}

.tp-vc:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(26, 58, 92, .12);
}

.tp-vc:first-child::before {
    content: 'PICK UP';
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    color: #fff;
    background: linear-gradient(135deg, var(--m-blue), var(--m-blue-dark));
    padding: 5px 16px;
    border-radius: 20px;
}

.tp-vc__img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.tp-vc__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.tp-vc:hover .tp-vc__img img {
    transform: scale(1.05);
}

.tp-vc__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tp-vc__company {
    font-size: 11px;
    font-weight: 700;
    color: var(--m-blue);
    margin-bottom: 6px;
}

.tp-vc__ttl {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 12px;
    flex: 1;
}

.tp-vc__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--m-blue);
    margin-top: 12px;
    transition: gap .3s;
}

.tp-vc:hover .tp-vc__more {
    gap: 8px;
}

@media(max-width: 768px) {
    .tp-voice__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto 48px;
    }
}

/* === メディア === */
.tp-media {
    background: var(--m-light-alt);
    padding: 100px 24px;
    position: relative;
}

.tp-media__in {
    max-width: 1060px;
    margin: 0 auto;
}

.tp-media .tp-sh__en {
    color: var(--m-blue);
    border-color: var(--m-blue);
}

.tp-media .tp-sh__title {
    color: var(--m-navy);
}

.tp-media .tp-sh__text {
    color: var(--m-gray);
}

.tp-media__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}

.tp-mc {
    background: var(--m-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 58, 92, .06);
    transition: transform .35s, box-shadow .35s;
    text-decoration: none;
    color: var(--m-navy);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--m-border);
}

.tp-mc:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(26, 58, 92, .12);
}

.tp-mc__img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.tp-mc__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.tp-mc:hover .tp-mc__img img {
    transform: scale(1.05);
}

.tp-mc__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tp-mc__ttl {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 12px;
    flex: 1;
    color: var(--m-navy);
}

.tp-mc__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--m-white);
    background: var(--m-gold);
    padding: 5px 14px;
    border-radius: 20px;
    align-self: flex-start;
}

@media(max-width: 768px) {
    .tp-media__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto 36px;
    }
}

/* note */
.tp-note {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--m-border);
}

.tp-note__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.tp-note__label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--m-navy);
}

.tp-note__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #41c9b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1;
}

.tp-note__more {
    font-size: 12px;
    font-weight: 700;
    color: var(--m-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .3s;
}

.tp-note__more:hover {
    gap: 8px;
}

.tp-note__list {
    display: flex;
    flex-direction: column;
}

.tp-note-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--m-white);
    border: 1px solid var(--m-border);
    border-bottom: none;
    text-decoration: none;
    color: var(--m-navy);
    transition: background .25s;
}

.tp-note-item:first-child {
    border-radius: 14px 14px 0 0;
}

.tp-note-item:last-child {
    border-bottom: 1px solid var(--m-border);
    border-radius: 0 0 14px 14px;
}

.tp-note-item:only-child {
    border-radius: 14px;
    border-bottom: 1px solid var(--m-border);
}

.tp-note-item:hover {
    background: var(--m-light);
}

.tp-note-item__badge {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #41c9b4, #36b5a0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1;
}

.tp-note-item__body {
    flex: 1;
    min-width: 0;
}

.tp-note-item__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--m-navy);
}

.tp-note-item__meta {
    font-size: 11px;
    color: var(--m-gray);
    margin-top: 2px;
}

.tp-note-item__arrow {
    flex-shrink: 0;
    font-size: 14px;
    color: var(--m-gray-light);
    transition: transform .25s, color .25s;
}

.tp-note-item:hover .tp-note-item__arrow {
    transform: translateX(4px);
    color: var(--m-blue);
}

@media(max-width: 768px) {
    .tp-note-item__title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* SNS 3×2 grid */
.tp-sns-section {
    margin-top: 48px;
}

.tp-sns__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1060px;
    margin: 0 auto;
}

.tp-sns-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--m-white);
    border: 1.5px solid var(--m-border);
    border-radius: 16px;
    padding: 18px 20px;
    text-decoration: none;
    color: var(--m-navy);
    transition: all .3s;
}

.tp-sns-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(26, 58, 92, .1);
    border-color: var(--m-blue);
}

.tp-sns-card.--disabled {
    pointer-events: none;
    opacity: .6;
}

.tp-sns-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tp-sns-card__icon.--note {
    background: #41c9b4;
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1;
}

.tp-sns-card__icon.--ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.tp-sns-card__icon.--ig svg {
    width: 22px;
    height: 22px;
}

.tp-sns-card__icon.--x {
    background: #1A1A1A;
}

.tp-sns-card__icon.--x svg {
    width: 20px;
    height: 20px;
}

.tp-sns-card__icon.--line {
    background: #06C755;
}

.tp-sns-card__icon.--line svg {
    width: 22px;
    height: 22px;
}

.tp-sns-card__icon.--yt {
    background: #FF0000;
}

.tp-sns-card__icon.--yt svg {
    width: 22px;
    height: 22px;
}

.tp-sns-card__icon.--fb {
    background: #1877F2;
}

.tp-sns-card__icon.--fb svg {
    width: 22px;
    height: 22px;
}

.tp-sns-card__info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.tp-sns-card__name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--m-navy);
}

.tp-sns-card__desc {
    font-size: 11px;
    color: var(--m-gray);
    margin-top: 3px;
    line-height: 1.4;
}

.tp-sns-card__soon {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    color: var(--m-gold);
    background: rgba(245, 166, 35, .12);
    padding: 3px 10px;
    border-radius: 8px;
    margin-top: 4px;
}

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

@media(max-width: 480px) {
    .tp-sns__grid {
        grid-template-columns: 1fr;
    }
}

/* === ユーティリティ === */
.tp-a.--fl,
.tp-a.--fr {
    transform: translateY(30px);
}

@media(max-width: 768px) {

    .tp-a.--fl,
    .tp-a.--fr {
        transform: translateY(30px);
    }
}

@media(max-width: 480px) {
    .tp-ind-card {
        padding: 28px 20px;
    }
}

@media(prefers-reduced-motion: reduce) {
    .tp-a {
        opacity: 1;
        transform: none;
        transition: none;
    }
}