/* ===================================
   基本設定
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #1A659E;
    --light-bg: #F7F9FC;
    --dark-text: #2C3E50;
    --light-text: #6C757D;
    --white: #FFFFFF;
    --success: #28A745;
    --warning: #FFC107;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--dark-text);
    line-height: 1.8;
    background-color: var(--white);
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   ヘッダー
   =================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 900;
}

.logo i {
    color: var(--secondary-color);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* モバイルメニューボタン */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--dark-text);
    font-weight: 500;
}

/* ===================================
   ボタン
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ===================================
   ファーストビュー
   =================================== */
.hero {
    background: linear-gradient(135deg, rgba(0, 32, 63, 0.88) 0%, rgba(0, 78, 137, 0.88) 100%), 
                url('../images/hero-background.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 900;
}

.highlight {
    color: #FFD93D;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-video {
    animation: fadeInRight 1s;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.youtube-thumbnail {
    cursor: pointer;
    position: relative;
}

.youtube-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.youtube-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 107, 53, 1);
}

.video-embed-small {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.video-embed-small iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-embed-small img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s;
}

.video-embed-small:hover img {
    transform: scale(1.05);
}

.play-button-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-button-small i {
    font-size: 1.5rem;
    color: white;
    margin-left: 3px;
}

.video-embed-small:hover .play-button-small {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255, 107, 53, 1);
}

.video-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 15px 15px;
    border-radius: 0 0 15px 15px;
    z-index: 1;
}

.video-title-overlay p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
    text-align: center;
}

.video-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 60px 30px;
    text-align: center;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.video-placeholder p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.video-placeholder small {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===================================
   セクション共通
   =================================== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 900;
    color: var(--secondary-color);
}

.section-title .highlight {
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 50px;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* ===================================
   お悩みセクション
   =================================== */
.problems {
    background: var(--light-bg);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.problem-icon i {
    font-size: 2rem;
    color: var(--white);
}

.problem-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.solution-banner {
    background: linear-gradient(135deg, var(--primary-color), #E55A2B);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.solution-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.solution-banner i {
    color: #FFD93D;
    margin-right: 10px;
}

/* ===================================
   選ばれる理由
   =================================== */
.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reason-card {
    display: flex;
    gap: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.reason-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(10px);
}

.reason-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 80px;
}

.reason-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.reason-content h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.reason-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.reason-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--light-bg);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===================================
   制作実績プレビュー
   =================================== */
.portfolio-preview {
    background: var(--light-bg);
}

.portfolio-category {
    margin-bottom: 50px;
}

.portfolio-category h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.portfolio-category h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-card .video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 80px 30px;
    text-align: center;
}

.video-card .video-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.video-card .video-placeholder p {
    font-size: 1rem;
}

/* ===================================
   お客様の声
   =================================== */
.testimonials-preview {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #FFD93D;
}

.stars i {
    font-size: 1rem;
}

.client-type {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 600;
}

.testimonial-text {
    line-height: 1.8;
    font-size: 0.95rem;
}

.testimonial-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ===================================
   制作の流れ
   =================================== */
.process-preview {
    background: var(--light-bg);
}

.process-steps {
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.process-step p {
    color: var(--light-text);
}

.process-arrow {
    text-align: center;
    padding: 20px 0;
    color: var(--primary-color);
    font-size: 2rem;
}

/* ===================================
   FAQ
   =================================== */
.faq-preview {
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.faq-answer {
    padding-left: 40px;
    line-height: 1.8;
    color: var(--dark-text);
}

/* ===================================
   CTA
   =================================== */
.cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 900;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.email-info {
    margin-top: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.email-info i {
    margin-right: 10px;
}

/* ===================================
   フッター
   =================================== */
.footer {
    background: #1a1a2e;
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section h3 i {
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

/* ===================================
   アニメーション
   =================================== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   レスポンシブ
   =================================== */
@media (max-width: 968px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .reason-card {
        flex-direction: column;
        text-align: center;
    }
    
    .reason-number {
        margin: 0 auto;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .sp-only {
        display: block;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
}

/* PC表示のみ */
.sp-only {
    display: none;
}

@media (max-width: 576px) {
    .sp-only {
        display: inline;
    }
}

/* ===================================
   ページヘッダー
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 900;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ===================================
   サービスページ
   =================================== */
.service-overview {
    padding: 60px 0;
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
    color: var(--dark-text);
}

.service-genres {
    background: var(--light-bg);
}

.genres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.genre-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.genre-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.genre-card.featured {
    border: 3px solid var(--primary-color);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.genre-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.genre-icon i {
    font-size: 2rem;
    color: var(--white);
}

.genre-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.genre-card p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.genre-features {
    list-style: none;
    padding: 0;
}

.genre-features li {
    padding: 8px 0;
    color: var(--dark-text);
}

.genre-features i {
    color: var(--success);
    margin-right: 10px;
}

.one-stop-service {
    background: var(--white);
}

.one-stop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.one-stop-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.one-stop-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.one-stop-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.one-stop-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.one-stop-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.one-stop-card p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.animation-styles {
    background: var(--light-bg);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.style-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.style-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.style-image i {
    font-size: 2.5rem;
    color: var(--white);
}

.style-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.style-card p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.service-strengths {
    background: var(--white);
}

.strengths-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.strength-item {
    display: flex;
    gap: 25px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    align-items: flex-start;
    transition: all 0.3s;
}

.strength-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.strength-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strength-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.strength-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.strength-content p {
    line-height: 1.8;
}

/* ===================================
   制作実績ページ
   =================================== */
.portfolio-stats {
    background: var(--light-bg);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--light-text);
    font-weight: 600;
}

.portfolio-category-section {
    padding: 80px 0;
}

.portfolio-category-section.alt-bg {
    background: var(--light-bg);
}

.portfolio-category-section.medical-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.category-description {
    text-align: center;
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.specialty-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    margin: 20px auto;
    display: block;
    width: fit-content;
}

.specialty-badge i {
    margin-right: 10px;
}

.portfolio-items {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.portfolio-item:nth-child(even) {
    direction: rtl;
}

.portfolio-item:nth-child(even) > * {
    direction: ltr;
}

.portfolio-video {
    width: 100%;
}

.portfolio-video .video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 100px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.portfolio-video .video-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.video-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.portfolio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.meta-tag {
    background: var(--light-bg);
    color: var(--secondary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.meta-tag i {
    margin-right: 5px;
    color: var(--primary-color);
}

.portfolio-description {
    line-height: 1.8;
    color: var(--dark-text);
}

.portfolio-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.portfolio-features li {
    padding: 5px 0;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.portfolio-features i {
    color: var(--success);
    margin-right: 8px;
    font-size: 0.85rem;
}

.video-embed-portfolio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.video-embed-portfolio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-embed-portfolio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s;
}

.video-embed-portfolio:hover img {
    transform: scale(1.05);
}

.play-button-portfolio {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-button-portfolio i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.video-embed-portfolio:hover .play-button-portfolio {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255, 107, 53, 1);
}

@media (max-width: 968px) {
    .portfolio-item {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item:nth-child(even) {
        direction: ltr;
    }
}

/* ===================================
   制作の流れページ
   =================================== */
.process-overview {
    padding: 60px 0;
}

.process-details {
    padding: 80px 0;
    background: var(--light-bg);
}

.process-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.process-detail-card.highlight {
    border: 3px solid var(--primary-color);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.step-number-large {
    font-size: 2rem;
    font-weight: 900;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
}

.step-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

.step-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.step-description {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.step-details-box {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.step-details-box h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.step-details-box h4 i {
    color: var(--success);
    margin-right: 10px;
}

.step-details-box ul {
    list-style: none;
    padding-left: 0;
}

.step-details-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.step-details-box li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.step-duration {
    background: rgba(102, 126, 234, 0.1);
    color: var(--accent-color);
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-duration i {
    margin-right: 8px;
}

.step-note {
    background: #e8f5e9;
    color: var(--success);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--success);
    line-height: 1.8;
}

.step-note i {
    margin-right: 10px;
}

.step-note.important {
    background: #fff3e0;
    color: #e65100;
    border-left-color: #ff9800;
}

.step-note.success {
    background: #e3f2fd;
    color: #1976d2;
    border-left-color: #2196f3;
}

.step-arrow-large {
    text-align: center;
    padding: 30px 0;
    font-size: 3rem;
    color: var(--primary-color);
}

.timeline-estimate {
    background: var(--white);
}

.timeline-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.timeline-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.timeline-icon i {
    font-size: 2rem;
    color: var(--white);
}

.timeline-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.timeline-duration {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 15px 0;
}

.timeline-card p {
    color: var(--light-text);
    line-height: 1.8;
}

.timeline-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1.05rem;
    color: var(--light-text);
}

.timeline-note i {
    color: var(--primary-color);
    margin-right: 10px;
}

.process-faq {
    background: var(--light-bg);
}

@media (max-width: 768px) {
    .step-header {
        flex-direction: column;
        text-align: center;
    }
    
    .process-detail-card {
        padding: 30px 20px;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
}

/* ===================================
   料金ページ
   =================================== */
.pricing-intro {
    padding: 60px 0;
}

.pricing-includes {
    background: var(--light-bg);
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.include-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.include-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 15px;
}

.include-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.include-card p {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.7;
}

.pricing-factors {
    background: var(--white);
}

.factors-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.factor-card {
    display: flex;
    gap: 25px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    align-items: center;
}

.factor-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 70px;
}

.factor-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.factor-content h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.factor-content p {
    line-height: 1.8;
}

.pricing-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.pricing-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 900;
}

/* ===================================
   お客様の声ページ
   =================================== */
.testimonials-full {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-full-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.testimonial-full-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-full-card.featured {
    border: 3px solid var(--primary-color);
}

.testimonial-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

/* ===================================
   FAQページ
   =================================== */
.faq-full {
    padding: 80px 0;
}

.faq-full-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-full-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.faq-full-item:hover {
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.faq-full-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.15rem;
}

.faq-full-question i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-full-answer {
    padding-left: 45px;
    line-height: 1.9;
    color: var(--dark-text);
    font-size: 1.05rem;
}

/* ===================================
   プロフィールページ
   =================================== */
.profile-main {
    padding: 80px 0;
}

.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.profile-image {
    text-align: center;
}

.profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
    border: 5px solid var(--white);
}

.profile-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.profile-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.profile-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.profile-badge {
    background: var(--light-bg);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.profile-badge i {
    color: var(--primary-color);
    margin-right: 8px;
}

.profile-intro {
    font-size: 1.05rem;
    line-height: 1.9;
}

.profile-history {
    background: var(--light-bg);
}

.history-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.history-item {
    display: flex;
    gap: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    align-items: flex-start;
}

.history-item.highlight {
    border: 3px solid var(--primary-color);
}

.history-year {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-color);
    min-width: 150px;
    flex-shrink: 0;
}

.history-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.history-content p {
    line-height: 1.8;
    color: var(--dark-text);
}

.profile-specialty {
    background: var(--white);
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.specialty-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.specialty-item:hover {
    transform: translateY(-5px);
    background: var(--white);
}

.specialty-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.specialty-item h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.profile-message {
    background: var(--light-bg);
}

.message-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.message-box p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 25px;
}

.message-signature {
    text-align: right;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem !important;
    margin-top: 30px !important;
}

@media (max-width: 968px) {
    .profile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .profile-badges {
        justify-content: center;
    }
    
    .history-item {
        flex-direction: column;
        text-align: center;
    }
    
    .history-year {
        min-width: auto;
    }
}

/* ===================================
   お問い合わせページ
   =================================== */
.contact-intro {
    padding: 40px 0;
}

.contact-intro-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-intro-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-intro-box h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-intro-box p {
    font-size: 1.05rem;
    line-height: 1.9;
}

.contact-methods {
    background: var(--light-bg);
}

.contact-method-single {
    max-width: 700px;
    margin: 0 auto;
}

.contact-method-card-main {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 3px solid var(--primary-color);
}

.contact-method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-method-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-method-card.featured {
    border: 3px solid var(--primary-color);
}

.method-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--white);
}

.method-icon.email {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.method-icon.form {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

.contact-method-card h3,
.contact-method-card-main h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.method-email {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 20px 0;
}

.method-description {
    line-height: 1.8;
    margin-bottom: 25px;
}

.email-note {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed var(--light-bg);
    font-size: 1rem;
    color: var(--light-text);
}

.email-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

.email-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.email-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-form-section {
    padding: 60px 0;
    background: var(--white);
}

.google-form-embed {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.form-intro-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.form-intro-text i {
    color: var(--primary-color);
    margin-right: 10px;
}

.google-form-container {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.google-form-container iframe {
    border-radius: 15px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.required {
    color: #E53935;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    margin-bottom: 20px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.form-submit {
    text-align: center;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #e8f5e9;
    color: var(--success);
    display: block;
}

.form-message.error {
    background: #ffebee;
    color: #E53935;
    display: block;
}

.contact-info {
    background: var(--light-bg);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    gap: 25px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    color: var(--success);
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.info-content p {
    color: var(--light-text);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-method-cards {
        grid-template-columns: 1fr;
    }
}