@charset "utf-8";


.grecaptcha-badge {
    visibility: hidden;
}

/* ========================================
   CSS変数（:root）
   ======================================== */
:root {
    /* カラー（テキスト） */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-lighter: #999999;
    --color-bg: #ffffff;
    --color-bg-section: #F8F9FA;
    --color-bg-section-alt: #F5F5F5;
    --color-border: #CCCCCC;
    --color-border-light: #E5E5E5;

    /* アクセントカラー */
    --color-accent: #00AFED;
    --color-accent-hover: #0099D4;

    /* フォント */
    --font-family-base: "Noto Sans JP", "serif";
    --font-family-en: "Outfit", "serif";
    --font-size-base: 15px;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --line-height-base: 1.5;

    /* コンテナサイズ */
    --container-sm: 800px;
    --container-md: 960px;
    --container: 1100px;
    --container-lg: 1200px;
    --container-xl: 1300px;

    /* パディング */
    --padding-container: 20px;
    --padding-container-sp: 20px;
    --padding-header: 40px;
    --padding-header-sp: 20px;

    /* 余白 */
    --spacing-xs: 5px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 64px;
    --spacing-xxl: 80px;

    /* ブレークポイント */
    --breakpoint-sp: 600px;
    --breakpoint-tablet: 768px;
    --breakpoint-pc: 1080px;
}

/* ========================================
   基本設定（base）
   ======================================== */
body {
    font-family: var(--font-family-base);
    color: var(--color-text);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-base);
    font-size: var(--font-size-base);
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
}

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

/* ========================================
   コンテナ/ラッパー
   ======================================== */
/* コンテナ（標準） */
.container {
    width: 100%;
    padding: 0 var(--padding-container);
    margin: 0 auto;
    max-width: calc(var(--container) + (var(--padding-container) * 2));
}

@media screen and (max-width: 600px) {
    .container {
        padding: 0 var(--padding-container-sp);
    }
}

/* 小サイズコンテナ */
.container-sm {
    width: 100%;
    padding: 0 var(--padding-container);
    margin: 0 auto;
    max-width: calc(var(--container-sm) + (var(--padding-container) * 2));
}

@media screen and (max-width: 600px) {
    .container-sm {
        padding: 0 var(--padding-container-sp);
    }
}

/* 中サイズコンテナ */
.container-md {
    width: 100%;
    padding: 0 var(--padding-container);
    margin: 0 auto;
    max-width: calc(var(--container-md) + (var(--padding-container) * 2));
}

@media screen and (max-width: 600px) {
    .container-md {
        padding: 0 var(--padding-container-sp);
    }
}

/* 大サイズコンテナ */
.container-lg {
    width: 100%;
    padding: 0 var(--padding-container);
    margin: 0 auto;
    max-width: calc(var(--container-lg) + (var(--padding-container) * 2));
}

@media screen and (max-width: 600px) {
    .container-lg {
        padding: 0 var(--padding-container-sp);
    }
}

/* 特大サイズコンテナ */
.container-xl {
    width: 100%;
    padding: 0 var(--padding-container);
    margin: 0 auto;
    max-width: calc(var(--container-xl) + (var(--padding-container) * 2));
}

@media screen and (max-width: 600px) {
    .container-xl {
        padding: 0 var(--padding-container-sp);
    }
}

/* ========================================
   セクション
   ======================================== */
.section {
    padding: 160px 0;
}

@media screen and (max-width: 600px) {
    .section {
        padding: 80px 0;
    }
}

.section--alt {
    background: var(--color-bg-section-alt);
}

/* ========================================
   セクションタイトル（見出し）
   ======================================== */
.m-section-ttl {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.03em;
    text-align: center;
    margin-bottom: 64px;
    color: var(--color-text);
}

@media screen and (max-width: 600px) {
    .m-section-ttl {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

.m-section-ttl span {
    display: block;
    font-size: 16px;
    font-weight: normal;
    font-family: var(--font-family-en);
    color: var(--color-accent);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media screen and (max-width: 600px) {
    .m-section-ttl span {
        font-size: 14px;
    }
}

/* 共通セクションタイトル（大見出し） */
.m-section-title {
    font-size: 64px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--color-text);
    font-family: var(--font-family-en);
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.m-section-title__en {
    display: block;
    overflow: hidden;
}

.m-section-title__ja {
    display: block;
    font-size: 16px;
    font-weight: normal;
    color: var(--color-accent);
    font-family: var(--font-family-base);
    letter-spacing: 0.03em;
    margin-bottom: 4px;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
    .m-section-title {
        font-size: 42px;
        margin-bottom: 24px;
    }

    .m-section-title__ja {
        font-size: 14px;
        margin-bottom: 0;
    }
}

/* 共通VIEW MOREボタン */
.m-view-more-btn {
    margin-top: 80px;
}

@media screen and (max-width: 600px) {
    .m-view-more-btn {
        margin-top: 56px;
    }
}

.m-view-more-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-family-en);
    letter-spacing: 0.05em;
}

.m-view-more-link:hover {
    color: var(--color-accent);
}

.m-view-more-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

@media screen and (min-width: 769px) {
    .m-view-more-link svg {
        width: 40px;
        height: 40px;
    }
}

.m-view-more-link:hover svg {
    transform: translateX(4px);
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent !important;
    z-index: 1002;
    transition: background 0.3s ease;
}

.header.is-scrolled {
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}



@media screen and (max-width: 600px) {
    .header.is-menu-open {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

@media screen and (max-width: 600px) {
    .header.is-menu-open .sp-hamburger__line {
        background: #333 !important;
        box-shadow: none !important;
    }
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    width: 100%;
    padding: 0 var(--padding-header);
    margin: 0 auto;
}

@media screen and (max-width: 600px) {
    .header__inner {
        padding: 0 var(--padding-header-sp);
    }
}

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

.header__logo img {
    height: 32px;
    width: auto;
    filter: brightness(0);
    transition: filter 0.3s ease;
}

.header.is-in-mv .header__logo img {
    filter: brightness(0) invert(1);
}

.pc-nav {
    display: block;
}

@media screen and (max-width: 600px) {
    .pc-nav {
        display: none;
    }
}

.header__nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.header__nav-item a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1.5px solid transparent;
    transition: color 0.3s ease;
    font-family: var(--font-family-en);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header__nav-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1.5px;
    width: 100%;
    height: 1.5px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.header__nav-item a:hover::after {
    transform: scaleX(1);
}

.header.is-in-mv .header__nav-item a {
    color: #fff;
}

.header__cta {
    display: flex;
    align-items: center;
}

.header__cta-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--color-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: bold;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.header__cta-btn:hover {
    opacity: 0.8;
}

@media screen and (max-width: 600px) {
    .pc-cta {
        display: none;
    }
}

.sp-hamburger {
    display: none;
    position: relative;
    width: 32px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    mix-blend-mode: difference;
}

@media screen and (max-width: 600px) {
    .sp-hamburger {
        display: block;
    }
}

.sp-hamburger__line {
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center center;
}

.header.is-in-mv .sp-hamburger__line {
    background: #fff;
}

.sp-hamburger__line:nth-child(1) {
    top: 0;
    width: 100%;
}

.sp-hamburger__line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    width: 75%;
}

.sp-hamburger__line:nth-child(3) {
    bottom: 0;
    width: 50%;
}

.sp-hamburger.is-active .sp-hamburger__line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(35deg);
    transform-origin: center center;
    width: 100%;
}

.sp-hamburger.is-active .sp-hamburger__line:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scale(0);
    transform-origin: center center;
}

.sp-hamburger.is-active .sp-hamburger__line:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-35deg);
    transform-origin: center center;
    width: 100%;
}

/* SP用ナビゲーション（パターンB） */
.sp-nav--pattern-b {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
    pointer-events: none;
}

.sp-nav--pattern-b.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sp-nav--pattern-b:not(.is-open) {
    display: none !important;
}

.sp-nav--pattern-b .sp-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.sp-nav--pattern-b.is-open .sp-nav__overlay {
    opacity: 1;
}

.sp-nav--pattern-b .sp-nav__content {
    position: relative;
    background: #fff;
    width: 85%;
    max-width: 400px;
    height: 100%;
    margin-left: auto;
    padding: 100px 40px 60px;
    z-index: 2;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sp-nav--pattern-b.is-open .sp-nav__content {
    transform: translateX(0);
}

.sp-nav--pattern-b .sp-nav__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sp-nav--pattern-b .sp-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-nav--pattern-b .sp-nav__item {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.sp-nav--pattern-b.is-open .sp-nav__item {
    opacity: 1;
    transform: translateX(0);
}

.sp-nav--pattern-b.is-open .sp-nav__item:nth-child(1) {
    transition-delay: 0.2s;
}

.sp-nav--pattern-b.is-open .sp-nav__item:nth-child(2) {
    transition-delay: 0.25s;
}

.sp-nav--pattern-b.is-open .sp-nav__item:nth-child(3) {
    transition-delay: 0.3s;
}

.sp-nav--pattern-b.is-open .sp-nav__item:nth-child(4) {
    transition-delay: 0.35s;
}

.sp-nav--pattern-b.is-open .sp-nav__item:nth-child(5) {
    transition-delay: 0.4s;
}

.sp-nav--pattern-b .sp-nav__item a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.sp-nav--pattern-b .sp-nav__en {
    font-family: var(--font-family-en);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.sp-nav--pattern-b .sp-nav__ja {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-lighter);
    margin-top: 4px;
    letter-spacing: 0.1em;
}

.sp-nav--pattern-b .sp-nav__item a:hover .sp-nav__en {
    color: var(--color-accent);
}

.sp-nav--pattern-b .sp-nav__line {
    margin-top: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.sp-nav--pattern-b.is-open .sp-nav__line {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.45s;
}

.sp-nav--pattern-b .sp-nav__line-link {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background-color: #06C755;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.sp-nav--pattern-b .sp-nav__line-link:hover {
    opacity: 0.7;
}

.sp-nav--pattern-b .sp-nav__line-img {
    display: block;
    width: 24px;
    height: 24px;
    border: 0;
    object-fit: contain;
}

.sp-nav--pattern-b .sp-nav__line-text {
    letter-spacing: 0.05em;
}

@media screen and (max-width: 600px) {
    .sp-nav--pattern-b {
        display: block;
    }
}

/* ========================================
   メインビジュアル
   ======================================== */
.top-mv {
    position: relative;
    width: 100%;
    height: 100svh;
    overflow: hidden;
}

.top-mv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    pointer-events: none;
}

.top-mv::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.03) 8%,
            rgba(255, 255, 255, 0.08) 16%,
            rgba(255, 255, 255, 0.15) 24%,
            rgba(255, 255, 255, 0.25) 32%,
            rgba(255, 255, 255, 0.38) 40%,
            rgba(255, 255, 255, 0.5) 48%,
            rgba(255, 255, 255, 0.62) 56%,
            rgba(255, 255, 255, 0.72) 64%,
            rgba(255, 255, 255, 0.8) 72%,
            rgba(255, 255, 255, 0.88) 80%,
            rgba(255, 255, 255, 0.94) 88%,
            rgba(255, 255, 255, 0.98) 94%,
            rgba(255, 255, 255, 1) 100%);
    filter: blur(0px);
    -webkit-filter: blur(0px);
    z-index: 3;
    pointer-events: none;
}

.top-mv__slider {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    z-index: 1;
    overflow: hidden;
    transform: translate(-50%, -50%) rotate(10deg);
    transform-origin: center center;
}

.top-mv__columns {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    width: 100%;
    height: 100%;
    gap: 0;
    transform: translateX(-12.5%);
}

@media screen and (max-width: 600px) {
    .top-mv__columns {
        grid-template-columns: repeat(5, 1fr);
        transform: translateX(-5%);
    }
}

.top-mv__column {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 600px) {

    .top-mv__column:nth-child(6),
    .top-mv__column:nth-child(7),
    .top-mv__column:nth-child(8) {
        display: none;
    }
}

.top-mv__column-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: scrollDown 360s linear infinite;
    animation-play-state: paused;
    will-change: transform;
}

@media screen and (max-width: 600px) {
    .top-mv__column-inner {
        animation-duration: 240s;
    }
}

.top-mv__column-inner--reverse {
    animation: scrollUp 360s linear infinite;
    animation-play-state: paused;
}

@media screen and (max-width: 600px) {
    .top-mv__column-inner--reverse {
        animation-duration: 240s;
    }
}

.top-mv__column-inner.is-animated,
.top-mv__column-inner--reverse.is-animated {
    animation-play-state: running;
}

/* 各カラムに異なるアニメーション遅延を設定（途中から開始） */
.top-mv__column:nth-child(1) .top-mv__column-inner {
    animation-delay: -5s;
}

.top-mv__column:nth-child(2) .top-mv__column-inner {
    animation-delay: -10s;
}

.top-mv__column:nth-child(3) .top-mv__column-inner {
    animation-delay: -15s;
}

.top-mv__column:nth-child(4) .top-mv__column-inner {
    animation-delay: -20s;
}

.top-mv__column:nth-child(1) .top-mv__column-inner--reverse {
    animation-delay: -8s;
}

.top-mv__column:nth-child(2) .top-mv__column-inner--reverse {
    animation-delay: -12s;
}

.top-mv__column:nth-child(3) .top-mv__column-inner--reverse {
    animation-delay: -18s;
}

.top-mv__column:nth-child(4) .top-mv__column-inner--reverse {
    animation-delay: -22s;
}

.top-mv__img {
    width: 100%;
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
    position: relative;
    contain: layout style paint;
}

.top-mv__img img {
    width: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }

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

@keyframes scrollUp {
    0% {
        transform: translateY(-50%);
    }

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


.top-mv__content {
    position: absolute;
    top: 60%;
    left: 5vw;
    text-align: left;
    color: #fff;
    z-index: 2;
    max-width: 600px;
}

@media screen and (max-width: 600px) {
    .top-mv__content {
        left: 5vw;
        max-width: 90%;
    }
}

.top-mv__title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 24px rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 600px) {
    .top-mv__title {
        font-size: 32px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6), 0 3px 18px rgba(0, 0, 0, 0.8);
    }
}

.top-mv__subtitle {
    font-size: 18px;
    line-height: 1.6;
    font-family: var(--font-family-en);
    letter-spacing: 0.1em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6), 0 2px 16px rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 600px) {
    .top-mv__subtitle {
        font-size: 16px;
    }
}

/* ========================================
   コンセプトセクション
   ======================================== */
.top-concept {
    position: relative;
    overflow: hidden;
}

.top-concept__content {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: left;
}

.top-concept__text {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-text);
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 600px) {
    .top-concept__text {
        font-size: 20px;
        margin-bottom: 0px;
    }
}

.top-concept__desc {
    font-size: 16px;
    margin-top: 2em;
    line-height: 2.5;
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 600px) {
    .top-concept__desc {
        font-size: 15px;
    }
}

/* ========================================
   グリッドレイアウト
   ======================================== */
.m-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .m-grid-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media screen and (max-width: 600px) {
    .m-grid-3col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ========================================
   画像ホバー拡大
   ======================================== */
.m-scale-change {
    cursor: pointer;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

.m-scale-change img {
    height: 100%;
    transition: transform 0.4s ease;
    width: 100%;
}

.m-scale-change:hover img {
    transform: scale(1.05);
}

/* カード全体にホバーした時も画像拡大 */
.top-service__card:hover .m-scale-change img {
    transform: scale(1.05);
}

/* リンク全体にホバーした時も画像拡大 */
.top-works__card-link:hover .m-scale-change img {
    transform: scale(1.05);
}

/* ========================================
   事業内容セクション
   ======================================== */
.top-service {
    background: linear-gradient(135deg, rgba(0, 175, 237, 0.05) 0%, rgba(0, 175, 237, 0.1) 100%);
    position: relative;
}


.top-service__left {
    width: 100%;
}

.top-service__left-inner {
    position: static;
}

.top-service__header {
    margin-bottom: 48px;
}

@media screen and (max-width: 600px) {
    .top-service__header {
        margin-bottom: 32px;
    }
}

.top-service__desc {
    font-size: 16px;
    line-height: 2;
    color: var(--color-text);
    margin-top: 32px;
}

@media screen and (max-width: 600px) {
    .top-service__desc {
        font-size: 15px;
        line-height: 1.8;
        margin-top: 24px;
    }
}

.top-service__left .m-view-more-btn {
    text-align: center;
}



.top-service__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
    .top-service__list {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }
}

.top-service__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
}

@media screen and (max-width: 768px) {
    .top-service__image-wrapper {
        height: 60vh;
        min-height: 400px;
    }
}


.top-service__card {
    background: var(--color-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.top-service__card-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.6;
    overflow: hidden;
}

.top-service__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-service__card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.top-service__card.is-active {
    border-color: var(--color-accent);
    background: rgba(0, 175, 237, 0.03);
}

@media screen and (max-width: 768px) {
    .top-service__card.is-active {
        border-color: transparent;
        background: var(--color-bg);
    }
}


.top-service__card-number {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: var(--color-accent);
    font-family: var(--font-family-en);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.top-service__card-info {
    padding: 24px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 600px) {
    .top-service__card-info {
        padding: 20px;
    }
}

.top-service__card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.top-service__card-link:hover .top-service__card-title {
    color: var(--color-accent);
}

@media screen and (max-width: 768px) {
    .top-service__card-link:hover .top-service__card-title {
        color: var(--color-text);
    }
}

@media screen and (max-width: 600px) {
    .top-service__card-title {
        font-size: 18px;
    }
}

.top-service__card-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-top: 12px;
}

@media screen and (max-width: 600px) {
    .top-service__card-text {
        font-size: 13px;
    }
}

@media screen and (max-width: 600px) {
    .top-service__card-text {
        font-size: 13px;
    }
}

/* ========================================
   もっと見るボタン
   ======================================== */
.m-more-btn {
    margin-top: 60px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .m-more-btn {
        margin-top: 40px;
    }
}

.m-more-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    max-width: 400px;
    width: 100%;
    transition: all 0.3s ease;
}

.m-more-btn a:hover {
    background: var(--color-accent);
    color: #FFFFFF;
    border-color: var(--color-accent);
    opacity: 1;
}

@media screen and (max-width: 600px) {
    .m-more-btn a {
        font-size: 14px;
        padding: 10px 24px;
    }
}

.m-more-btn--center a {
    display: flex;
    margin: 0 auto;
    justify-content: center;
}

/* ========================================
   制作事例セクション
   ======================================== */
.top-works__content {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .top-works__content {
        flex-direction: column;
        gap: 40px;
    }

    .top-works__content .u-sp-only {
        text-align: center;
        display: flex;
        justify-content: center;
        margin: 0 auto;
        margin-top: 30px;
        align-items: center;
    }
}

.top-works__left {
    flex: 0 0 400px;
    max-width: 400px;
}

@media screen and (max-width: 768px) {
    .top-works__left {
        flex: 1;
        max-width: 100%;
    }
}


.top-works__desc {
    font-size: 16px;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
    .top-works__desc {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 32px;
    }
}

.top-works__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

@media screen and (max-width: 600px) {
    .top-works__categories {
        margin-bottom: 2px;
        gap: 10px;
    }
}

.top-works__category-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family-en);
    letter-spacing: 0.05em;
}

@media screen and (max-width: 600px) {
    .top-works__category-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}

.top-works__category-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.top-works__category-btn.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}


.top-works__right {
    flex: 1;
    min-width: 0;
}

.top-works__cards-wrapper {
    max-height: 800px;
    overflow-y: auto;
    padding-right: 16px;
}

@media screen and (max-width: 768px) {
    .top-works__cards-wrapper {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
}

/* スクロールバーのスタイリング */
.top-works__cards-wrapper::-webkit-scrollbar {
    width: 4px;
}

.top-works__cards-wrapper::-webkit-scrollbar-track {
    background: var(--color-bg-section-alt);
    border-radius: 2px;
}

.top-works__cards-wrapper::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 2px;
}

.top-works__cards-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-hover);
}

.top-works__cards-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}



.top-works__card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
}

.top-works__card.is-hidden {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
}

.top-works__card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.top-works__card-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
    background: var(--color-bg-section-alt);
}

.top-works__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-works__card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.top-works__card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-light);
    font-family: var(--font-family-en);
    letter-spacing: 0.05em;
    line-height: 1;
}

.top-works__card-year,
.top-works__card-category,
.top-works__card-divider {
    line-height: 1;
}

.top-works__card-divider {
    color: var(--color-border);
}

.top-works__card-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text);
}

@media screen and (max-width: 600px) {
    .top-works__card-title {
        font-size: 16px;
    }
}

/* ========================================
   フレックス2カラム
   ======================================== */
.m-flex-2col {
    display: flex;
    gap: 48px;
    align-items: center;
}

.m-flex-2col>* {
    flex: 1;
}

@media screen and (max-width: 768px) {
    .m-flex-2col {
        flex-direction: column;
        gap: 32px;
    }
}

/* ========================================
   ABOUTセクション
   ======================================== */
.top-about__img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
}

.top-about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-about__subtitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
    color: var(--color-text);
}

@media screen and (max-width: 600px) {
    .top-about__subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.top-about__desc {
    font-size: 16px;
    line-height: 2;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

@media screen and (max-width: 600px) {
    .top-about__desc {
        font-size: 15px;
        line-height: 1.8;
    }
}

.top-about__btn,
.top-about .m-view-more-btn {
    text-align: right;
}

@media screen and (max-width: 600px) {

    .top-about__btn,
    .top-about .m-view-more-btn {
        text-align: center;
    }
}

/* ========================================
   ボタン
   ======================================== */
.button {
    display: inline-block;
    padding: 12px 32px;
    background: var(--color-accent);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    transition: opacity 0.3s;
}

.button:hover {
    opacity: 0.8;
}

@media screen and (max-width: 600px) {
    .button {
        font-size: 14px;
        padding: 10px 24px;
    }
}

/* ========================================
   お知らせセクション
   ======================================== */
.top-news__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 1080px) {
    .top-news__list {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .top-news__list {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .top-news__list {
        flex-direction: column;
        gap: 32px;
    }
}

.top-news__item {
    width: calc((100% - 48px) / 3);
}

@media screen and (max-width: 1080px) {
    .top-news__item {
        width: calc((100% - 48px) / 3);
    }
}

@media screen and (max-width: 768px) {
    .top-news__item {
        width: calc((100% - 48px) / 3);
    }
}

@media screen and (max-width: 600px) {
    .top-news__item {
        width: 100%;
    }
}

.top-news__link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 1080px) {
    .top-news__link {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .top-news__link {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .top-news__link {
        width: 100%;
    }
}

.top-news__link:hover {
    opacity: 0.8;
}

.top-news__link:hover .top-news__title {
    color: var(--color-accent);
}

.top-news__thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f0f0f0;
}

@media screen and (max-width: 1080px) {
    .top-news__thumbnail {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .top-news__thumbnail {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .top-news__thumbnail {
        width: 100%;
    }
}

.top-news__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.top-news__link:hover .top-news__thumbnail img {
    transform: scale(1.05);
}

.top-news__date {
    display: block;
    font-size: 14px;
    color: var(--color-text-light);
    font-family: var(--font-family-en);
}

@media screen and (max-width: 1080px) {
    .top-news__date {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .top-news__date {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .top-news__date {
        font-size: 13px;
    }
}

.top-news__info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.top-news__category-divider {
    font-size: 12px;
    color: var(--color-border);
}

.top-news__category {
    font-size: 14px;
    color: var(--color-text-light);
}

@media screen and (max-width: 600px) {
    .top-news__category {
        font-size: 13px;
    }
}

.top-news__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

@media screen and (max-width: 1080px) {
    .top-news__title {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .top-news__title {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    .top-news__title {
        font-size: 15px;
    }
}

.top-news .m-section-title {
    text-align: left;
    margin-bottom: 40px;
}

.top-news__filter {
    margin-bottom: 48px;
}

@media screen and (max-width: 600px) {
    .top-news__filter {
        margin-bottom: 32px;
    }
}

.top-news__category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
}

@media screen and (max-width: 600px) {
    .top-news__category-list {
        gap: 10px;

    }
}

.top-news__category-btn {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--color-border);
    border-radius: 40px;
    background: transparent;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family-en);
    letter-spacing: 0.05em;
}

@media screen and (max-width: 600px) {
    .top-news__category-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}

.top-news__category-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.top-news__category-btn.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.top-news__content {
    transition: opacity 0.3s ease;
}

.top-news__empty {
    padding: 40px 0;
    text-align: center;
    color: var(--color-text-light);
}

.top-news .m-view-more-btn {
    text-align: center;
}

.top-instagram__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.top-instagram__header .m-section-title {
    margin-bottom: 0;
}

.top-instagram__header .m-view-more-btn {
    margin-top: 0;
}

@media screen and (max-width: 1080px) {
    .top-instagram__header {
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 768px) {
    .top-instagram__header {
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 600px) {
    .top-instagram__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 24px;
    }
}

.top-instagram__footer {
    margin-top: 40px;
}

@media screen and (max-width: 1080px) {
    .top-instagram__footer {
        margin-top: 32px;
    }
}

@media screen and (max-width: 768px) {
    .top-instagram__footer {
        margin-top: 32px;
    }
}

@media screen and (max-width: 600px) {
    .top-instagram__footer {
        margin-top: 56px;
    }

    .top-instagram__footer .m-view-more-btn {
        margin-top: 0;
        text-align: center;
    }
}

/* ========================================
   共通ユーティリティ
   ======================================== */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

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

@media screen and (max-width: 600px) {
    .u-sp-only {
        display: block;
    }
}

/* ========================================
   お知らせ＆ブログ一覧ページ
   ======================================== */
.p-news-list {
    padding: 100px 0;
}

@media screen and (max-width: 1080px) {
    .p-news-list {
        padding: 80px 0;
    }
}

@media screen and (max-width: 768px) {
    .p-news-list {
        padding: 60px 0;
    }
}

@media screen and (max-width: 600px) {
    .p-news-list {
        padding: 40px 0;
    }
}

.p-news-list__category {
    margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
    .p-news-list__category {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 600px) {
    .p-news-list__category {
        margin-bottom: 30px;
    }
}

.p-news-list__category-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
}

@media screen and (max-width: 600px) {
    .p-news-list__category-list {
        justify-content: flex-start;
        gap: 10px;
    }
}

.p-news-list__category-item a {
    display: block;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: var(--font-family-en);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media screen and (max-width: 600px) {
    .p-news-list__category-item a {
        padding: 8px 16px;
        font-size: 13px;
    }
}

.p-news-list__category-item.is-active a {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.p-news-list__category-item a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.p-news-list__category-item.is-active a:hover {
    color: #fff;
}

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

@media screen and (max-width: 1080px) {
    .p-news-list__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .p-news-list__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .p-news-list__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 32px 16px;
    }
}

.p-news-list__card {
    height: 100%;
}

.p-news-list__card {
    height: 100%;
}

.p-news-list__card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: opacity 0.3s ease;
}

.p-news-list__card-link:hover {
    opacity: 1;
}

.p-news-list__card-link:hover .p-news-list__card-title {
    color: var(--color-accent);
}

.p-news-list__card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 16px;
}

.p-news-list__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.p-news-list__card-link:hover .p-news-list__card-img img {
    transform: scale(1.05);
}

.p-news-list__card-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    line-height: 1;
}

.p-news-list__card-date {
    font-size: 14px;
    color: var(--color-text-light);
    font-family: var(--font-family-en);
    line-height: 1;
}

.p-news-list__card-category-divider {
    color: var(--color-border);
    font-size: 14px;
    line-height: 1;
}

.p-news-list__card-category {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1;
    font-weight: 400;
}

.p-news-list__card-title {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

@media screen and (max-width: 600px) {
    .p-news-list__card-title {
        font-size: 14px;
    }
}

.p-news-list__empty {
    text-align: center;
    padding: 60px 0;
    color: var(--color-text-light);
}

/* ========================================
   ページネーション
   ======================================== */
.m-pagination {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 600px) {
    .m-pagination {
        margin-top: 48px;
    }
}

.m-pagination ul,
.m-pagination li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.m-pagination ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width: 600px) {
    .m-pagination ul {
        gap: 6px;
    }
}

.m-pagination .page-numbers:not(ul) {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border-light);
    color: var(--color-text);
    text-decoration: none;
    font-size: 15px;
    font-family: var(--font-family-en);
    transition: all 0.3s ease;
    border-radius: 50%;
    background: #fff;
}

@media screen and (max-width: 600px) {
    .m-pagination .page-numbers:not(ul) {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
}

/* 「...」のデザインをリセット */
.m-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
    width: auto;
    height: auto;
    min-width: 0;
    border-radius: 0;
}

.m-pagination .page-numbers:not(ul):hover:not(.current):not(.dots) {
    background: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.m-pagination .page-numbers.current {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    cursor: default;
}

.m-pagination .page-numbers.prev,
.m-pagination .page-numbers.next {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border-light);
}

.m-pagination .page-numbers.prev:hover,
.m-pagination .page-numbers.next:hover {
    background: var(--color-bg-section-alt);
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.m-pagination .page-numbers svg {
    width: 8px;
    height: 12px;
}

/* ========================================
   お問い合わせセクション
   ======================================== */
.m-contact {
    position: relative;
    border-top: 1px solid var(--color-border-light);
}

.m-contact-link {
    padding: 120px 0;
    display: block;
    position: relative;
    background: var(--color-bg);
    color: var(--color-text);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .m-contact-link {
        padding: 60px 0;
    }
}

.m-contact-link:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

.m-contact-link:hover .m-section-title,
.m-contact-link:hover .m-section-title__en {
    color: var(--color-bg);
}

.m-contact-link:hover .m-section-title__ja {
    color: var(--color-accent);
}

.m-contact-link:hover .m-contact-text {
    color: var(--color-bg);
}

.m-contact-link:hover .m-view-more-link {
    color: var(--color-bg);
}

.m-contact-link:hover .m-view-more-link circle,
.m-contact-link:hover .m-view-more-link path {
    stroke: var(--color-bg);
}

.m-contact .m-section-title {
    text-align: center;
}

.m-contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.m-contact-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 32px;
    transition: color 0.3s ease;
}

.m-contact .m-view-more-btn {
    text-align: center;
}

/* ========================================
   フッター
   ======================================== */
.footer {
    background: var(--color-bg-section-alt);
    color: #000;
    padding: 64px 0 32px;
}

@media screen and (max-width: 1080px) {
    .footer {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .footer {
        padding: 48px 0 24px;
        text-align: center;
    }
}

.footer__inner {
    width: 86vw;
    margin: 0 auto;
    padding: 0;
}

@media screen and (max-width: 1080px) {
    .footer__inner {
        width: 86vw;
    }
}

@media screen and (max-width: 768px) {
    .footer__inner {
        width: 86vw;
    }
}

@media screen and (max-width: 600px) {
    .footer__inner {
        width: 100%;
        padding: 0 var(--padding-container-sp);
    }
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

@media screen and (max-width: 1080px) {
    .footer__content {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .footer__content {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .footer__content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
}

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

@media screen and (max-width: 600px) {
    .footer__left {
        align-items: center;
    }
}

.footer__logo {
    text-align: left;
    margin-bottom: 0;
}

@media screen and (max-width: 600px) {
    .footer__logo {
        text-align: center;
    }
}

.footer__logo a {
    display: inline-block;
    text-decoration: none;
}

.footer__logo img {
    height: 32px;
    width: auto;
    filter: brightness(0);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__contact-item {
    font-size: 14px;
    color: #000;
    margin: 0;
    line-height: 1.6;
}

.footer__nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

@media screen and (max-width: 1080px) {
    .footer__nav-list {
        gap: 24px;
    }
}

@media screen and (max-width: 768px) {
    .footer__nav-list {
        gap: 24px;
    }
}

@media screen and (max-width: 600px) {
    .footer__nav-list {
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 24px;
    }
}

.footer__nav-item a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 600px) {
    .footer__nav-item a {
        font-size: 14px;
        font-weight: 500;
    }
}

.footer__nav-item a:hover {
    opacity: 0.7;
}

.footer__copyright {
    text-align: right;
    padding-top: 0;
    border-top: none;
}

@media screen and (max-width: 600px) {
    .footer__copyright {
        text-align: center;
    }
}

.footer__copyright p {
    font-size: 12px;
    color: #000;
    margin: 0;
}

/* ========================================
   下層共通・パンくず
   ======================================== */
.m-sub-mv {
    background: var(--color-bg-section-alt);
    padding: 160px 0 80px;
    text-align: left;
}

.m-sub-mv__inner {
    max-width: 85vw;
}

@media screen and (max-width: 600px) {
    .m-sub-mv__inner {
        max-width: 100%;
    }
}

@media screen and (max-width: 1080px) {
    .m-sub-mv {
        padding: 140px 0 70px;
    }
}

@media screen and (max-width: 768px) {
    .m-sub-mv {
        padding: 120px 0 60px;
    }
}

@media screen and (max-width: 600px) {
    .m-sub-mv {
        padding: 100px 0 50px;
    }
}

.m-sub-mv__title {
    font-family: var(--font-family-en);
    font-size: 64px;
    font-weight: bold;
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
}

@media screen and (max-width: 1080px) {
    .m-sub-mv__title {
        font-size: 64px;
    }
}

@media screen and (max-width: 768px) {
    .m-sub-mv__title {
        font-size: 64px;
    }
}

@media screen and (max-width: 600px) {
    .m-sub-mv__title {
        font-size: 40px;
    }
}

.m-sub-mv__ja {
    font-family: var(--font-family-base);
    font-size: 16px;
    font-weight: normal;
    color: var(--color-accent);
    letter-spacing: 0.03em;
}

@media screen and (max-width: 1080px) {
    .m-sub-mv__ja {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .m-sub-mv__ja {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    .m-sub-mv__ja {
        font-size: 14px;
    }
}

.m-breadcrumb {
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border-light);
}

@media screen and (max-width: 600px) {
    .m-breadcrumb {
        padding: 16px 0;
    }
}

.m-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    font-size: 12px;
    color: var(--color-text-light);
    font-family: var(--font-family-en);
}

@media screen and (max-width: 600px) {
    .m-breadcrumb__list {
        gap: 8px;
    }
}

.m-breadcrumb__item a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.m-breadcrumb__item a:hover {
    color: var(--color-accent);
}

.m-breadcrumb__item+.m-breadcrumb__item::before {
    content: "/";
    margin-right: 12px;
}

@media screen and (max-width: 600px) {
    .m-breadcrumb__item+.m-breadcrumb__item::before {
        margin-right: 8px;
    }
}

/* ========================================
   サービスページ
   ======================================== */
.p-service-intro {
    text-align: center;
    padding-bottom: 120px;
}

@media screen and (max-width: 1080px) {
    .p-service-intro {
        padding-bottom: 120px;
    }
}

@media screen and (max-width: 768px) {
    .p-service-intro {
        padding-bottom: 120px;
    }
}

@media screen and (max-width: 600px) {
    .p-service-intro {
        padding-bottom: 60px;
    }
}

.p-service-intro__title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 32px;
}

@media screen and (max-width: 600px) {
    .p-service-intro__title {
        font-size: 24px;
        margin-bottom: 24px;
        text-align: left;
    }
}

.p-service-intro__text {
    font-size: 16px;
    line-height: 2;
    color: var(--color-text-light);
}

@media screen and (max-width: 1080px) {
    .p-service-intro__text {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .p-service-intro__text {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    .p-service-intro__text {
        font-size: 15px;
        line-height: 1.8;
        text-align: left;
    }
}

.p-service-intro__anchor {
    margin-top: 40px;
}

@media screen and (max-width: 1080px) {
    .p-service-intro__anchor {
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .p-service-intro__anchor {
        margin-top: 40px;
    }
}

@media screen and (max-width: 600px) {
    .p-service-intro__anchor {
        margin-top: 32px;
    }
}

.p-service-intro__anchor-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
}

@media screen and (max-width: 1080px) {
    .p-service-intro__anchor-list {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .p-service-intro__anchor-list {
        justify-content: center;
    }
}

@media screen and (max-width: 600px) {
    .p-service-intro__anchor-list {
        justify-content: flex-start;
        gap: 10px;
    }
}

.p-service-intro__anchor-item a {
    display: inline-block;
    padding: 12px 24px;
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: 30px;
    font-size: 14px;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1080px) {
    .p-service-intro__anchor-item a {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .p-service-intro__anchor-item a {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .p-service-intro__anchor-item a {
        padding: 10px 16px;
        font-size: 13px;
    }
}

.p-service-intro__anchor-item a:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.p-service-detail__list {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

@media screen and (max-width: 768px) {
    .p-service-detail__list {
        gap: 80px;
    }
}

.p-service-detail__item {
    display: flex;
    align-items: center;
    gap: 64px;
}

@media screen and (max-width: 1080px) {
    .p-service-detail__item {
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .p-service-detail__item {
        flex-direction: column;
        gap: 32px;
    }
}

.p-service-detail__item--reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
    .p-service-detail__item--reverse {
        flex-direction: column;
    }
}

.p-service-detail__img-wrapper {
    flex: 1;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .p-service-detail__img-wrapper {
        width: 100%;
    }
}

.p-service-detail__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-service-detail__content {
    flex: 1;
}

.p-service-detail__number {
    font-family: var(--font-family-en);
    font-size: 48px;
    font-weight: bold;
    color: rgba(0, 175, 237, 0.2);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

@media screen and (max-width: 600px) {
    .p-service-detail__number {
        font-size: 36px;
    }
}

.p-service-detail__title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

@media screen and (max-width: 600px) {
    .p-service-detail__title {
        font-size: 22px;
        margin-bottom: 16px;
    }
}

.p-service-detail__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-accent);
}

.p-service-detail__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

@media screen and (max-width: 600px) {
    .p-service-detail__text {
        font-size: 15px;
    }
}

.p-service-detail__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.p-service-detail__feature-item {
    font-size: 15px;
    padding-left: 24px;
    position: relative;
    color: var(--color-text);
}

@media screen and (max-width: 1080px) {
    .p-service-detail__feature-item {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .p-service-detail__feature-item {
        font-size: 15px;
    }
}

@media screen and (max-width: 600px) {
    .p-service-detail__feature-item {
        font-size: 14px;
    }
}

.p-service-detail__feature-item::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 6px;
    height: 11px;
    border-right: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(45deg);
}

@media screen and (max-width: 1080px) {
    .p-service-detail__feature-item::before {
        top: 4px;
    }
}

@media screen and (max-width: 768px) {
    .p-service-detail__feature-item::before {
        top: 4px;
    }
}

@media screen and (max-width: 600px) {
    .p-service-detail__feature-item::before {
        top: 3px;
    }
}

.p-service-detail__btn-wrapper {
    margin-top: 32px;
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width: 600px) {
    .p-service-detail__btn-wrapper {
        margin-top: 24px;
        justify-content: flex-end;
    }
}

/* 制作の流れ */
.p-service-flow__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.p-service-flow__item {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    position: relative;
}

@media screen and (max-width: 600px) {
    .p-service-flow__item {
        gap: 20px;
        padding: 32px 0;
    }
}

.p-service-flow__item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 90px;
    width: 1px;
    height: calc(100% - 40px);
    background: var(--color-border-light);
}

@media screen and (max-width: 600px) {
    .p-service-flow__item:not(:last-child)::after {
        left: 24px;
        top: 70px;
    }
}

.p-service-flow__number {
    width: 60px;
    height: 60px;
    background: var(--color-bg-section-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-en);
    font-size: 20px;
    font-weight: bold;
    color: var(--color-accent);
    flex-shrink: 0;
    z-index: 1;
}

@media screen and (max-width: 600px) {
    .p-service-flow__number {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

.p-service-flow__title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

@media screen and (max-width: 600px) {
    .p-service-flow__title {
        font-size: 18px;
    }
}

.p-service-flow__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* サービス価格セクション */
.p-service-price__table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 32px;
}

.p-service-price__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.p-service-price__table th,
.p-service-price__table td {
    padding: 24px;
    border-bottom: 1px solid var(--color-border-light);
    text-align: left;
}

.p-service-price__table th {
    background: var(--color-bg-section-alt);
    font-weight: bold;
    color: var(--color-text);
    font-size: 16px;
}

.p-service-price__table td {
    font-size: 15px;
    color: var(--color-text-light);
}

.p-service-price__table td:nth-child(2) {
    font-weight: bold;
    color: var(--color-text);
    font-family: var(--font-family-en);
    font-size: 18px;
}

.p-service-price__table td.p-service-price__subhead {
    background: var(--color-bg-section-alt);
    font-weight: 700;
    color: var(--color-text);
    font-size: 16px;
    padding-top: 20px;
    border-bottom: 1px solid var(--color-border-light);
}

.p-service-price__table tbody tr:first-child + tr + tr td.p-service-price__subhead {
    padding-top: 24px;
}

.p-service-price__note {
    font-size: 13px;
    color: var(--color-text-lighter);
    line-height: 1.6;
}

@media screen and (max-width: 600px) {

    .p-service-price__table th,
    .p-service-price__table td {
        padding: 16px;
    }
}

/* FAQセクション */
.p-service-faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
}

.p-service-faq__item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.p-service-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    color: var(--color-text);
    transition: background-color 0.3s ease;
}

@media screen and (max-width: 600px) {
    .p-service-faq__question {
        padding: 20px;
        font-size: 15px;
    }
}

.p-service-faq__question:hover {
    background-color: rgba(0, 175, 237, 0.02);
}

.p-service-faq__icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.p-service-faq__icon::before,
.p-service-faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background-color: var(--color-accent);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.p-service-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.p-service-faq__item.is-active .p-service-faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.p-service-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.p-service-faq__answer-inner {
    padding: 0 24px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.p-service-faq__answer-inner p {
    margin-top: 1em;
}

.p-service-faq__answer-inner p:first-child {
    margin-top: 0;
}

.p-service-faq__answer-inner strong {
    font-weight: 700;
    color: var(--color-text);
}

.p-service-faq__answer-inner .p-service-faq__link {
    text-decoration: underline;
    color: var(--color-accent);
}

.p-service-faq__answer-inner .p-service-faq__link:hover {
    text-decoration: underline;
    color: var(--color-accent-hover);
}

@media screen and (max-width: 600px) {
    .p-service-faq__answer-inner {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}

/* ========================================
   ユーティリティクラス
   ======================================== */
.u-center {
    text-align: center;
}

.u-pc-only {
    display: block;
}

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

@media screen and (max-width: 600px) {
    .u-pc-only {
        display: none;
    }

    .u-sp-only {
        display: block;
    }
}

/* ========================================
   カスタムカーソル
   ======================================== */
.m-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.m-cursor__text {
    font-size: 12px;
    font-weight: bold;
    font-family: var(--font-family-en);
    letter-spacing: 0.05em;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .m-cursor {
        display: none;
    }
}

/* ホバー時のカードのカーソルをデフォルトに（カスタムカーソルを表示するため） */
@media screen and (min-width: 769px) {

    .top-service__card,
    .top-works__card,
    .top-news__item,
    .m-contact-link {
        cursor: none;
    }

    .top-service__card-link,
    .top-works__card-link,
    .top-news__link {
        cursor: none;
    }
}

/* ========================================
   アニメーション（ScrollTrigger用）
   ======================================== */
.js-fade-in {
    opacity: 0;
}

.js-split-text {
    overflow: hidden;
}

.js-split-text span {
    display: inline-block;
}

/* ========================================
   Aboutページ
   ======================================== */
.p-about-intro {
    text-align: center;
}

@media screen and (max-width: 1080px) {
    .p-about-intro {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .p-about-intro {
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .p-about-intro {
        text-align: left;
    }
}

.p-about-intro__title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 32px;
}

@media screen and (max-width: 1080px) {
    .p-about-intro__title {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .p-about-intro__title {
        font-size: 32px;
    }
}

@media screen and (max-width: 600px) {
    .p-about-intro__title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

.p-about-intro__text {
    font-size: 16px;
    line-height: 2;
    color: var(--color-text-light);
}

@media screen and (max-width: 1080px) {
    .p-about-intro__text {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .p-about-intro__text {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    .p-about-intro__text {
        font-size: 15px;
        line-height: 1.8;
    }
}

.p-about-members__list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

@media screen and (max-width: 600px) {
    .p-about-members__list {
        gap: 48px;
    }
}

.p-about-members__item {
    display: flex;
    align-items: center;
    gap: 80px;
}

@media screen and (max-width: 1080px) {
    .p-about-members__item {
        gap: 64px;
    }
}

@media screen and (max-width: 768px) {
    .p-about-members__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
}

@media screen and (max-width: 600px) {
    .p-about-members__item {
        gap: 24px;
    }
}

.p-about-members__img-wrapper {
    flex: 0 0 400px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

@media screen and (max-width: 1080px) {
    .p-about-members__img-wrapper {
        flex: 0 0 320px;
        height: 320px;
    }
}

@media screen and (max-width: 768px) {
    .p-about-members__img-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

.p-about-members__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-about-members__content {
    flex: 1;
    text-align: left;
}

.p-about-members__role {
    font-size: 14px;
    color: var(--color-accent);
    font-family: var(--font-family-en);
    margin-bottom: 8px;
    font-weight: bold;
}

@media screen and (max-width: 1080px) {
    .p-about-members__role {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .p-about-members__role {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .p-about-members__role {
        font-size: 13px;
    }
}

.p-about-members__name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

@media screen and (max-width: 1080px) {
    .p-about-members__name {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .p-about-members__name {
        font-size: 20px;
    }
}

@media screen and (max-width: 600px) {
    .p-about-members__name {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

.p-about-members__name span {
    display: block;
    font-size: 14px;
    font-weight: normal;
    color: var(--color-text-lighter);
    margin-top: 4px;
    font-family: var(--font-family-en);
}

@media screen and (max-width: 600px) {
    .p-about-members__name span {
        font-size: 12px;
    }
}

.p-about-members__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
    text-align: left;
}

.p-about-members__text+.p-about-members__text {
    margin-top: 1.5em;
}

@media screen and (max-width: 1080px) {
    .p-about-members__text {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .p-about-members__text {
        font-size: 15px;
    }
}

@media screen and (max-width: 600px) {
    .p-about-members__text {
        font-size: 14px;
    }
}

.p-about-info__content {
    width: 100%;
}

.p-about-info__list {
    border-top: 1px solid var(--color-border-light);
}

.p-about-info__row {
    display: flex;
    padding: 32px 0;
    border-bottom: 1px solid var(--color-border-light);
}

@media screen and (max-width: 1080px) {
    .p-about-info__row {
        display: flex;
    }
}

@media screen and (max-width: 768px) {
    .p-about-info__row {
        display: flex;
    }
}

@media screen and (max-width: 600px) {
    .p-about-info__row {
        flex-direction: column;
        gap: 8px;
        padding: 24px 0;
    }
}

.p-about-info__row dt {
    width: 200px;
    font-weight: bold;
    flex-shrink: 0;
}

@media screen and (max-width: 1080px) {
    .p-about-info__row dt {
        width: 200px;
    }
}

@media screen and (max-width: 768px) {
    .p-about-info__row dt {
        width: 200px;
    }
}

@media screen and (max-width: 600px) {
    .p-about-info__row dt {
        width: 100%;
        font-size: 14px;
    }
}

.p-about-info__row dd {
    flex: 1;
    color: var(--color-text-light);
    line-height: 1.8;
}

@media screen and (max-width: 600px) {
    .p-about-info__row dd {
        font-size: 14px;
    }
}

/* ========================================
   実績一覧ページ（p-works）
   ======================================== */
.p-works {
    padding: 100px 0;
}

@media screen and (max-width: 1080px) {
    .p-works {
        padding: 80px 0;
    }
}

@media screen and (max-width: 768px) {
    .p-works {
        padding: 60px 0;
    }
}

@media screen and (max-width: 600px) {
    .p-works {
        padding: 40px 0;
    }
}

.p-works__container {
    width: 100%;
    max-width: 85vw;
    margin: 0 auto;
}

@media screen and (max-width: 1080px) {
    .p-works__container {
        max-width: 90vw;
    }
}

@media screen and (max-width: 768px) {
    .p-works__container {
        max-width: 100%;
        padding: 0 var(--padding-container);
    }
}

@media screen and (max-width: 600px) {
    .p-works__container {
        padding: 0 var(--padding-container-sp);
    }
}

.p-works__list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 40px;
}

@media screen and (max-width: 1080px) {
    .p-works__list {
        gap: 40px 30px;
    }
}

@media screen and (max-width: 768px) {
    .p-works__list {
        gap: 30px 20px;
    }
}

@media screen and (max-width: 600px) {
    .p-works__list {
        gap: 30px 0;
    }
}

.p-works__item {
    width: calc((100% - 40px) / 2);
}

@media screen and (max-width: 1080px) {
    .p-works__item {
        width: calc((100% - 30px) / 2);
    }
}

@media screen and (max-width: 768px) {
    .p-works__item {
        width: calc((100% - 20px) / 2);
    }
}

@media screen and (max-width: 600px) {
    .p-works__item {
        width: 100%;
    }
}

.p-works__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.p-works__img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

@media screen and (max-width: 600px) {
    .p-works__img-wrapper {
        margin-bottom: 15px;
    }
}

.p-works__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.p-works__link:hover .p-works__img {
    transform: scale(1.05);
}

.p-works__info {
    padding: 0 5px;
}

.p-works__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-family: var(--font-family-en);
    color: var(--color-text-light);
    margin-bottom: 8px;
}

@media screen and (max-width: 600px) {
    .p-works__meta {
        font-size: 12px;
        margin-bottom: 5px;
    }
}

.p-works__year {
    font-weight: 500;
}

.p-works__category-divider {
    color: var(--color-border);
}

.p-works__category {
    font-weight: 400;
}

.p-works__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

@media screen and (max-width: 1080px) {
    .p-works__title {
        font-size: 18px;
    }
}

@media screen and (max-width: 600px) {
    .p-works__title {
        font-size: 16px;
    }
}

.p-works__empty {
    text-align: center;
    padding: 40px 0;
}

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

@media screen and (max-width: 768px) {
    .p-works__categories {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 600px) {
    .p-works__categories {
        margin-bottom: 30px;
    }
}

.p-works__category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

@media screen and (max-width: 600px) {
    .p-works__category-list {
        gap: 10px;
        justify-content: flex-start;
    }
}

.p-works__category-item {
    list-style: none;
}

.p-works__category-link {
    display: block;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-family-en);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media screen and (max-width: 600px) {
    .p-works__category-link {
        padding: 8px 16px;
        font-size: 13px;
    }
}

.p-works__category-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.p-works__category-link.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

/* ========================================
   投稿詳細（p-entry）
   ======================================== */
.p-entry {
    padding: 80px 0;
}

@media screen and (max-width: 1080px) {
    .p-entry {
        padding: 60px 0;
    }
}

@media screen and (max-width: 768px) {
    .p-entry {
        padding: 40px 0;
    }
}

@media screen and (max-width: 600px) {
    .p-entry {
        padding: 32px 0;
    }
}

.p-entry__thumbnail {
    margin-bottom: 32px;
}

@media screen and (max-width: 1080px) {
    .p-entry__thumbnail {
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 768px) {
    .p-entry__thumbnail {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 600px) {
    .p-entry__thumbnail {
        margin-bottom: 24px;
    }
}

.p-entry__img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.p-entry__header {
    margin-bottom: 40px;
    text-align: left;
}

@media screen and (max-width: 1080px) {
    .p-entry__header {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .p-entry__header {
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 600px) {
    .p-entry__header {
        margin-bottom: 24px;
    }
}

.p-entry__meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    line-height: 1;
    font-family: var(--font-family-en);
    font-size: 14px;
    color: var(--color-text-light);
}

@media screen and (max-width: 1080px) {
    .p-entry__meta {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 768px) {
    .p-entry__meta {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 600px) {
    .p-entry__meta {
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 12px;
    }
}

.p-entry__date,
.p-entry__category,
.p-entry__category-divider {
    line-height: 1;
}

.p-entry__category-divider {
    color: var(--color-border);
}

.p-entry__title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
}

@media screen and (max-width: 1080px) {
    .p-entry__title {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .p-entry__title {
        font-size: 24px;
    }
}

@media screen and (max-width: 600px) {
    .p-entry__title {
        font-size: 20px;
    }
}

.p-entry__navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
    padding-top: 32px;
}

@media screen and (max-width: 1080px) {
    .p-entry__navigation {
        margin-top: 80px;
    }
}

@media screen and (max-width: 768px) {
    .p-entry__navigation {
        margin-top: 64px;
    }
}

@media screen and (max-width: 600px) {
    .p-entry__navigation {
        margin-top: 64px;
        padding-top: 24px;
    }
}

.p-entry__nav-link a {
    font-size: 14px;
    font-weight: bold;
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-family-en);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.p-entry__nav-link a:hover {
    color: var(--color-accent);
}

.p-entry__back-btn {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: var(--color-text);
    padding: 10px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: opacity 0.3s;
}

@media screen and (max-width: 600px) {
    .p-entry__back-btn {
        padding: 8px 24px;
        font-size: 12px;
    }
}

.p-entry__back-btn:hover {
    opacity: 0.8;
}

/* 実績詳細ページ（p-works-detail） */
.p-works-detail {
    padding: 80px 0;
}

@media screen and (max-width: 1080px) {
    .p-works-detail {
        padding: 60px 0;
    }
}

@media screen and (max-width: 768px) {
    .p-works-detail {
        padding: 40px 0;
    }
}

@media screen and (max-width: 600px) {
    .p-works-detail {
        padding: 32px 0;
    }
}

.p-works-detail__header {
    margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
    .p-works-detail__header {
        margin-bottom: 24px;
    }
}

.p-works-detail__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-family: var(--font-family-en);
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1;
}

.p-works-detail__year,
.p-works-detail__category,
.p-works-detail__category-divider {
    line-height: 1;
}

.p-works-detail__category-divider {
    color: var(--color-border);
}

.p-works-detail__title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .p-works-detail__title {
        font-size: 24px;
    }
}

@media screen and (max-width: 600px) {
    .p-works-detail__title {
        font-size: 20px;
    }
}

.p-works-detail__thumbnail {
    margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
    .p-works-detail__thumbnail {
        margin-bottom: 32px;
    }
}

.p-works-detail__img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.p-works-detail__info {
    margin-bottom: 48px;
    border-top: 1px solid var(--color-border-light);
}

@media screen and (max-width: 768px) {
    .p-works-detail__info {
        margin-bottom: 32px;
    }
}

.p-works-detail__info-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border-light);
}

@media screen and (max-width: 600px) {
    .p-works-detail__info-item {
        flex-direction: column;
        gap: 8px;
        padding: 16px 0;
    }
}

.p-works-detail__info-label {
    width: 200px;
    font-family: var(--font-family-en);
    font-weight: bold;
    font-size: 14px;
    color: var(--color-text);
}

@media screen and (max-width: 768px) {
    .p-works-detail__info-label {
        width: 150px;
    }
}

@media screen and (max-width: 600px) {
    .p-works-detail__info-label {
        width: 100%;
    }
}

.p-works-detail__info-value {
    flex: 1;
    font-size: 15px;
    color: var(--color-text-light);
}

@media screen and (max-width: 600px) {
    .p-works-detail__info-value {
        font-size: 14px;
    }
}

.p-works-detail__url {
    color: var(--color-accent);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.p-works-detail__url:hover {
    opacity: 0.7;
}

/* ========================================
   エントリコンテンツ共通スタイル（m-entry-content）
   ======================================== */
.m-entry-content>*:first-child {
    margin-top: 0;
}

.m-entry-content>*:last-child {
    margin-bottom: 0;
}

.m-entry-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 32px 0 24px;
    line-height: 1.4;
}

@media screen and (max-width: 1080px) {
    .m-entry-content h2 {
        margin: 32px 0 24px;
    }
}

@media screen and (max-width: 768px) {
    .m-entry-content h2 {
        font-size: 22px;
        margin: 32px 0 20px;
    }
}

@media screen and (max-width: 600px) {
    .m-entry-content h2 {
        font-size: 20px;
        margin: 24px 0 16px;
    }
}

.m-entry-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 24px 0 16px;
    line-height: 1.4;
}

@media screen and (max-width: 1080px) {
    .m-entry-content h3 {
        margin: 24px 0 16px;
    }
}

@media screen and (max-width: 768px) {
    .m-entry-content h3 {
        font-size: 18px;
        margin: 18px 0 16px;
    }
}

@media screen and (max-width: 600px) {
    .m-entry-content h3 {
        font-size: 17px;
        margin: 16px 0 12px;
    }
}

.m-entry-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media screen and (max-width: 1080px) {
    .m-entry-content p {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .m-entry-content p {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 600px) {
    .m-entry-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }
}

.m-entry-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 24px;
    border-radius: 4px;
}

.m-entry-content ul,
.m-entry-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.m-entry-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.m-entry-content blockquote {
    margin: 32px 0;
    padding: 24px;
    background: var(--color-bg-section);
    border-radius: 8px;
    font-style: italic;
    color: var(--color-text-light);
}

@media screen and (max-width: 600px) {
    .m-entry-content blockquote {
        padding: 16px;
        margin: 24px 0;
    }
}

/* ========================================
   お問い合わせページ
   ======================================== */
.contact__info {
    text-align: center;
    line-height: 2;
    margin-bottom: 64px;
    font-size: 16px;
}

@media screen and (max-width: 600px) {
    .contact__info {
        text-align: left;
        margin-bottom: 40px;
        font-size: 15px;
    }
}

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

/* フォームの各ユニット */
.form-unit {
    display: flex;
    padding: 20px 0;
    align-items: flex-start;
}



@media screen and (max-width: 768px) {
    .form-unit {
        flex-direction: column;
        gap: 8px;
        padding: 15px 0;
    }
}

.form-unit__head {
    width: 240px;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 16px;
    padding-top: 12px;
    display: flex;
    align-items: center;
    gap: 0px;
}

@media screen and (max-width: 768px) {
    .form-unit__head {
        width: 100%;
        padding-top: 0;
    }
}

/* 必須ラベル */
.m-required::after {
    content: "必須";
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 2px;
    margin-left: 8px;
    font-weight: normal;
}

/* 入力エリア */
.form-unit__input,
.form-unit__textarea {
    flex: 1;
    width: 100%;
    border: 1px solid var(--color-border);
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-unit__input:focus,
.form-unit__textarea:focus {
    border-color: var(--color-accent);
    outline: none;
}

.form-unit__textarea {
    min-height: 200px;
}

/* ラジオボタン */
.form-unit__radio {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 10px;
}

@media screen and (max-width: 600px) {
    .form-unit__radio {
        gap: 12px 20px;
    }
}

.form-unit__radio .wpcf7-list-item {
    margin: 0;
}

.form-unit__radio label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
}

.form-unit__radio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    position: relative;
    vertical-align: middle;
}

.form-unit__radio input[type="radio"]:checked {
    border-color: var(--color-accent);
}

.form-unit__radio input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-accent);
}

/* 同意チェックボックス */
.form-consent {
    text-align: center;
    margin-top: 48px;
}

@media screen and (max-width: 600px) {
    .form-consent {
        text-align: left;
        margin-top: 32px;
    }
}

.form-consent label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
}

.form-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    position: relative;
    vertical-align: middle;
}

.form-checkbox:checked {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
}

.form-checkbox:checked::after {
    content: "";
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.form-unit__policy-link {
    color: var(--color-accent);
    text-decoration: underline;
}

.form-unit__policy-link:hover {
    text-decoration: none;
}

/* 送信ボタン */
.form__submit {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 64px auto 0;
    padding: 20px;
    background: var(--color-text);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.form__submit:hover {
    background: var(--color-accent);
    box-shadow: 0 4px 12px rgba(0, 175, 237, 0.3);
}

/* 戻るボタン（テキストのみ） */
.wpcf7-previous {
    display: block;
    width: fit-content;
    margin: 24px auto 0;
    padding: 8px;
    background: none;
    color: var(--color-text);
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.wpcf7-previous:hover {
    color: var(--color-accent);
    background: none;
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    .form__submit {
        margin-top: 40px;
        padding: 16px;
    }

    .wpcf7-previous {
        margin-top: 16px;
        font-size: 15px;
    }
}

/* Contact Form 7 共通の微調整 */
.wpcf7-form-control-wrap {
    width: 100%;
}

.wpcf7-not-valid-tip {
    font-size: 14px;
    color: #E03E3E;
    margin-top: 8px;
    display: block;
}

.wpcf7-response-output {
    margin: 32px 0 0 !important;
    padding: 16px !important;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: none !important;
    background: #fdf2f2;
    color: #E03E3E;
}

/* お問い合わせ完了・確認画面 */
.contact__thanks {
    text-align: center;
}

.contact__btn-wrap {
    margin-top: 64px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 600px) {
    .contact__btn-wrap {
        margin-top: 40px;
    }
}

.m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background: var(--color-text);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.m-btn:hover {
    background: var(--color-accent);
}

.m-btn__arrow {
    transition: transform 0.3s ease;
}

.m-btn:hover .m-btn__arrow {
    transform: translateX(4px);
}

/* ========================================
   公式LINEバナー（右端・アイコン下にテキスト・余白40px）
   ======================================== */
.m-line-banner {
    position: fixed;
    bottom: 15%;
    right: 0;
    width: 48px;
    height: auto;
    background-color: #06C755;
    border-radius: 8px 0 0 8px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.35s ease;
}

.m-line-banner.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.m-line-banner.is-visible.is-scrolling {
    transform: translateX(100%);
    pointer-events: none;
}

.m-line-banner__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    min-height: 140px;
    padding: 12px 0;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 600px) {
    .m-line-banner__link {
        gap: 6px;
    }
}

.m-line-banner__link:hover {
    opacity: 0.7;
}

.m-line-banner__text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.1em;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}

.m-line-banner__text--sp {
    display: none;
}

.m-line-banner__img {
    display: block;
    width: 24px;
    height: 24px;
    border: 0;
    object-fit: contain;
}

@media screen and (max-width: 1080px) {
    .m-line-banner {
        width: 44px;
    }

    .m-line-banner__text {
        font-size: 14px;
    }

    .m-line-banner__img {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 768px) {
    .m-line-banner {
        width: 40px;
    }
}

@media screen and (max-width: 600px) {
    .m-line-banner__text--pc {
        display: none;
    }

    .m-line-banner__text--sp {
        display: block;
    }
}