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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.global-nav {
    display: flex;
    gap: 30px;
}

.global-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.global-nav a:hover,
.global-nav a.active {
    color: #007bff;
}

/* メインビジュアル（全画面） */
.hero-fullscreen {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-center {
    text-align: center;
    color: #fff;
}

.hero-main-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

/* 訴求セクション */
.appeal-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.appeal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.appeal-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.appeal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.appeal-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.appeal-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

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

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section-description {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

/* お知らせセクション */
.news-section {
    background-color: #fff;
}

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

.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.news-date {
    color: #999;
    font-size: 14px;
    white-space: nowrap;
}

.news-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-link:hover {
    color: #007bff;
}

.link-more {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

/* 料金プランセクション */
.pricing-section {
    background-color: #f8f9fa;
}

.plan-category {
    font-size: 28px;
    text-align: center;
    margin: 60px 0 30px;
    color: #333;
}

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

.price-column {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
}

.price-column.popular {
    border: 3px solid #ffd700;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffd700;
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.plan-header h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.plan-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.plan-image {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
}

.price-tax {
    font-size: 14px;
    color: #666;
}

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

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* おまかせコース */
.omakase-plan {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    padding: 50px;
    margin-top: 40px;
}

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

.omakase-left .plan-category {
    color: #fff;
    text-align: left;
    margin: 0 0 20px 0;
}

.omakase-image {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.omakase-right {
    color: #fff;
}

.omakase-description {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.omakase-price .price-amount {
    font-size: 32px;
    color: #ffd700;
}

.omakase-detail {
    font-size: 16px;
    margin: 20px 0 30px;
}

/* 料金注意書き */
.pricing-notes {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.pricing-notes p {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

/* 撮影実績セクション */
.works-section {
    background-color: #fff;
}

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

.work-item {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.clients-section {
    margin-top: 60px;
}

.clients-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.client-item {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: #333;
}

/* ご利用の流れ */
.flow-section {
    background-color: #f8f9fa;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.flow-step {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    font-size: 14px;
    color: #666;
}

.flow-arrow {
    font-size: 24px;
    color: #007bff;
}

/* お客様の声 */
.voice-section {
    background-color: #fff;
}

.voice-grid-extended {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.voice-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.voice-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.voice-text {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.voice-name {
    font-weight: bold;
    color: #007bff;
}

/* よくあるご質問 */
.faq-section {
    background-color: #f8f9fa;
}

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

.faq-item {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.faq-answer {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* CTAセクション */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.cta-tel {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tel-label {
    font-size: 14px;
}

.tel-number {
    font-size: 32px;
    font-weight: bold;
    color: #ffd700;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #fff;
    color: #007bff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: transparent;
    color: #fff;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* フッター */
footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #007bff;
}

.footer-description {
    color: #ccc;
    font-size: 14px;
}

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

.footer-nav-column h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-nav-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav-column a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
    font-size: 14px;
}

/* ページヘッダー */
.page-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 42px;
    margin-bottom: 15px;
    color: #333;
}

.page-description {
    font-size: 16px;
    color: #666;
}

/* コンテンツラッパー */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 0;
}

/* プレースホルダー */
.placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* テーブル */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

table th,
table td {
    padding: 20px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

table th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #333;
}

table td {
    color: #666;
}

/* フォーム */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #007bff;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .appeal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-columns {
        grid-template-columns: 1fr;
    }
    
    .price-column.popular {
        transform: scale(1);
    }
    
    .omakase-content {
        grid-template-columns: 1fr;
    }
    
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flow-steps {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .voice-grid-extended {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
}
