/*
Theme Name: Fantia Creator Theme
Theme URI: https://xbxyvuke.manus.space/
Author: Manus
Author URI: https://manus.space/
Description: A custom WordPress theme for Fantia creator introduction website.
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fantia-creator
*/

/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

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

/* ヒーローセクション */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 120, 180, 0.1) 0%, rgba(120, 200, 255, 0.1) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="%23ff78b4" stop-opacity="0.1"/><stop offset="100%" stop-color="%2378c8ff" stop-opacity="0.1"/></linearGradient></defs><circle cx="20" cy="20" r="15" fill="url(%23g)"/><circle cx="80" cy="40" r="10" fill="url(%23g)"/><circle cx="40" cy="80" r="8" fill="url(%23g)"/><circle cx="90" cy="90" r="12" fill="url(%23g)"/><circle cx="10" cy="60" r="6" fill="url(%23g)"/></svg>') repeat;
    animation: float 25s ease-in-out infinite;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #666666;
    font-weight: 300;
    text-align: center;
    line-height: 1.6;
}

/* CTAボタン - 基本スタイル */
.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #ff78b4 0%, #ff5fa3 50%, #78c8ff 100%);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 120, 180, 0.35);
    position: relative;
    overflow: hidden;
    text-align: center;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 120, 180, 0.45);
    color: #ffffff !important;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 25px rgba(255, 120, 180, 0.4);
}

/* パルスアニメーション付きCTAボタン */
.cta-button-pulse {
    display: inline-block;
    padding: 18px 52px;
    background: linear-gradient(135deg, #ff78b4 0%, #ff5fa3 100%);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(255, 120, 180, 0.4);
    position: relative;
    animation: pulse 2s infinite;
}

.cta-button-pulse:hover {
    color: #ffffff !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 12px 35px rgba(255, 120, 180, 0.4);
    }
    50% {
        box-shadow: 0 12px 45px rgba(255, 120, 180, 0.6);
    }
    100% {
        box-shadow: 0 12px 35px rgba(255, 120, 180, 0.4);
    }
}

/* セカンダリCTAボタン */
.cta-button-secondary {
    display: inline-block;
    padding: 14px 40px;
    background: #ffffff;
    color: #ff78b4;
    text-decoration: none;
    border: 2px solid #ff78b4;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.cta-button-secondary span {
    position: relative;
    z-index: 1;
}

.cta-button-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-secondary:hover {
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* 緊急性を演出するCTAボタン */
.cta-button-urgent {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.35);
    position: relative;
    animation: shake 4s infinite;
}

.cta-button-urgent:hover {
    color: #ffffff !important;
}

@keyframes shake {
    0%, 90%, 100% {
        transform: translateX(0);
    }
    92%, 96% {
        transform: translateX(-2px);
    }
    94%, 98% {
        transform: translateX(2px);
    }
}

/* フローティングCTAボタン（固定位置） */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff78b4 0%, #ff5fa3 100%);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 120, 180, 0.4);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.floating-cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 120, 180, 0.5);
}

.floating-cta-text {
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff78b4;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-cta:hover .floating-cta-text {
    opacity: 1;
    transform: translateX(0);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .cta-button {
        padding: 14px 36px;
        font-size: 1rem;
    }
    
    .cta-button-pulse {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
    
    .cta-button-secondary {
        padding: 12px 32px;
        font-size: 0.95rem;
    }
    
    .cta-button-urgent {
        padding: 14px 36px;
        font-size: 1rem;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta-button {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #999999;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* ナビゲーション */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.nav-logo h2 {
    font-weight: 700;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .nav-container {
        height: 50px;
        padding: 0 15px;
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
    }
}

.nav-logo h2 a {
    background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff78b4;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* セクション共通スタイル */
section {
    padding: 100px 0;
    background: #ffffff;
}

/* リンクを含むCTAボタンの文字色を強制的に白に */
a.cta-button,
a.cta-button-pulse,
a.cta-button-secondary span,
a.cta-button-urgent,
a.cta-button-limited,
a.cta-button-icon {
    color: #ffffff !important;
    text-decoration: none !important;
}

a.cta-button:visited,
a.cta-button-pulse:visited,
a.cta-button-urgent:visited,
a.cta-button-icon:visited {
    color: #ffffff !important;
}

a.cta-button:focus,
a.cta-button-pulse:focus,
a.cta-button-urgent:focus,
a.cta-button-icon:focus {
    color: #ffffff !important;
    outline: none;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #333333;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* 人気クリエイターセクション */
.popular-posts-section {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.post-card {
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 120, 180, 0.15);
    border-color: rgba(255, 120, 180, 0.3);
}

.post-card-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 アスペクト比（正方形） */
    overflow: hidden;
    background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
}

.post-card-thumbnail a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.post-card-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card-thumbnail img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.post-card-title a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card-title a:hover {
    color: #ff78b4;
}

.post-card-excerpt {
    color: #666666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 詳細記事ページ (Single Post) */
.single-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
}

.single-post-article {
    background: #ffffff;
    padding: 2rem 3rem;
    border-radius: 15px;
    margin-top: 100px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.single-post-article .entry-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1.5rem;
}

.single-post-article .entry-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.single-post-article .post-thumbnail {
    margin-bottom: 2.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.single-post-article .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-article .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
}

.single-post-article .entry-content h1,
.single-post-article .entry-content h2,
.single-post-article .entry-content h3,
.single-post-article .entry-content h4,
.single-post-article .entry-content h5,
.single-post-article .entry-content h6 {
    color: #333333;
    margin-top: 2.5em;
    margin-bottom: 1em;
    line-height: 1.4;
}

.single-post-article .entry-content p {
    margin-bottom: 1.5em;
}

.single-post-article .entry-content a {
    color: #ff78b4;
    text-decoration: underline;
}

.single-post-article .entry-content a:hover {
    text-decoration: none;
}

.single-post-article .entry-content ul,
.single-post-article .entry-content ol {
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.single-post-article .entry-content blockquote {
    border-left: 3px solid #ff78b4;
    padding-left: 1.5em;
    margin: 2em 0;
    font-style: italic;
    color: #777777;
}

/* クリエイター体験談セクション */
.author-experience-section {
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
  padding-bottom: 100px;
}

.author-experience-content-wrapper {
  max-width: 800px;
  margin: 3rem auto 0;
  background: #ffffff;
  padding: 2rem 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.author-experience-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555555;
}

.author-experience-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 2rem;
}

.author-experience-content h4 {
  color: #333333;
  font-size: 1.4rem;
  margin-top: 2.5em;
  margin-bottom: 1em;
  line-height: 1.4;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.author-experience-content p {
  margin-bottom: 1.5em;
}

.author-experience-content ol {
  margin-left: 1.5em;
  margin-bottom: 1.5em;
  padding-left: 1em;
}

.author-experience-content li {
  margin-bottom: 1.2em;
}

.author-experience-content strong {
    color: #ff78b4;
    font-weight: 700;
}

.author-experience-content br {
    display: block;
    content: "";
    margin-top: 0.5em;
}

/* クリエイター一覧ページ */
.popular-posts-archive-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
}

.popular-posts-archive-container .page-header {
    margin-top: 100px;
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1.5rem;
}

.popular-posts-archive-container .page-title {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.post-list-item {
    display: flex;
    gap: 1.5rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.post-list-item:hover {
    border-color: rgba(255, 120, 180, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 120, 180, 0.15);
}

.post-list-item-thumbnail {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.post-list-item-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.post-list-item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.post-list-item-content {
    flex-grow: 1;
}

.post-list-item-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.post-list-item-title a {
    color: #333333;
    text-decoration: none;
}
.post-list-item-title a:hover {
    color: #ff78b4;
}

.post-list-item-excerpt {
    color: #666666;
    font-size: 0.95rem;
}

/* ページネーション */
.pagination {
    margin-top: 3rem;
    text-align: center;
}
.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    color: #666666;
    text-decoration: none;
    background: #f5f5f5;
    transition: all 0.3s ease;
}
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
    color: #ffffff;
}
.pagination .page-numbers.current {
    background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
    color: #ffffff;
    font-weight: 700;
}

/* イチオシクリエイターセクション */
.featured-creators-section {
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    padding: 80px 0;
}

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

.creator-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.creator-item:hover {
    box-shadow: 0 5px 20px rgba(255, 120, 180, 0.15);
}

.creator-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.creator-header:hover {
    background: rgba(255, 120, 180, 0.05);
}

.creator-basic-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.creator-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.creator-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.creator-category {
    background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.toggle-icon {
    color: #999999;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.creator-item.active .toggle-icon {
    transform: rotate(180deg);
}

.creator-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.creator-details {
    padding: 0 20px 20px;
    border-top: 1px solid #f0f0f0;
}

.creator-description {
    color: #666666;
    line-height: 1.6;
    margin: 20px 0;
    font-size: 0.95rem;
}

.creator-stats {
    display: flex;
    gap: 25px;
    margin: 15px 0;
}

.stat-item {
    color: #888888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.creator-link-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.creator-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 120, 180, 0.3);
}

/* 特別なクリエイターリンクボタン */
.creator-link-button-special {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ffb6c1 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
    position: relative;
    overflow: hidden;
}

.creator-link-button-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.creator-link-button-special:hover::before {
    left: 100%;
}

.creator-link-button-special .button-text {
    position: relative;
    z-index: 1;
}

.creator-link-button-special .button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.creator-link-button-special:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
    background: linear-gradient(135deg, #ff1493 0%, #ff1493 50%, #ff69b4 100%);
}

.creator-link-button-special:hover .button-arrow {
    transform: translateX(5px);
}

.creator-link-button-special:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.35);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .creator-link-button-special {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}
    .featured-creators-section {
        padding: 60px 0;
    }
    
    .creator-header {
        padding: 15px;
    }
    
    .creator-basic-info {
        gap: 10px;
    }
    
    .creator-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .creator-name {
        font-size: 1rem;
    }
    
    .creator-category {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
    
    .creator-details {
        padding: 0 15px 15px;
    }
    
    .creator-description {
        font-size: 0.85rem;
        margin: 15px 0;
    }
    
    .creator-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        font-size: 0.85rem;
    }
    
    .creator-link-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}
.footer {
    background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
    color: #ffffff;
    padding: 20px 0 10px;
    text-align: center;
}

.footer-desktop-only {
    display: block;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 10px;
    padding: 0 20px;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    opacity: 0.9;
}

.footer-section ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.copyright {
    font-size: 0.7rem;
    margin: 0;
    opacity: 0.8;
}

/* モバイル表示時 - フッターを最小限に */
@media (max-width: 768px) {
    .footer {
        padding: 8px 0 !important;
        background: linear-gradient(135deg, #ff78b4 0%, #78c8ff 100%);
    }
    
    .footer-desktop-only {
        display: none !important;
    }
    
    .footer-content {
        display: none !important;
    }
    
    .footer-section {
        display: none !important;
    }
    
    .copyright {
        font-size: 0.6rem !important;
        margin: 0 !important;
        padding: 0 10px !important;
        line-height: 1.2 !important;
        opacity: 0.9;
    }
}

/* アニメーション */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
    }

    .hero-content {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .post-card {
        border-radius: 15px;
    }

    .post-card-content {
        padding: 1rem;
    }

    .post-card-title {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .post-card-excerpt {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #666666;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .post-list-item {
        flex-direction: row;
        align-items: flex-start;
        padding: 1rem;
        gap: 1rem;
    }

    .post-list-item-thumbnail {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
    }
    
    .post-list-item-content {
        flex: 1;
        min-width: 0;
    }

    .post-list-item-title {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.3rem;
    }

    .post-list-item-excerpt {
        font-size: 0.85rem;
        line-height: 1.4;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .single-post-article {
        padding: 1rem;
        margin-top: 80px;
    }

    .single-post-article .entry-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .single-post-article .entry-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .single-post-article .entry-content h1 {
        font-size: 1.5rem;
    }

    .single-post-article .entry-content h2 {
        font-size: 1.3rem;
    }

    .single-post-article .entry-content h3 {
        font-size: 1.2rem;
    }

    .single-post-article .entry-content h4 {
        font-size: 1.1rem;
    }

    .single-post-article .entry-content p {
        margin-bottom: 1em;
    }

    .author-experience-content-wrapper {
        padding: 1rem;
    }
    
    .author-experience-content h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .author-experience-content h4 {
        font-size: 1.1rem;
        margin-top: 2em;
        margin-bottom: 0.8em;
    }
    
    .author-experience-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .author-experience-content p {
        margin-bottom: 1em;
    }

    .popular-posts-archive-container {
        padding: 30px 15px;
    }

    .popular-posts-archive-container .page-header {
        margin-top: 80px;
        margin-bottom: 2rem;
    }

    .popular-posts-archive-container .page-title {
        font-size: 1.5rem;
    }

    .pagination {
        margin-top: 2rem;
    }

    .pagination .page-numbers {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        margin: 15px;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .copyright {
        font-size: 0.75rem;
    }
}