/* ==========================================================================
   構造確認用の最小限のスタイル
   ========================================================================== */

/* Image reset - 元のCSSと同じ設定 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   運用実績ページのレイアウト修正
   ========================================================================== */
.case-detail-page .news-article-section,
.works-page .news-grid-section {
    position: relative;
    z-index: 1;
    padding: 80px 0 120px;
    background: white;
}

body.case-detail-page .philosophy-hero-background,
body.works-page .philosophy-hero-background {
    position: static;
}

/* ==========================================================================
   ニュース詳細ページ
   ========================================================================== */

/* ニュース詳細ヒーローセクション */
.news-detail-hero-section {
    padding: 150px 0 80px;
    text-align: left;
    position: relative;
    z-index: 5;
}

.news-detail-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #333;
    margin: 0;
    line-height: 1;
}

.news-detail-subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin: 0;
}

/* ニュース記事セクション */
.news-article-section {
    position: relative;
    padding: 80px 0 120px;
    background: white;
}

.news-article-logo {
    text-align: center;
    margin-bottom: 60px;
}

.news-article-thumbnail {
    text-align: center;
    margin: 40px 0;
}

.news-thumbnail-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.news-article-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    text-align: left;
    margin: 0 0 40px 0;
    line-height: 1.4;
}

.news-article-content {
    position: relative;
    z-index: 10;
}

.news-article-date {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.news-article-body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.news-article-body p {
    margin-bottom: 20px;
}

/* 運用実績詳細ページ用のcase-descriptionスタイル */
.case-description {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.case-description p {
    margin-bottom: 20px;
}

.news-article-publish-date {
    text-align: right;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.back-to-news {
    text-align: center;
    margin-top: 60px;
}

.back-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    text-decoration: none;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.back-btn:hover {
    background: #FF1493;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

/* ==========================================================================
   経営理念ページ
   ========================================================================== */
.philosophy-hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 100px;
    overflow: hidden;
}

.philosophy-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .philosophy-hero-background {
        height: 20vh;
    }
}


.philosophy-hero-decoration {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content after philosophy-hero-background spacing */
.service-header,
.creator-detail-hero-section {
    margin-top: 400px;
}

.creators-hero-section,
.news-hero-section,
.creator-detail-hero-section,
.news-detail-hero-section {
    margin-top: -50vh;
}

/* トップページのservice-headerのmargin-topをリセット */
body:not(.creators-page):not(.news-page):not(.creator-detail-page):not(.service-page) .service-header {
    margin-top: 0;
}

/* サービスページの.service-headerにmargin-topを設定 */
body.page-template-page-service .service-header {
    margin-top: 500px!important;
}

@media (max-width: 1024px) {
    body.page-template-page-service .service-header {
        margin-top: 60px!important;
    }
}


@media (max-width: 1024px) {
    .service-header {
        margin-top: 350px;
    }
    
    .creators-hero-section,
    .news-hero-section,
    .creator-detail-hero-section,
    .news-detail-hero-section {
        margin-top: -40vh;
    }
}

/* クリエイター一覧とニュース一覧、クリエイター詳細、ニュース詳細ページでの.philosophy-hero-backgroundのposition無効化 */
.creators-page .philosophy-hero-background,
body.news-page .philosophy-hero-background,
body.creator-detail-page .philosophy-hero-background,
body.news-detail-page .philosophy-hero-background {
    position: static;
}

@media (max-width: 768px) {
    .service-header {
        margin-top: 200px;
    }
    
    .creators-hero-section,
    .news-hero-section,
    .creator-detail-hero-section,
    .news-detail-hero-section {
        margin-top: -30vh;
    }
}

@media (max-width: 480px) {
    .service-header {
        margin-top: 150px;
    }
    
    .creators-hero-section,
    .news-hero-section,
    .creator-detail-hero-section,
    .news-detail-hero-section {
        margin-top: -25vh;
    }
}



@media (max-width: 1024px) {

}

@media (max-width: 768px) {

}

@media (max-width: 480px) {

}

.philosophy-hero-decoration {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.philosophy-hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.philosophy-hero-titles {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.philosophy-hero-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    margin: 0;
}

.philosophy-title-separator {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    color: #333;
    font-weight: 400;
}

.philosophy-hero-subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #333;
    margin: 0;
}


/* 経営理念メインセクション */
.philosophy-main-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.philosophy-image-section {
    margin-bottom: 40px;
}

.philosophy-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.philosophy-message-section {
    position: relative;
    padding: 60px 0;
}

.philosophy-message-content {
    position: relative;
    text-align: left;
}

.philosophy-message-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    border-radius: 50% 30% 50% 70%;
    z-index: 1;
    opacity: 0.8;
}

.philosophy-message-text {
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.philosophy-message-line1,
.philosophy-message-line2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
    margin: 0 0 20px 0;
    color: #333;
}

/* 会社概要セクション */
.company-overview-section {
    position: relative;
    padding: 100px 0;
    color: white;
    z-index: 15;
}

.company-overview-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 60px;
    text-align: left;
    position: relative;
    z-index: 15;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.company-info-table {
    position: relative;
    z-index: 15;
    width: 100%;
}

.company-info-row {
    display: flex;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding: 20px 0;
    align-items: center;
}

.company-info-label {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    width: 200px;
    flex-shrink: 0;
    color: white;
}

.company-info-value {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    flex: 1;
    color: white;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .philosophy-hero-section {
        height: 40vh;
        min-height: 300px;
        padding: 0 40px;
    }
    
    .philosophy-hero-title {
        font-size: 2.5rem;
    }
    
    .philosophy-main-image {
        height: 200px;
    }
    
    .philosophy-message-text {
        max-width: 100%;
    }
    
    .philosophy-message-line1,
    .philosophy-message-line2 {
        font-size: 1.2rem;
    }
    
    .philosophy-message-decoration {
        width: 150px;
        height: 150px;
    }
    
    .company-info-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }
    
    .company-info-label {
        width: 100%;
        margin-bottom: 8px;
        font-size: 1rem;
    }
    
    .company-info-value {
        width: 100%;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .company-overview-section .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .philosophy-hero-section {
        padding: 0 20px;
    }
    
    .philosophy-hero-title {
        font-size: 2rem;
    }
    
    .philosophy-hero-subtitle {
        font-size: 1rem;
    }
    
    .company-overview-title {
        font-size: 2rem;
    }
    
    .company-overview-section .container {
        padding: 0 15px;
    }
}

/* ==========================================================================
   サービスページ
   ========================================================================== */

/* サービスヒーローセクション */
.service-hero-section {
    position: relative;
    padding: 100px 0 80px 0;
    background: white;
    overflow: hidden;
}

.service-hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.service-hero-shape {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50px 0 0 50px;
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #333;
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8), -1px -1px 2px rgba(255,255,255,0.8);
}

.service-subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.2rem;
    color: #666;
    margin: 0 0 40px 0;
}

.fan-marketing-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #FF69B4;
    margin: 0 0 30px 0;
    line-height: 1;
}

.service-description {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0 0 20px 0;
}

.service-note {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* プラットフォームロゴセクション */
.platform-logos-section {
    padding: 0;
    background: white;
}

.platform-logos-image {
    width: 100%;
    overflow: hidden;
}

.platform-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* SNS運用セクション */
.sns-operation-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.service-number {
    font-family: 'Poppins', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: #FF69B4;
    position: absolute;
    right: 100px;
    top: 30px;
    z-index: 1;
}

.service-03-section .service-number {
    color: white;
    bottom: 30px;
    top: auto;
}

.section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    margin: 0 0 40px 0;
    text-align: center;
}

.sns-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sns-content p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0 0 20px 0;
}

/* ファンクラブ運用セクション */
.fanclub-operation-section {
    position: relative;
    padding: 100px 0;
}

.service-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500vh;
    max-height: 8000px;
    z-index: 1;
    pointer-events: none;
}

/* Default background container settings - will be overridden by JavaScript */
.philosophy-section .hero-bg-container,
.fanclub-operation-section .hero-bg-container,
.creators-grid-section .hero-bg-container,
.creator-detail-content-section .hero-bg-container {
    height: 100vh; /* Initial fallback height */
}

.fanclub-operation-section .hero-bg-container {
    top: 300px;
}

@media (max-width: 768px) {
    .fanclub-operation-section .hero-bg-container {
        top: 200px;
    }
}

.service-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}


.fanclub-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.fanclub-content p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0 0 20px 0;
}

.fanclub-images {
    margin: 40px 0;
    text-align: center;
}

.fanclub-main-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
}

/* SNS運用画像セクション */
.sns-image-section {
    padding: 0;
    margin: 0;
}

.sns-image-full {
    width: 100%;
    margin: 0;
    padding: 0;
}

.sns-image-full-width {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* サービス03セクション */
.service-03-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.service-03-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-03-content p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    margin: 0 0 20px 0;
}

.service-03-section .section-title {
    color: white;
}

.service-03-images {
    margin: 40px 0;
    text-align: center;
}

.service-03-main-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
}

.service-03-images-full {
    width: 100%;
    margin: 40px 0;
    padding: 0;
}

.service-03-main-image-full {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* LINE問い合わせセクション */
.line-contact-section {
    padding: 80px 0;
    background: transparent;
    text-align: center;
}

.line-contact-text {
    margin-bottom: 30px;
}

.line-contact-text p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: white;
    margin-bottom: 8px;
    line-height: 1.6;
}

.line-contact-btn {
    display: inline-block;
    padding: 15px 50px;
    background: white;
    color: #06C755;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.line-contact-btn:hover {
    background: #06C755;
    color: white;
    -webkit-text-fill-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

/* サービス用 For Client/Creator セクション */
.service-contact-split {
    display: flex;
    height: 400px;
}

.service-contact-container {
    display: flex;
    width: 100%;
}

.service-contact-client,
.service-contact-creator {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.service-contact-client {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/800x400/333/FFFFFF?text=For+Client');
}

.service-contact-creator {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/800x400/666/FFFFFF?text=For+Creator');
}

.service-contact-overlay {
    text-align: center;
    color: white;
}

.service-contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 10px 0;
}

.service-contact-subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.2rem;
    margin: 0 0 20px 0;
}

.service-contact-text {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* サービス用 Recruitセクション */
.service-recruit-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    text-align: center;
}

.service-recruit-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin: 0 0 20px 0;
}

.service-recruit-subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.2rem;
    color: white;
    margin: 0 0 40px 0;
}

.service-recruit-btn {
    display: inline-block;
    padding: 20px 40px;
    background: white;
    color: #FF69B4;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-recruit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .service-hero-section {
        padding: 60px 0 40px 0;
    }
    
    .service-hero-shape {
        border-radius: 30px 0 0 30px;
    }
    
    .service-main-title {
        font-size: 2.5rem;
    }
    
    .fan-marketing-title {
        font-size: 2rem;
    }
    
    .service-number {
        font-size: 5rem;
        right: 20px;
        top: 20px;
    }
    
    
    .sns-operation-section .container,
    .fanclub-operation-section .container,
    .service-03-section .container {
        padding: 0 20px;
    }
    
    .service-contact-split {
        flex-direction: column;
        height: auto;
    }
    
    .service-contact-client,
    .service-contact-creator {
        height: 300px;
    }
    
    .service-recruit-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .service-hero-section {
        padding: 40px 0 30px 0;
    }
    
    .service-main-title {
        font-size: 2rem;
    }
    
    .fan-marketing-title {
        font-size: 1.5rem;
    }
    
    .service-number {
        font-size: 3rem;
        right: 15px;
        top: 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .sns-content p,
    .fanclub-content p,
    .service-03-content p {
        font-size: 0.9rem;
    }
    
    .line-contact-section {
        padding: 60px 20px;
    }
    
    .line-contact-text p {
        font-size: 1.3rem;
    }
    
    .sns-operation-section,
    .fanclub-operation-section,
    .service-03-section {
        margin: 40px 0;
        padding: 0;
    }
    
    .service-number {
        top: -40px;
    }
    
    .service-03-section .service-number {
        bottom: -90px;
        top: auto;
    }
    
    .service-recruit-title {
        font-size: 2rem;
    }
}

/* クリエイター一覧ページ専用スタイル */
.creators-hero-section {
    padding: 150px 0 80px;
    text-align: left;
}



.creators-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #333;
    margin: 0;
    line-height: 1;
}

.creators-subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin: 0;
}

.creators-grid-section {
    position: relative;
    padding: 80px 0 120px;
}


.creators-bg-container {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    height: 300vh;
    max-height: 5000px;
    z-index: 1;
    pointer-events: none;
}

/* フッター手前で背景画像をクリップ */
.creators-grid-section,
.news-grid-section {
    position: relative;
    overflow: hidden;
}

.creators-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.creators-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.creator-card {
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.creator-card:hover {
    transform: translateY(-5px);
}

.creator-card:hover .creator-image {
    transform: scale(1.05);
}

.creator-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.creator-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f5f5f5;
    transition: transform 0.3s ease;
}

.creator-image img {
    width: 115%; /* 画像をより大きく拡大して枠を完全に隠す */
    height: 115%;
    object-fit: cover;
    border-radius: 20px;
    transform: translate(-7.5%, -7.5%); /* 中央に配置するため調整 */
    /* PNG画像の白枠を隠すために少し内側にクロップ */
    filter: contrast(1.1) saturate(1.1);
}

.creator-image.placeholder {
    background: linear-gradient(135deg, #FFB6D7, #FF69B4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.creator-photo {
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 500px;
    object-fit: cover;
}

.creator-image.placeholder .photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFB6D7, #FF69B4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.creator-name {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .creators-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .creators-hero-section {
        padding: 150px 0 0;
        text-align: center;
    }
    
    .creators-main-title {
        font-size: 2.5rem;
    }
    
    .creators-subtitle {
        font-size: 1.2rem;
    }
    
    .creators-grid-section {
        padding: 60px 20px 80px;
    }
    
    .creators-bg-container {
        height: 400vh;
        max-height: 5000px;
        top: 150px;
    }
    
    .creators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .creators-main-title {
        font-size: 2rem;
    }
    
    .creators-subtitle {
        font-size: 1rem;
    }
    
    .creators-grid {
        gap: 15px;
    }
    
    .creator-name {
        font-size: 0.9rem;
    }
}

/* ニュース一覧ページ専用スタイル */
.news-hero-section {
    padding: 150px 0 80px;
    text-align: left;
}


.news-page .news-main-title,
.works-page .news-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #333;
    margin: 0;
    line-height: 1;
}

/* ニュースページと運用実績ページ専用のsubtitle設定 */
.news-page .news-subtitle,
.works-page .news-subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin: 0;
}

.news-grid-section {
    padding: 80px 0 120px;
    position: relative;
    z-index: 2;
}

.news-page .container,
.news-detail-page .container,
.works-page .container {
    padding: 0 20px;
}


.news-grid-section .news-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.news-grid-section .news-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* クリエイター詳細ページ専用スタイル */
.creator-detail-hero-section {
    padding: 150px 0 80px;
    text-align: left;
    position: relative;
    z-index: 5;
}

.creator-detail-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1;
}

.creator-detail-subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin: 0;
}

.creator-detail-content-section {
    position: relative;
    padding: 80px 0 120px;
}

.creator-detail-layout {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.creator-profile-info {
    flex: 1;
}

.creator-profile-card {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    z-index: 2;
}

.creator-name-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: white;
}

.creator-description {
    margin-bottom: 30px;
}

.creator-description p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 20px 0;
    color: white;
}

.sns-followers {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.followers-count {
    text-align: center;
}

.followers-label {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: white;
    display: block;
    margin-bottom: 10px;
}

.followers-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
}

.social-media-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-label {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    padding: 0;
    line-height: 1;
}


.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.social-note {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.creator-profile-photo {
    flex: 0 0 400px;
}

.creator-photo-container {
    position: relative;
    z-index: 2;
}

.creator-main-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.back-to-creators {
    text-align: center;
    position: relative;
    z-index: 2;
}

.back-btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #333;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-btn:hover {
    background: #FF69B4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

@media (max-width: 1024px) {
    .creator-detail-layout {
        gap: 40px;
    }
    
    .creator-profile-photo {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .creator-detail-hero-section {
        padding: 150px 0 0;
        text-align: center;
    }
    
    .creator-detail-main-title {
        font-size: 2.5rem;
    }
    
    .creator-detail-subtitle {
        font-size: 1.2rem;
    }
    
    .creator-detail-content-section {
        padding: 60px 20px 80px;
    }
    
    .creator-detail-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .creator-profile-photo {
        flex: none;
        order: -1;
    }
    
    .creator-profile-card {
        padding: 30px;
    }
    
    .creator-name-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .followers-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .creator-detail-main-title {
        font-size: 2rem;
    }
    
    .creator-detail-subtitle {
        font-size: 1rem;
    }
    
    .creator-profile-card {
        padding: 25px;
    }
    
    .creator-name-title {
        font-size: 1.3rem;
    }
    
    .creator-description p {
        font-size: 0.9rem;
    }
    
    .followers-number {
        font-size: 1.8rem;
    }
    
    .social-media-links {
        gap: 10px;
        margin-top: 15px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-link {
        display: inline-block;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-label {
        font-size: 0.9rem;
        line-height: 1;
        margin: 0;
        padding: 0;
    }
}

/* ==========================================================================
   スクロールアニメーション
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 {
    transition-delay: 0.2s;
}

.fade-in-delay-2 {
    transition-delay: 0.4s;
}

.fade-in-delay-3 {
    transition-delay: 0.6s;
}

.fade-in-delay-4 {
    transition-delay: 0.8s;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Zen Kaku Gothic New", Arial, sans-serif;
    line-height: 1.6;
}

/* メインコンテンツエリアで背景画像をクリッピング */
main {
    position: relative;
    overflow: hidden;
}

/* フッター要素がメインコンテンツの背景をクリップ */
footer {
    position: relative;
    z-index: 100;
    background: #f8f8f8;
}

/* ヘッダーセクション */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

.header-section.transparent {
    background: transparent;
    border-bottom: none;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header-logo .logo-link {
    display: block;
    text-decoration: none;
}

.logo-svg {
    width: 160px;
    height: 40px;
    transition: all 0.3s ease;
}

.logo-svg:hover {
    transform: scale(1.05);
}

.header-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 10px 8px;
    transition: all 0.3s ease;
}

.nav-main {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    line-height: 1;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.nav-sub {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    transition: color 0.3s ease;
}

.nav-link:hover .nav-main,
.nav-link:hover .nav-sub {
    color: #FF69B4;
}

/* ダークモード（スクロール時） */
.header-section.scrolled .nav-main {
    color: #333;
}

.header-section.scrolled .nav-sub {
    color: #666;
}

.header-section.scrolled .nav-link:hover .nav-main,
.header-section.scrolled .nav-link:hover .nav-sub {
    color: #FF69B4;
}

/* モバイルメニュー */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-section.scrolled .hamburger-line {
    background: #333;
}

/* モバイルレスポンシブ */
@media (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }
    
    .nav-main {
        font-size: 1rem;
    }
    
    .nav-sub {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .header-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 1999;
    }
    
    .header-nav.mobile-open {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 10px;
        padding: 30px 20px 40px 20px;
        height: 100%;
        overflow-y: auto;
    }
    
    .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        margin: 2px 0;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 25px 20px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
        border-radius: 10px;
        margin: 5px 0;
        transition: all 0.3s ease;
        background: transparent;
        min-height: 60px;
        display: flex;
        width: calc(100% - 40px);
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: rgba(255, 105, 180, 0.1);
        transform: translateX(5px);
    }
    
    .nav-link:active {
        transform: scale(0.98) translateX(5px);
    }
    
    .nav-main {
        color: #333;
        font-size: 1.3rem;
        margin-bottom: 0;
        font-weight: 600;
    }
    
    .nav-sub {
        color: #666;
        font-size: 0.95rem;
        font-weight: 400;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
        height: 60px;
    }
    
    body {
        padding-top: 0;
    }
    
    .header-nav {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .logo-svg {
        width: 140px;
        height: 35px;
    }
}

/* メインコンテンツのトップマージン */
body {
    padding-top: 0;
}

/* フッターセクション */
.footer-section {
    background: #f8f8f8;
    padding: 60px 0;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
}

.footer-left {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 30px;
}

.logo-placeholder {
    width: 200px;
    height: 60px;
    background: #FF69B4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.footer-company-info {
    margin-bottom: 30px;
}

.company-name,
.company-address,
.company-address-detail {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 5px;
}

.company-name {
    font-weight: 600;
}

.access-btn {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.access-btn:hover {
    background: #333;
    color: white;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-right {
    flex: 1;
    max-width: 600px;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 80px;
}

.footer-nav-link {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.95rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    padding: 5px 0;
    display: block;
}

.footer-nav-link:hover {
    color: #FF69B4;
}

/* フッター レスポンシブ */
@media (max-width: 1024px) {
    .footer-content {
        gap: 60px;
    }
    
    .footer-nav {
        gap: 60px;
    }
    
    .logo-placeholder {
        width: 180px;
        height: 55px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .footer-left {
        max-width: 100%;
        text-align: center;
        order: 1;
    }
    
    .footer-right {
        max-width: 100%;
        order: 2;
    }
    
    .footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 40px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-nav-link {
        font-size: 0.9rem;
        padding: 6px 0;
        text-align: left;
    }
    
    .logo-placeholder {
        margin: 0 auto 25px;
        width: 160px;
        height: 50px;
    }
    
    .footer-company-info {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 0;
        margin-top: 60px;
        margin-bottom: 50px;
    }
    
    .footer-content {
        gap: 30px;
        padding: 0 20px;
        text-align: center;
    }
    
    .footer-left {
        order: 1;
        text-align: center;
        width: 100%;
    }
    
    .footer-right {
        order: 2;
        width: 100%;
    }
    
    .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
        max-width: 100%;
        margin: 0;
    }
    
    .footer-nav-link {
        font-size: 0.95rem;
        display: block;
        padding: 16px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-align: center;
        text-decoration: none;
        color: #333;
        margin-bottom: 8px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }
    
    .footer-nav-link:hover,
    .footer-nav-link:active {
        background: rgba(255, 105, 180, 0.1);
        color: #FF69B4;
        transform: scale(1.02);
    }
    
    .company-name,
    .company-address,
    .company-address-detail {
        font-size: 0.9rem;
        text-align: center;
        white-space: nowrap;
    }
    
    .access-btn {
        padding: 14px 30px;
        font-size: 1rem;
        margin-top: 10px;
    }
    
    .logo-placeholder {
        width: 160px;
        height: 50px;
        font-size: 0.9rem;
        margin: 0 auto 25px;
    }
    
    .footer-company-info {
        margin-bottom: 25px;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

/* その他セクション */

/* クリエイターセクション */
.creator-section {
    position: relative;
    padding: 80px 0;
    overflow: visible;
    margin: 0;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 4500px;
    z-index: -10;
    pointer-events: none;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}



.creator-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 60px;
}

.creator-header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
}

.creator-titles {
    flex-shrink: 0;
}

.creator-title {
    font-family: "Poppins", sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: #333;
    margin: 0;
    line-height: 0.9;
}

.creator-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 5px 0 0 0;
    line-height: 1;
}

.creator-description-area {
    flex: 1;
    position: relative;
    padding-left: 20px;
    padding-top: 10px;
}

.creator-description-area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #333;
}

.creator-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* ==========================================================================
   Slick Carousel - Clean Implementation
   ========================================================================== */

.creator-carousel-section {
    padding: 60px 0 120px 0;
    overflow: hidden; /* 左右の端のスライドが画面外に切れるように */
    position: relative;
}

/* 固定ネオン枠は削除 - 拡大処理と一緒に画像に直接適用 */


/* シンプルなSlick設定 */
.creator-carousel {
    width: 100%;
    margin: 0 auto;
}

.creator-carousel-section .creator-carousel .slick-track {
    display: flex;
    align-items: center;
}

.creator-carousel .slick-list {
    overflow: visible;
    padding: 20px 0;
}

.creator-carousel .slick-slide {
    text-align: center;
    padding: 30px 15px;
    float: left;
    height: auto;
    min-height: 1px;
    overflow: hidden; /* PNG画像の白枠をクリップ */
}

.creator-carousel .slick-slide > div {
    width: 100%;
    outline: none;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* PNG画像の白枠をクリップ */
}

.creator-carousel-section .creator-carousel img {
    width: 300px; /* PC版はより大きく設定して余白を確実に隠す */
    height: 375px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    opacity: 0.6;
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 15px;
    object-position: center center;
    transform: scale(0.73); /* 元の220px相当にする (220/300 = 0.73) */
}

/* PC版の中央強調（JavaScriptで.center-highlightクラスが付与される） */
@media (min-width: 1025px) {
    .creator-carousel-section .creator-carousel .center-highlight img,
    .creator-carousel-section .creator-carousel .slick-center img {
        transform: scale(0.88); /* 0.73 × 1.2 = 0.876 */
        opacity: 1;
        filter: none;
        z-index: 5;
        position: relative;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 105, 180, 0.4);
        box-shadow: 
            0 0 15px rgba(255, 105, 180, 0.4),
            0 0 30px rgba(255, 105, 180, 0.3),
            0 0 45px rgba(255, 105, 180, 0.2);
        animation: softNeonGlow 3s ease-in-out infinite alternate;
    }
}

/* スマホ版とタブレット版の中央強調 - JavaScript制御による確実な方法 */
@media (max-width: 1024px) {
    /* 強制的に通常状態に戻すクラス */
    .creator-carousel-section .creator-carousel img.force-normal {
        transform: scale(0.85) !important;
        opacity: 0.6 !important;
        border: none !important;
        box-shadow: none !important;
        animation: none !important;
        z-index: auto !important;
        position: static !important;
        transition: all 0.3s ease !important;
    }
    
    /* 強制的に強調表示するクラス */
    .creator-carousel-section .creator-carousel img.force-highlight {
        transform: scale(1.02) !important; /* 0.85 × 1.2 = 1.02 */
        opacity: 1 !important;
        filter: none !important;
        z-index: 5 !important;
        position: relative !important;
        border: 2px solid rgba(255, 105, 180, 0.4) !important;
        box-shadow: 
            0 0 15px rgba(255, 105, 180, 0.4),
            0 0 30px rgba(255, 105, 180, 0.3),
            0 0 45px rgba(255, 105, 180, 0.2) !important;
        animation: softNeonGlow 3s ease-in-out infinite alternate !important;
        transition: all 0.3s ease !important;
    }
    
    /* fallback: Slickの標準クラスも残す */
    .creator-carousel-section .creator-carousel .slick-center img:not(.force-normal) {
        transform: scale(1.02) !important;
        opacity: 1 !important;
        filter: none !important;
        z-index: 5 !important;
        position: relative !important;
        border: 2px solid rgba(255, 105, 180, 0.4) !important;
        box-shadow: 
            0 0 15px rgba(255, 105, 180, 0.4),
            0 0 30px rgba(255, 105, 180, 0.3),
            0 0 45px rgba(255, 105, 180, 0.2) !important;
        animation: softNeonGlow 3s ease-in-out infinite alternate !important;
    }
}

@keyframes softNeonGlow {
    0% {
        box-shadow: 
            0 0 10px rgba(255, 105, 180, 0.2),
            0 0 20px rgba(255, 105, 180, 0.15),
            0 0 30px rgba(255, 105, 180, 0.1);
        border-color: rgba(255, 105, 180, 0.3);
    }
    100% {
        box-shadow: 
            0 0 20px rgba(255, 105, 180, 0.4),
            0 0 40px rgba(255, 105, 180, 0.25),
            0 0 60px rgba(255, 105, 180, 0.15);
        border-color: rgba(255, 105, 180, 0.5);
    }
}

/* 不要なSlickボタンを非表示 */
.creator-carousel-section .creator-carousel .slick-prev,
.creator-carousel-section .creator-carousel .slick-next,
.creator-carousel-section .creator-carousel .slick-arrow {
    display: none;
    visibility: hidden;
}

/* ボタンテキストの下線を削除 */
.creator-carousel-section .creator-name-btn {
    text-decoration: none;
}

/* Creator Slide Content */
.creator-carousel .slick-slide > div {
    text-align: center;
    outline: none;
    cursor: pointer;
}

/* Removed conflicting styles - using main .creator-carousel img rule above */



/* No Image Styling */
.creator-carousel .no-image {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* Custom Arrows */
.creator-carousel .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid #333;
    border-radius: 50%;
    background: white;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.creator-carousel .slick-arrow:hover {
    background: #FF69B4;
    color: white;
    border-color: #FF69B4;
}

.creator-carousel .slick-prev {
    left: -60px;
}

.creator-carousel .slick-next {
    right: -60px;
}

.creator-carousel .slick-arrow:before {
    display: none;
}

/* ==========================================================================
   Slick カルーセル レスポンシブ対応
   ========================================================================== */

/* タブレット */
@media (max-width: 1024px) {
    .creator-carousel-section .creator-carousel img {
        width: 210px; /* 透明余白をクロップするために拡大 */
        height: 265px;
        object-fit: cover;
        object-position: center center;
        background: transparent;
        border-radius: 15px;
        transform: scale(0.85); /* コンテナサイズに戻す */
    }
    
    
    .creator-carousel-section .creator-controls {
        margin-top: 60px;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .creator-carousel-section .creator-carousel img {
        width: 165px; /* 透明余白をクロップするために拡大 */
        height: 205px;
        object-fit: cover;
        object-position: center center;
        background: transparent;
        border-radius: 15px;
        transform: scale(0.85); /* コンテナサイズに戻す */
    }
    
    
    .creator-carousel-section .creator-controls {
        margin-top: 80px;
    }
    
    .creator-name-btn {
        font-size: 12px;
        padding: 8px 16px;
        width: 160px; /* スマホ用固定幅 */
    }
}
}

/* 極小スマートフォン */
@media (max-width: 480px) {
    .creator-carousel-section .creator-carousel img {
        width: 140px; /* 透明余白をクロップするために拡大 */
        height: 175px;
        object-fit: cover;
        object-position: center center;
        background: transparent;
        border-radius: 15px;
        transform: scale(0.85); /* コンテナサイズに戻す */
    }
    
    
    .creator-controls {
        margin-top: 25px;
        gap: 15px;
    }
    
    .creator-name-btn {
        font-size: 10px;
        padding: 6px 12px;
        width: 140px; /* 極小スマホ用固定幅 */
    }
}

.creator-image {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
    display: block;
}

.creator-carousel > div.active .creator-image {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}


.creator-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 120px;
}

.creator-name-btn {
    background: white;
    border: 2px solid #333;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 200px; /* 固定幅 */
    text-align: center;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.creator-name-btn:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Navigation Buttons */
.creator-nav-btn {
    background: white;
    border: 2px solid #333;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creator-nav-btn:hover {
    background: #FF69B4;
    border-color: #FF69B4;
    color: white;
}

/* Slick Dots */
.creator-carousel .slick-dots {
    bottom: -40px;
    text-align: center;
}

.creator-carousel .slick-dots li button:before {
    font-size: 12px;
    color: #ccc;
}

.creator-carousel .slick-dots li.slick-active button:before {
    color: #FF69B4;
}

.creator-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 4;
}

.creator-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.creator-nav-btn:hover {
    background: #333;
    color: white;
    transform: scale(1.1);
}


/* 経営理念セクション */
.philosophy-section {
    position: relative;
    padding: 0;
    margin: 0;
    margin-top: -50px;
    z-index: 10;
}

/* philosophyページのスマホサイズでのみmargin-topを調整 */
@media (max-width: 1024px) {
    body.philosophy-page .philosophy-section {
        margin-top: -220px;
    }
}

.philosophy-background {
    position: relative;
    width: 100%;
    padding: 0 40px;
    margin-left: calc((100vw - 1200px) / 2);
}

.philosophy-image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.philosophy-overlay-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.philosophy-overlay-subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.city-image {
    position: relative;
    left: -40px;
    width: calc(100% + max(40px, (100vw - 1200px) / 2 + 40px));
    height: 300px;
    object-fit: cover;
    margin-bottom: 40px;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 60px 40px;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 5;
    justify-content: space-between;
}

.philosophy-text-area {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    flex: 1;
}

.philosophy-text-area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #333;
}

/* 経営理念ページ専用スタイル */
.philosophy-page-text::before {
    display: none;
}

.philosophy-page-text .philosophy-text {
    text-align: left;
}


.philosophy-title {
    font-size: 5rem;
    font-weight: 900;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-align: left;
}

.philosophy-text {
    margin: 0;
}

.philosophy-line-1,
.philosophy-line-2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    color: #333;
    position: relative;
}

.philosophy-button {
    margin-left: 60px;
    flex-shrink: 0;
}

/* ヒーローセクション */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../assets/images/hero_section.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}




.hero-content {
    position: relative;
    z-index: 100;
    padding: 60px;
    max-width: 600px;
}

.hero-text {
    position: relative;
    z-index: 101;
    padding: 40px;
    color: white;
}

.hero-title {
    font-family: "Poppins", sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin: 0;
    text-align: left;
}

.title-line-1,
.title-line-2,
.title-line-3 {
    display: block;
}

.content-placeholder {
    border: 1px solid #999;
    padding: 10px;
    margin: 5px 0;
    background: #fff;
    font-size: 14px;
    color: #666;
}

/* レスポンシブ対応 - 構造確認用 */
@media (max-width: 768px) {
    
    .content-placeholder {
        padding: 8px;
        margin: 3px 0;
        font-size: 12px;
        word-wrap: break-word;
    }
    
    
    .content-placeholder strong {
        display: block;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    
    .content-placeholder {
        padding: 6px;
        font-size: 11px;
    }
    
}

@media (max-width: 320px) {
    
    .content-placeholder {
        padding: 4px;
        font-size: 10px;
    }
    
}

/* Fan Marketing サービスセクション */
.fan-marketing-section {
    padding: 80px 0;
    min-height: auto;
    border: none;
    margin: 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 背景画像を持つセクションではコンテナの幅制限を解除 */

/* クリエイターセクション レスポンシブ */
@media (max-width: 1024px) {
    .creator-content {
        padding: 0 30px;
        margin-bottom: 0;
    }
    
    
    .creator-carousel {
        gap: 20px;
        padding: 0 30px;
    }
    
    .creator-title {
        font-size: 4rem;
    }
    
    .creator-subtitle {
        font-size: 1.2rem;
    }
    
    .creator-description {
        font-size: 0.95rem;
    }
    
}

@media (max-width: 768px) {
    .creator-section {
        padding: 60px 0;
    }
    
     {
        padding: 0 20px;
        margin-bottom: -10px;
    }
    
    .creator-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .creator-title {
        font-size: 3rem;
    }
    
    .creator-subtitle {
        font-size: 1rem;
    }
    
    .creator-description-area {
        padding-left: 15px;
        padding-top: 5px;
    }
    
    .creator-description {
        font-size: 0.9rem;
    }
    
    
    .creator-carousel {
        gap: 20px;
        padding: 0 30px;
    }
    
    /* 削除: Slickと競合するため */
    
    .creator-controls {
        margin-top: 40px;
        gap: 25px;
    }
	
	.creator-carousel-section{
		padding:20px 0;
	}
    
}

@media (max-width: 480px) {
    .creator-section {
        padding: 40px 0;
    }
    
    .creator-title {
        font-size: 2.5rem;
    }
    
    .creator-subtitle {
        font-size: 1rem;
    }
    
    
    .creator-carousel {
        gap: 15px;
        padding: 0 15px;
    }
    
    /* 削除: Slickと競合するため */
    
    .creator-controls {
        margin-top: 30px;
        gap: 20px;
    }
    
    .creator-name-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .creator-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* 経営理念セクション レスポンシブ */
@media (max-width: 1024px) {
    .philosophy-background {
        padding: 0 30px;
    }
    
    .philosophy-content {
        padding: 0 30px 40px 30px;
    }
    
    .philosophy-title {
        font-size: 4rem;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .philosophy-background {
        padding: 0 20px;
        margin-left: 0;
    }
    
    .city-image {
        left: -20px;
        width: calc(100% + max(20px, (100vw - 1200px) / 2 + 20px));
        height: 250px;
        margin-bottom: 30px;
    }
    
    .philosophy-content {
        flex-direction: column;
        padding: 0 20px 40px 20px;
    }
    
    .philosophy-text-area {
        margin-bottom: 30px;
    }
    
    .philosophy-title {
        font-size: 3rem;
        text-align: left;
    }
    
    .philosophy-line-1,
    .philosophy-line-2 {
        font-size: 1.1rem;
    }
    
    .philosophy-button {
        margin-left: 30px;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .philosophy-background {
        padding: 0 15px;
        margin-left: 0;
    }
    
    .city-image {
        left: -15px;
        width: calc(100% + max(15px, (100vw - 1200px) / 2 + 15px));
        height: 200px;
        margin-bottom: 20px;
        margin-left: 0;
    }
    
    .philosophy-content {
        padding: 0 15px 30px 15px;
    }
    
    .philosophy-title {
        font-size: 2.5rem;
        text-align: left;
    }
    
    .philosophy-line-1,
    .philosophy-line-2 {
        font-size: 1rem;
    }
    
    .philosophy-text-area {
        padding-left: 20px;
    }
    
    .philosophy-button {
        margin-left: 20px;
    }
}

/* ヒーローセクション レスポンシブ */
@media (max-width: 1024px) {
    .hero-content {
        padding: 40px;
        max-width: 500px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-text {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        height: 80vh;
        min-height: 500px;
        align-items: flex-end;
        justify-content: flex-end;
    }
    
    .hero-content {
        padding: 20px;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-text {
        padding: 25px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 20vh;
    }
    
    .hero-content {
        padding: 40px 20px;
        text-align: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-text {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* 背景装飾 */


.service-bg-text {
    font-family: "Poppins", sans-serif;
    position: absolute;
    top: 100px;
    right: 20px;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 192, 203, 0.4);
    letter-spacing: 0.2em;
    z-index: 2;
    animation: slideRightToLeft 15s linear infinite;
    white-space: nowrap;
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(100px);
    }
    100% {
        transform: translateX(-100px);
    }
}

/* メインヘッダー */
.service-header {
    position: relative;
    z-index: 3;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-header-content {
    flex: 1;
}

@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        gap: 20px;
    }
}

.service-main-title {
    font-family: "Poppins", sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #333;
    line-height: 1.2;
    margin-bottom: 15px;
}

.service-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.fan-marketing-title {
    font-family: "Poppins", sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #FF69B4;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.service-description strong {
    font-weight: 700;
    color: #333;
}

.hover-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* サービスカード用レイアウト - 元のレイアウト */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    position: relative;
    z-index: 3;
    margin: 40px 0;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

/* サービスカード - 元のスタイル + 新装飾 */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
}

.service-card:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-card-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-card-icon {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-align: center;
}

.service-card-icon.fantia {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.service-card-icon.myfans {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
}

.service-card-icon.tiktok {
    background: linear-gradient(135deg, #000, #333);
}

.service-card-icon.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

.service-card-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.service-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-card-features {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 15px;
}

.service-card-button {
    margin-top: auto;
    text-align: center;
    padding-top: 10px;
}

/* クリエイター写真 - 画像位置に合わせて調整 */
.creator-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 4;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .creator-photo {
        width: 100%;
        aspect-ratio: 1;
    }
}

.creator-detail-hero-section .human-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.creator-image.placeholder .photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFB6D7, #FF69B4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* レスポンシブ対応 - Fan Marketing セクション */
@media (max-width: 1024px) {
    .pink-circle {
        width: 400px;
        height: 400px;
        top: -150px;
        right: -150px;
    }
    
    .service-bg-text {
        font-size: 8rem;
        top: 50px;
        right: 30px;
    }
    
    .creator-photo {
        width: 150px;
        aspect-ratio: 1;
        bottom: 30px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .fan-marketing-section {
        padding: 60px 0;
    }
    
    .fan-marketing-section .container {
        padding: 0 20px;
    }
    
    .pink-circle {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }
    
    .service-bg-text {
        font-size: 6rem;
        top: 30px;
        right: 20px;
    }
    
    .service-main-title {
        font-size: 3rem;
    }
    
    .fan-marketing-title {
        font-size: 2.5rem;
    }
    
    .service-subtitle {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fan-service-card {
        padding: 20px;
    }
    
    .fan-service-card:hover {
        transform: scale(1.05);
    }
    
    .creator-photo {
        position: static;
        margin: 0 auto;
        width: 90%;
        aspect-ratio: 1;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .fan-marketing-section {
        padding: 40px 0;
    }
    
    .fan-marketing-section .container {
        padding: 0 15px;
    }
    
    .pink-circle {
        width: 200px;
        height: 200px;
        top: -50px;
        right: -50px;
    }
    
    .service-bg-text {
        font-size: 5rem;
        top: 20px;
        right: 15px;
    }
    
    .service-main-title {
        font-size: 2.5rem;
    }
    
    .fan-marketing-title {
        font-size: 2rem;
    }
    
    .service-subtitle {
        font-size: 0.9rem;
    }
    
    .service-description {
        font-size: 0.75rem;
        line-height: 1.6;
    }
    
    .service-card {
        padding: 12px;
        margin-bottom: 0px;
    }
    
    .service-card-image {
        height: 120px;
        margin-bottom: 12px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.8rem;
    }
    
    .platform-icon {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

/* Works セクション */
.works-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.works-header {
    text-align: left;
    margin-bottom: 80px;
}

.works-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    color: white;
    -webkit-text-stroke: 2px white;
    text-stroke: 2px white;
    line-height: 1;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.works-subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: white;
    margin-top: 10px;
    margin-left: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.works-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    width: 100%;
    box-sizing: border-box;
}

.works-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.works-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.works-card-image {
    width: calc(100% - 30px);
    height: 200px;
    overflow: hidden;
    position: relative;
    margin: 15px 15px 0 15px;
    border-radius: 15px;
}

.works-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.works-card-content {
    padding: 30px 25px;
}

.works-card-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
    text-align: center;
}

.works-card-description {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.works-card-platforms {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.5;
    margin-bottom: 25px;
}

.works-card-button {
    text-align: center;
}

.works-bottom-button {
    text-align: center;
    padding-top: 20px;
}

.works-more-btn {
    background: white;
    color: #333;
    padding: 15px 40px;
    border: 2px solid #ddd;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.works-more-btn:hover {
    background: #333;
    color: white;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Works セクション レスポンシブ */
@media (max-width: 1024px) {
    .works-section {
        padding: 80px 0;
    }
    
    .works-title {
        font-size: 4rem;
    }
    
    .works-cards-grid {
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .works-card-content {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .works-section {
        padding: 60px 0;
    }
    
    .works-header {
        margin-bottom: 50px;
    }
    
    .works-title {
        font-size: 3rem;
    }
    
    .works-subtitle {
        font-size: 1rem;
    }
    
    .works-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .works-card-image {
        height: 180px;
        margin: 10px 10px 0 10px;
        width: calc(100% - 20px);
    }
    
    .works-card-content {
        padding: 20px;
    }
    
    .works-card-title {
        font-size: 1.2rem;
    }
    
    .works-card-description {
        font-size: 0.85rem;
    }
    
    .works-card-platforms {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .works-section {
        padding: 40px 0;
    }
    
    .works-section .container {
        padding: 0 20px;
    }
    
    .works-header {
        margin-bottom: 40px;
    }
    
    .works-title {
        font-size: 2.5rem;
    }
    
    .works-subtitle {
        font-size: 1rem;
    }
    
    .works-cards-grid {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .works-card-image {
        height: 160px;
        margin: 8px 8px 0 8px;
        width: calc(100% - 16px);
    }
    
    .works-card-content {
        padding: 15px;
    }
    
    .works-card-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .works-card-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .works-card-platforms {
        font-size: 0.7rem;
        margin-bottom: 20px;
    }
    
    .works-more-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* News セクション */
.news-section {
    padding: 100px 0;
    position: relative;
}

.news-header {
    text-align: left;
    margin-bottom: 80px;
}

.news-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    color: white;
    line-height: 1;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.news-subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: white;
    margin-top: 10px;
    margin-left: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-card-image {
    width: calc(100% - 30px);
    height: 180px;
    overflow: hidden;
    position: relative;
    margin: 15px 15px 0 15px;
    border-radius: 15px;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.news-card-logo {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.maekabu-logo {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.video-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 69, 180, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1;
}

.video-label span {
    font-size: 0.7rem;
    display: block;
    margin-top: 2px;
}

.news-card-content {
    padding: 25px 20px;
}

.news-card-date {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
    text-align: right;
}

.news-card-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.news-card-button {
    text-align: center;
}

.news-read-more-btn {
    background: white;
    color: #FF69B4;
    padding: 8px 20px;
    border: 2px solid #FF69B4;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.news-read-more-btn:hover {
    background: #FF69B4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.news-bottom-button {
    text-align: center;
    padding-top: 20px;
}

.news-more-btn {
    background: white;
    color: #333;
    padding: 15px 40px;
    border: 2px solid #ddd;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-more-btn:hover {
    background: #333;
    color: white;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* News セクション レスポンシブ */
@media (max-width: 1024px) {
    .news-section {
        padding: 80px 0;
    }
    
    .news-title {
        font-size: 4rem;
    }
    
    .news-cards-grid {
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .news-card-content {
        padding: 20px 15px;
    }
    
    .maekabu-logo {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }
    
    .news-header {
        margin-bottom: 50px;
    }
    
    .news-title {
        font-size: 3rem;
    }
    
    .news-subtitle {
        font-size: 1rem;
    }
    
    /* ニュース一覧・詳細ページ専用のタブレットスタイル */
    .news-page .news-main-title,
    .news-detail-page .news-main-title,
    .works-page .news-main-title {
        font-size: 3rem;
    }
    
    .news-detail-page .news-detail-main-title,
    .case-detail-page .news-detail-main-title {
        font-size: 3rem;
    }
    
    .news-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .news-card-image {
        height: 160px;
        margin: 10px 10px 0 10px;
        width: calc(100% - 20px);
    }
    
    .news-card-content {
        padding: 20px;
    }
    
    .news-card-title {
        font-size: 1rem;
    }
    
    .maekabu-logo {
        font-size: 1.6rem;
    }
    
    .video-label {
        font-size: 1rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 40px 0;
    }
    
    .news-section .container,
    .news-article-section .container {
        padding: 0 20px;
    }
    
    .news-header {
        margin-bottom: 40px;
    }
    
    .news-title {
        font-size: 2.5rem;
    }
    
    .news-subtitle {
        font-size: 1rem;
    }
    
    /* ニュース一覧・詳細ページ専用のスマホスタイル */
    .news-page .news-main-title,
    .news-detail-page .news-main-title,
    .works-page .news-main-title {
        font-size: 2rem;
        text-shadow: none;
        box-shadow: none;
    }
    
    .news-page .news-subtitle,
    .news-detail-page .news-subtitle,
    .works-page .news-subtitle {
        font-size: 1rem;
        text-shadow: none;
        box-shadow: none;
    }
    
    .news-hero-section,
    .news-detail-hero-section {
        padding: 150px 0 0;
        text-align: center;
    }
    
    .news-detail-page .news-detail-main-title,
    .case-detail-page .news-detail-main-title {
        font-size: 2rem;
    }
    
    .news-detail-page .news-detail-subtitle,
    .case-detail-page .news-detail-subtitle {
        font-size: 1rem;
    }
    
    .news-article-section .news-article-title {
        font-size: 1.4rem;
    }
    
    /* case-descriptionのスマホスタイル */
    .case-description {
        font-size: 0.9rem;
    }
    
    .news-cards-grid {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .news-card-image {
        height: 140px;
        margin: 8px 8px 0 8px;
        width: calc(100% - 16px);
    }
    
    .news-card-content {
        padding: 15px;
    }
    
    .news-card-date {
        font-size: 0.8rem;
    }
    
    .news-card-title {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .maekabu-logo {
        font-size: 1.4rem;
    }
    
    .video-label {
        font-size: 0.9rem;
        padding: 5px 8px;
        top: 10px;
        left: 10px;
    }
    
    .news-read-more-btn {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .news-more-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Contact セクション */
.contact-section {
    position: relative;
    z-index: 15;
}

.contact-header {
    padding: 100px 0 60px 0;
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    color: white;
    line-height: 1;
    margin: 0;
    text-align: left;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.contact-subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: white;
    margin-top: 10px;
    margin-left: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* クリエイター詳細ページのみ */
.creator-detail-page .contact-title {
    color: #333;
    text-shadow: none;
}

.creator-detail-page .contact-subtitle {
    color: #333;
    text-shadow: none;
}

.contact-split-area {
    display: flex;
    min-height: 400px;
}

.contact-client,
.contact-creator {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contact-client {
    background-image: url('../assets/images/forclient_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-creator {
    background-image: url('../assets/images/forcreator_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-client-overlay,
.contact-creator-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-start;
    padding: 60px 40px 20px 40px;
}

.contact-client-overlay h1,
.contact-client-overlay h2,
.contact-client-overlay h3,
.contact-client-overlay p,
.contact-client-overlay span,
.contact-client-overlay a,
.contact-client-overlay div {
    color: white;
}



.contact-split-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1;
}

.contact-creator .contact-split-title {
    color: white;
}

.contact-split-content p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.contact-creator .contact-split-content p {
    color: white;
}

.contact-sample-text {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.contact-creator .contact-sample-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Recruit セクション */
.recruit-section {
    padding: 80px 0;
    text-align: center;
}

.recruit-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1;
}

.recruit-subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 40px;
}

.recruit-button {
    text-align: center;
}

.recruit-btn {
    background: white;
    color: #333;
    padding: 15px 40px;
    border: 2px solid #ddd;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.recruit-btn:hover {
    background: #333;
    color: white;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Contact セクション レスポンシブ */
@media (max-width: 1024px) {
    .contact-header {
        padding: 80px 0 50px 0;
    }
    
    .contact-title {
        font-size: 4rem;
    }
    
    .contact-split-area {
        min-height: 350px;
    }
    
    .contact-client-overlay,
    .contact-creator-overlay {
        padding: 40px 30px;
    }
    
    .contact-split-title {
        font-size: 2.5rem;
    }
    
    .recruit-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 60px 0 40px 0;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-split-area {
        flex-direction: column;
        min-height: auto;
    }
    
    .contact-client,
    .contact-creator {
        min-height: 300px;
    }
    
    .contact-client-overlay,
    .contact-creator-overlay {
        padding: 40px 20px;
        text-align: center;
        align-items: center;
    }
    
    .contact-split-title {
        font-size: 2.2rem;
    }
    
    .contact-split-content p {
        font-size: 1rem;
    }
    
    .recruit-section {
        padding: 60px 0;
    }
    
    .recruit-title {
        font-size: 3rem;
    }
    
    .recruit-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-header {
        padding: 40px 0 30px 0;
    }
    
    .contact-header .container {
        padding: 0 20px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-client,
    .contact-creator {
        min-height: 250px;
    }
    
    .contact-client-overlay,
    .contact-creator-overlay {
        padding: 30px 15px;
    }
    
    .contact-split-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .contact-split-content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .contact-sample-text {
        font-size: 0.8rem;
    }
    
    .recruit-section {
        padding: 40px 0;
    }
    
    .recruit-section .container {
        padding: 0 20px;
    }
    
    .recruit-title {
        font-size: 2.5rem;
    }
    
    .recruit-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .recruit-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* 追随ボタングループ */
.floating-buttons {
    position: fixed;
    top: 90px;
    right: 20px;
    display: flex;
    flex-direction: row;
    gap: 0;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 0;
    text-decoration: none;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    text-align: center;
}

.floating-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* クリエイター募集ボタン */
.creator-btn {
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
}

.creator-btn:hover {
    background: linear-gradient(135deg, #FF1493, #C2185B);
}

/* 従業員募集ボタン */
.employee-btn {
    background: #666666;
    color: white;
}

.employee-btn:hover {
    background: #555555;
}

/* LINEボタン */
.line-btn {
    background: white;
    color: #333;
    border: 2px solid #ddd;
}

.line-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.line-btn .btn-icon {
    background: #00C300;
}

.line-btn .icon {
    color: white;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    flex-shrink: 0;
}

.btn-icon .icon {
    font-size: 14px;
    font-weight: bold;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.btn-title {
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-subtitle {
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.9;
}

/* 追随ボタン レスポンシブ */
@media (max-width: 768px) {
    .floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        transform: none;
        flex-direction: row;
        gap: 0;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        border-top: none;
    }
    
    .floating-btn {
        flex: 1;
        flex-direction: column;
        gap: 6px;
        padding: 12px 8px;
        min-width: auto;
        border-radius: 0;
        text-align: center;
        font-size: 0.75rem;
    }
    
    .floating-btn:hover {
        transform: translateY(-2px);
    }
    
    .btn-icon {
        width: 28px;
        height: 28px;
        margin: 0 auto;
    }
    
    .btn-icon .icon {
        font-size: 12px;
    }
    
    .btn-text {
        align-items: center;
    }
    
    .btn-title {
        font-size: 0.75rem;
        line-height: 1.1;
    }
    
    .btn-subtitle {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .floating-btn {
        padding: 10px 6px;
        font-size: 0.7rem;
    }
    
    .btn-icon {
        width: 24px;
        height: 24px;
    }
    
    .btn-icon .icon {
        font-size: 10px;
    }
    
    .btn-title {
        font-size: 0.7rem;
    }
    
    .btn-subtitle {
        font-size: 0.6rem;
    }
}

@media print {
    .header-section,
    .hero-section,
    .philosophy-section,
    .service-section,
    .creator-section,
    .contact-section,
    .button-group-section,
    .footer-section {
        border: 1px solid #000;
        background: white;
    }
    
    .content-placeholder {
        border: 1px solid #333;
        background: white;
        color: #000;
    }
}