@charset "utf-8";

/* ================================================================
   01. SPセクションごとのルール
   ================================================================ */

/* ----------------------------------------------------------------
   ▼ サービス詳細ページ 共通部分 (SP)
---------------------------------------------------------------- */

/* Breadcrumb */
.breadcrumb {
    background: #fafafa;
    padding: 20px 0;
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    font-size: 12px;
    color: #666;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #ccc;
}

.breadcrumb a {
    color: #667eea;
    transition: color 0.3s;
}

/* Hero Base Structure */
.hero {
    padding: 100px 0 80px;
    color: #fff;
}

.hero h1 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 14px;
    line-height: 1.9;
    opacity: 0.95;
    color: #ffffff;
}


/* --- 全般的なimgタグの基本管理 --- */
.concept-image img,
.flow-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}



/* Section Shared */
.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
    color: #999;
    text-transform: uppercase;
    display: block;
}

.section-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* Concept Shared */
.concept {
    background: #fff;
    padding: 80px 0;
}

.concept-content {
    text-align: center;
    margin-bottom: 40px;
}

.concept-content h2 {
    font-size: 28px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 700;
}

.concept-text {
    font-size: 14px;
    line-height: 2;
    color: #666;
}


/* Concerns Shared */
.concerns {
    background: #f0f0f0;
    color: #1a1a1a;
}

.section-title-large {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 700;
}

.concern-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.concern-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 60px 25px 30px;
    border-radius: 8px;
    position: relative;
}

.concern-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.concern-title {
    color: #667eea;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.concern-list {
    list-style: none;
}

.concern-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: #667eea;
    font-weight: 700;
    font-size: 16px;
}

.concern-grid-center {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-bottom: 40px;
}

/* FAQ Shared */
.faq-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px 25px;
    border-radius: 8px;
}

.faq-title {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 20px;
}

.faq-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.faq-question, 
.faq-answer {
    display: flex;
    gap: 25px;
    font-size: 18px;
}

.q-label, 
.a-label {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.q-label {
    background: #93c5b8;
}

.a-label {
    background: #d6816d;
}

/* Flow Shared */
.flow {
    background: #fafafa;
}

.flow-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.flow-intro p {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.flow-image {
    width: 100%;
    border-radius: 8px;
}

/* Print Network Shared Structure (背景と文字色を調整) */
.print-network {
    color: #fff;
}

.print-network .section-label,
.print-network .section-title,
.print-network .section-description {
    color: #fff;
}

.network-grid {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.network-item {
    background: #fff;
    color: #1a1a1a; /* カード内部の文字色は黒を維持 */
    padding: 50px 30px 40px;
    border-radius: 16px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.network-number {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.network-item h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 20px 0 15px;
    position: relative;
    display: inline-block;
}

.network-item h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
}

.network-item p strong {
    color: #1a1a1a;
    font-weight: 700;
    background: linear-gradient(transparent 60%, rgba(255, 255, 255, 0.4) 60%);
}

/* ----------------------------------------------------------------
   ▼ サービス別 配色設定 (カタログ / チラシ共通)
---------------------------------------------------------------- */

/* カタログ (Base: Purple) */
.page-catalog .hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.page-catalog .print-network {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.page-catalog .network-item h3::after {
    background: linear-gradient(90deg, #667eea, #c94465);
}

/* チラシ (Flyer: Red) */
.page-flyer .hero {
    background: linear-gradient(135deg, #ff7961 0%, #ff5252 100%);
}

.page-flyer .print-network {
    background: linear-gradient(135deg, #ff7961 0%, #ff5252 100%);
}

.page-flyer .network-item h3::after {
    background: linear-gradient(90deg, #ff7961, #ff5252);
}


/* 動画 (video: green) */

.page-video .hero {
    background: linear-gradient(135deg,#43a047 0%, #2e7d32 100%);
}

.age-video .print-network {
    background: linear-gradient(135deg,#43a047 0%, #2e7d32 100%);
}

.age-video .network-item h3::after {
    background: linear-gradient(90deg, #43a047, #2e7d32 );
}




/* ----------------------------------------------------------------
   ▼ カタログ制作 固有部分 (SP)
---------------------------------------------------------------- */



/* Concept Image */
.concept-image {
    margin-top: 40px;
}

/* Flow Image (スケジュール画像：コンテンツ幅内) */
.flow-image {
    margin-top: 40px;
    width: 100%;
}





/* カタログページのみ Concerns のタイトル色を #1a1a1a に変更 */
.page-catalog .concerns .section-title-large,
.page-catalog .concerns .section-subtitle {
    color: #1a1a1a;
}



.pricing {
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.pricing-card {
    background: #fafafa;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    text-align: center;
}

.pricing-total {
    font-size: 38px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 15px;
    line-height: 1;
}

.pricing-breakdown {
    border-top: 1px solid #e0e0e0;
    padding: 20px 0;
    margin: 20px 0;
    font-size: 14px;
    color: #666;
}

.pricing-note {
    font-size: 13px;
    line-height: 1.6;
    color: #1a1a1a;
    margin: 25px 0 20px;
    padding-top: 15px;
    border-top: 1px dashed #ccc;
}

.pricing-note strong {
    color: #c94465;
    font-size: 15px;
    font-weight: 700;
}



/* ----------------------------------------------------------------
   ▼ チラシ制作 独自ルール (SP)
---------------------------------------------------------------- */

.page-flyer .breadcrumb a {
    color: #ff7961;
}

.page-flyer .check-icon {
    color: #ff7961;
}

.page-flyer .pricing-flyer {
    background-color: #fff;
}

.flyer-price-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.flyer-price-sub {
    font-size: 12px;
    font-weight: 400;
    margin-left: 8px;
    color: #666;
}

.flyer-price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.flyer-price-item {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.flyer-price-item .size {
    width: 30px;
}

.flyer-price-item .type {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    margin-left: 10px;
    font-size: 14px;
}

.flyer-price-item .slash {
    margin: 0 15px;
    color: #ccc;
    font-weight: 300;
}

.flyer-price-item .amount {
    font-size: 18px;
}

.flyer-price-note {
    margin-top: 40px;
    border-radius: 12px;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    position: relative;
    border: 2px solid #ff7961; /* チラシ用カラー */
}

.note-icon {
    background-color: #ff0000;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}

.note-text {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}


/* ----------------------------------------------------------------
   ▼ AI撮影・画像加工 独自ルール (SP)
---------------------------------------------------------------- */

/* AI Shooting Page Base Color (Blue) */
.page-ai-shooting .breadcrumb a {
    color: #22a3d4;
}

.page-ai-shooting .hero {
    background: linear-gradient(135deg, #22a3d4 0%, #34b3e5 100%);
}

/* 強調バナー */
.ai-highlight-banner {
    background-color: #f0faff;
    padding: 30px 0;
    text-align: center;
}

.ai-highlight-banner p {
    font-size: 16px;
    font-weight: 700;
    color: #22a3d4;
    line-height: 1.6;
}

/* イントロ部分 */
.ai-intro {
    background: #fff;
    padding: 60px 0;
}

.ai-intro-text h2 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.ai-intro-text h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.ai-intro-features {
    font-size: 20px;
    color: #22a3d4;
    margin-bottom: 30px;
}

.ai-intro-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #eee;
    border-radius: 4px;
}

/* サンプルリスト */

.ai-samples {
    padding: 80px 0;
}

.ai-sample-group{
    padding-bottom: 80px;
}

.ai-samples-main-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.ai-group-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    padding-bottom: 10px;
}

.ai-sample-group img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

/* Before / After ラベル */
.ba-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
    display: block;
}

/* --- 矢印演出 (CSSで再現) --- */
.ai-arrow-icon {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.ai-arrow-icon::after {
    content: "";
    width: 15px;
    height: 15px;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    transform: rotate(45deg);
}

/* --- レイアウトコンテナ (PC基本) --- */
.styling-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

/* 01 基礎レイアウト */
.styling-main {
    width: 380px;
    flex-shrink: 0;
}

.styling-after-area {
    flex: 1;
}

.styling-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* 小物の変更サブセクション */
.sub-section {
    padding-top: 40px;
}

.styling-side-text {
    width: 160px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    flex-shrink: 0;
}

.styling-main-small {
    width: 200px;
    flex-shrink: 0;
}

.styling-sub-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    flex: 1;
}

.styling-sub-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    flex: 1;
}

/* 02 構図セクション */
.angle-row {
    margin-bottom: 50px;
}

.angle-label-box {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.styling-main-angle {
    width: 320px;
    flex-shrink: 0;
}

/* 03 テーマ別グリッド (6列) */
.theme-grid-container {
    width: 100%;
    overflow-x: auto;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    min-width: 1000px;
}

.theme-header-item {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    padding-bottom: 10px;
}

/* 汎用グリッド */
.col-five-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.col-four-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}



/* AI Shooting CTA */
.page-ai-shooting .cta {
    background: #fff;
}

.ai-cta-title {
    font-size: 20px;
    color: #22a3d4;
    line-height: 1.5;
    margin-bottom: 30px;
}

.cta-main-msg {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-sub-msg {
    font-size: 12px;
    color: #999;
    margin-bottom: 40px;
}

/* フライヤー・カタログのボタン色を壊さないよう個別指定 */
.page-ai-shooting .btn-primary {
    background-color: #1a1a1a; /* カンプは黒 */
}

.page-ai-shooting .btn-secondary {
    border: 1px solid #ccc;
    color: #666;
    background: #fff;
}

/* ----------------------------------------------------------------
   ▼ 会社概要 独自ルール (SP)
---------------------------------------------------------------- */

/* Hero Color for Company (Neutral/Corporate Dark) */
.page-company .hero {
    background: linear-gradient(135deg, #4a4a4a 0%, #1a1a1a 100%);
}

/* Message Area */
.company-message {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.main-copy {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.6;
}

.sub-copy {
    font-size: 15px;
    line-height: 2;
    color: #444;
    text-align: left;
}

/* Profile Table (DL) */
.company-profile {
    background-color: #fafafa;
    padding: 80px 0;
}

.profile-table {
    border-top: 1px solid #ddd;
}

.profile-table dl {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.profile-table dt {
    font-weight: 700;
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.profile-table dd {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.6;
}

.profile-table dd ul {
    list-style: none;
}

.profile-table dd li {
    margin-bottom: 5px;
}


/* ----------------------------------------------------------------
   ▼ 動画 独自ルール (SP)
---------------------------------------------------------------- */




/* チラシ (動画: green) */
.page-video .hero {
    background: linear-gradient(135deg, #50db6e 0%, #54e4e9 100%);
}

.page-video .print-network {
    background: linear-gradient(135deg, #50db6e 0%, #54e4e9 100%);
}

.page-video .network-item h3::after {
    background: linear-gradient(90deg, #50db6e, #54e4e9);
}




.page-video .pricing-video {
    background-color: #fff;
}

.video-price-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.video-price-sub {
    font-size: 12px;
    font-weight: 400;
    margin-left: 8px;
    color: #666;
}

.video-price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.video-price-item {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.video-price-item .size {
    width: 30px;
}

.video-price-item .type {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    margin-left: 10px;
    font-size: 14px;
}

.video-price-item .slash {
    margin: 0 15px;
    color: #ccc;
    font-weight: 300;
}

.video-price-item .amount {
    font-size: 18px;
}

.video-price-note {
    margin-top: 40px;
    border-radius: 12px;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    position: relative;
    border: 2px solid #3da955; /* 動画用カラー */
}

.note-icon {
    background-color: #3db85e;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}

.note-text {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}






/* ----------------------------------------------------------------
   ▼ WEB 独自ルール (SP)
---------------------------------------------------------------- */




/* チラシ (動画: green) */
.page-web .hero {
    background: linear-gradient(135deg, #f61143 0%, #a3082c 100%);
}

.page-web .print-network {
    background: linear-gradient(135deg, #f85175 0%, #a3082c 100%);
}

.page-web .network-item h3::after {
    background: linear-gradient(90deg, #f85175, #a3082c);
}




.page-web .pricing-video {
    background-color: #fff;
}

.web-price-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.web-price-sub {
    font-size: 12px;
    font-weight: 400;
    margin-left: 8px;
    color: #666;
}

.web-price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.web-price-item {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.web-price-item .size {
    width: 30px;
}

.web-price-item .type {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    margin-left: 10px;
    font-size: 14px;
}

.web-price-item .slash {
    margin: 0 15px;
    color: #ccc;
    font-weight: 300;
}

.web-price-item .amount {
    font-size: 18px;
}

.web-price-note {
    margin-top: 40px;
    border-radius: 12px;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    position: relative;
    border: 2px solid #3da955; /* 動画用カラー */
}

.note-icon {
    background-color: #3db85e;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}

.note-text {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}








/* ================================================================
   02. PCセクションごとのルール (min-width: 1280px)
   ================================================================ */

@media (min-width: 1280px) {

    /* ------------------------------------------------------------
       ▼ サービス詳細ページ 共通部分 (PC)
    ------------------------------------------------------------ */

    .hero {
        padding: 180px 0 100px;
    }

    .hero h1 {
        font-size: 48px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 18px;
        color: #ffffff;
    }

    .section-title {
        font-size: 48px;
        margin-bottom: 25px;
    }

    .concept {
        padding: 120px 0;
    }

    .concept .innerWrap {
        display: flex;
        align-items: center;
        gap: 80px;
    }

    .concept-content {
        flex: 1;
        text-align: left;
        margin-bottom: 0;
    }

    .concept-content h2 {
        font-size: 42px;
        line-height: 1.5;
        margin-bottom: 40px;
    }

    .concept-text {
        font-size: 16px;
        line-height: 2.2;
    }

    .concept-image {
        width: 750px;
        flex-shrink: 0;
    }

    .section-title-large {
        font-size: 80px;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 32px;
    }

    .concern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 50px;
    }

    .concern-grid-center .concern-box {
        max-width: 520px;
    }

    .faq-section {
        padding: 50px 40px;
    }

    .faq-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .faq-list {
        gap: 30px;
    }

    .faq-item {
        padding-bottom: 30px;
    }

    .flow-subtitle {
        font-size: 48px;
        line-height: 1.5;
        margin-bottom: 40px;
    }

    .flow-intro p {
        font-size: 18px;
        line-height: 2.2;
        margin-bottom: 60px;
    }

    .flow-image {
        height: 500px;
    }

    .network-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 80px;
    }

    .network-item h3 {
        font-size: 24px;
    }

    .network-item h3::after {
        width: 70%;
        height: 4px;
    }


    /* ------------------------------------------------------------
       ▼ カタログ制作 固有部分 (PC)
    ------------------------------------------------------------ */

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .pricing-card {
        padding: 50px 40px;
    }





    /* ------------------------------------------------------------
       ▼ チラシ制作 独自ルール (PC)
    ------------------------------------------------------------ */

    .flyer-price-box {
        max-width: 900px;
        margin: 0 auto;
    }

    .flyer-price-heading {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .flyer-price-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 80px;
        row-gap: 30px;
    }

    .flyer-price-item {
        font-size: 24px;
    }

    .flyer-price-item .size {
        width: 40px;
    }

    .flyer-price-item .type {
        font-size: 20px;
        margin-left: 20px;
    }

    .flyer-price-item .amount {
        font-size: 28px;
    }

    .flyer-price-note {
        margin-top: 60px;
        padding: 30px 40px;
    }

    .note-text {
        font-size: 20px;
    }

    .note-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    /* ------------------------------------------------------------
       ▼ AI撮影・画像加工 独自ルール (PC)
    ------------------------------------------------------------ */

    .ai-highlight-banner p {
        font-size: 28px;
    }

    .ai-intro-flex {
        display: flex;
        align-items: center;
        gap: 80px;
    }

    .ai-intro-text {
        flex: 1;
    }

    .ai-intro-image {
        width: 500px;
    }

    .ai-intro-text h2 {
        font-size: 42px;
    }

    .ai-intro-text h3 {
        font-size: 24px;
    }

    /* Before After 横並び */
    .ba-container {
        grid-template-columns: 350px 1fr;
        gap: 60px;
    }

    .after-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ai-sample-group{
        padding-bottom: 280px;
    }

    .ai-samples-main-title {
        font-size: 42px;
        margin-bottom: 80px;
    }

    .ai-group-title {
        font-size: 28px;
    }

    .ai-cta-title {
        font-size: 32px;
    }

    .cta-main-msg {
        font-size: 42px;
    }



    

    /* ------------------------------------------------------------
       ▼ 会社概要 独自ルール (PC)
    ------------------------------------------------------------ */

    .company-message {
        padding: 120px 0;
    }

    .main-copy {
        font-size: 32px;
        margin-bottom: 50px;
        text-align: center;
    }

    .sub-copy {
        font-size: 18px;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .profile-table {
        max-width: 900px;
        margin: 0 auto;
    }

    .profile-table dl {
        display: flex;
        align-items: flex-start;
        padding: 30px 0;
    }

    .profile-table dt {
        width: 250px;
        margin-bottom: 0;
        font-size: 16px;
    }

    .profile-table dd {
        flex: 1;
        font-size: 18px;
    }





    /* ------------------------------------------------------------
       ▼ 動画制作 独自ルール (PC)
    ------------------------------------------------------------ */

    .video-price-box {
        max-width: 900px;
        margin: 0 auto;
    }

    .video-price-heading {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .video-price-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 80px;
        row-gap: 30px;
    }

    .video-price-item {
        font-size: 24px;
    }

    .video-price-item .size {
        width: 40px;
    }

    .video-price-item .type {
        font-size: 20px;
        margin-left: 20px;
    }

    .video-price-item .amount {
        font-size: 28px;
    }

    .video-price-note {
        margin-top: 60px;
        padding: 30px 40px;
    }

    .note-text {
        font-size: 20px;
    }

    .note-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }


        /* ------------------------------------------------------------
       ▼ WEB 独自ルール (PC)
    ------------------------------------------------------------ */

    .web-price-box {
        max-width: 900px;
        margin: 0 auto;
    }

    .web-price-heading {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .web-price-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 80px;
        row-gap: 30px;
    }

    .web-price-item {
        font-size: 24px;
    }

    .web-price-item .size {
        width: 40px;
    }

    .web-price-item .type {
        font-size: 20px;
        margin-left: 20px;
    }

    .web-price-item .amount {
        font-size: 28px;
    }

    .web-price-note {
        margin-top: 60px;
        padding: 30px 40px;
    }

    .note-text {
        font-size: 20px;
    }

    .note-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    
/* --- Parallax Video Section (NEW) --- */
.video-parallax-section {
    width: 100%;
    height: 60vh; /* スマホ時の高さ */
    position: relative;
    overflow: hidden;
}

.video-parallax-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.parallax-video {
    position: fixed; /* これによりパララックス効果が生まれます */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.parallax-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.parallax-title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}







}

@media (max-width: 1279px) {
    .styling-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ai-arrow-icon {
        width: 100%;
        height: 30px;
        transform: rotate(90deg); /* 矢印を下に */
    }

    .styling-main, 
    .styling-main-small, 
    .styling-main-angle,
    .styling-side-text {
        width: 100%;
    }

    .styling-sub-grid, 
    .styling-sub-grid-four,
    .styling-sub-grid-three,
    .col-five-grid,
    .col-four-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .page-catalog .flow-image {
        width: 100%;
        overflow-x: auto; /* 横スクロールを許可 */
        -webkit-overflow-scrolling: touch;
        margin-top: 30px;
        /* スクロールバーのデザイン（任意） */
        padding-bottom: 10px; 
    }

    .page-catalog .flow-image img {
        height: 300px;
        width: auto; 
        max-width: none;
        display: block;
    }

    /* スクロールを促すためのヒント（任意：スクロールバーを常に表示させる設定など） */
    .page-catalog .flow-image::-webkit-scrollbar {
        height: 4px;
    }
    .page-catalog .flow-image::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }




}