@charset "UTF-8";

/* 13_service.css - AIサイト制作LP */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ai-site-lp {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
	padding: 0 0 50px 0;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: url("../img/13_service/hero.jpg") no-repeat right center #131142;
    background-size: 50% auto;
    padding: 80px 0;
    width: 100%;
}

.hero-content {
    max-width: 90%;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-subtitle {
    display: block;
    font-size: 1.8rem;
    margin-top: 10px;
    color: #FFF;
}

.hero-description {
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    background: #dc000c;
    color: white;
    padding: 15px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #b3000a;
    transform: translateY(-2px);
}

/* Plans Intro Section */
.plans-intro-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.plans-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #d0d0d0 1px, transparent 1px);
    background-size: 25px 25px;
    background-position: 0 0;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.plans-intro-section .container {
    position: relative;
    z-index: 1;
}

.plans-intro-lead {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
}

.plans-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.plan-intro-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.plan-intro-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    background-color: #000;
    text-align: center;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.plan-intro-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.plan-intro-situation {
    margin-bottom: 30px;
    flex: 1;
}

.plan-intro-situation-title {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.plan-intro-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-intro-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.plan-intro-checkmark {
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-intro-feature-text {
    color: #333;
}

.plan-intro-link {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.plan-intro-link-button {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: #000;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.plan-intro-link-button:hover {
    background: #f8f9fa;
    border-color: #bbb;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.feature-item-image-left {
    flex-direction: row;
}

.feature-item-image-right {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 0.7;
    max-width: 40%;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.feature-content {
    flex: 1.3;
    max-width: 60%;
    padding: 20px 0;
}

.feature-number {
    color: #dc000c;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #dc000c;
    display: inline-block;
    width: auto;
    height: auto;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.feature-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.feature-description {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}


/* Plans Section */
.plans-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Pricing Cards Grid */
.plans-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.plan-pricing-card {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.plan-pricing-card-featured {
    background: #ffffff;
    border: 2px solid #dc000c;
    position: relative;
}

.plan-pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.plan-pricing-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 50px;
}

.plan-pricing-amount {
    margin-bottom: 25px;
}

.plan-price-monthly {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.price-unit {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.plan-price-info {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.plan-pricing-cta {
    margin-bottom: 30px;
}

.plan-cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.plan-cta-primary {
    background: #dc000c;
    color: white !important;
}

.plan-cta-primary:hover {
    background: #b3000a;
    transform: translateY(-2px);
}

.plan-pricing-features {
    flex: 1;
}

.plan-features-heading {
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-checkmark {
    color: #dc000c;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    color: #333;
}

/* Comparison Table */
.plan-comparison-table {
    margin-top: 60px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comparison-table-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.comparison-table thead {
    background: #f8f9fa;
}

.comparison-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #000;
    border-bottom: 2px solid #dee2e6;
}

.comparison-feature {
    padding: 15px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    width: 30%;
}

.comparison-plan {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #000;
    border-bottom: 2px solid #dee2e6;
    width: 35%;
}

.comparison-value {
    padding: 15px;
    text-align: center;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table tbody tr:last-child .comparison-value,
.comparison-table tbody tr:last-child .comparison-feature {
    border-bottom: none;
}

.comparison-table tbody tr td[colspan="3"] {
    background: #f8f9fa;
    font-weight: 600;
    padding: 12px 15px;
    border-bottom: 1px solid #dee2e6;
}

.comparison-table tbody tr td[colspan="3"] strong {
    color: #000;
}

.comparison-feature.sub-feature {
    padding-left: 40px;
    font-weight: 400;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 0, 12, 0.15);
}

.pricing-card.light {
    border-color: #dc000c;
}

.pricing-card.advance {
    border-color: #dc000c;
    position: relative;
}

.pricing-card.advance::before {
    content: "おすすめ";
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc000c;
    color: white;
    padding: 5px 15px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    background: #dc000c;
    color: white;
    padding: 25px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
}

.tax-note {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.pricing-features {
    padding: 30px;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-weight: 500;
    color: #333;
}

.feature-value {
    color: #666;
}

.feature-check {
    color: #000;
    font-weight: bold;
}

.pricing-notes {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 0;
}

.note-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.note-item:last-child {
    margin-bottom: 0;
}

.note-number {
    color: #000;
    font-weight: bold;
    flex-shrink: 0;
}

.note-text {
    color: #666;
    line-height: 1.5;
}

.pricing-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 0;
}

.pricing-cta p {
    margin-bottom: 20px;
    color: #666;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.process-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    position: relative;
}

.stage-circle {
    width: 120px;
    height: 120px;
    border: 3px solid #dc000c;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 10px;
    box-sizing: border-box;
    flex-shrink: 0;
    margin-bottom: 15px;
}

.stage-title-en {
    font-size: 1rem;
    font-weight: 700;
    color: #dc000c;
    margin-bottom: 5px;
    text-align: center;
}

.stage-title-ja {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.stage-arrow {
    font-size: 2rem;
    color: #dc000c;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    right: -30px;
    top: 60px;
    transform: translateY(-50%);
    z-index: 10;
}

.process-stage:last-child .stage-arrow {
    display: none;
}

.stage-tasks {
    background: #e8e8e8;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    height: 200px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
}

.task-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.task-list li {
    color: #333;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 0;
}

.task-list li:last-child {
    margin-bottom: 0;
}

.urgent-section {
    margin-top: 60px;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.urgent-section h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 30px;
}

.urgent-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.timeline-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-3px);
}

.timeline-day {
    background: #dc000c;
    color: white;
    padding: 8px 15px;
    border-radius: 0;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.timeline-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Service Intro Section */
/* 目的別サービス紹介セクションのスタイルは global.css に移動 */

/* CTA Section */
/* CTAセクション関連は global.css に移動 */

/* .cta-button は global.css に移動 */

/* Responsive Design */
@media (max-width: 768px) {
    .wrapper {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .plans-intro-lead {
        font-size: 1rem;
        line-height: 1.8;
    }

    .plans-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .plan-intro-card {
        padding: 30px;
    }

    .plan-intro-title {
        font-size: 1.5rem;
    }

    .plan-intro-subtitle {
        font-size: 1.1rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 30px;
    }

    .feature-item-image-left,
    .feature-item-image-right {
        flex-direction: column;
    }

    .feature-image {
        max-width: 100%;
    }

    .feature-content {
        max-width: 100%;
        padding: 0;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .feature-subtitle {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.95rem;
    }

    .plans-pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plan-pricing-card {
        padding: 25px;
    }

    .plan-price-monthly {
        font-size: 1.75rem;
    }

    .plan-comparison-table {
        padding: 20px;
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 600px;
    }

    .comparison-table-title {
        font-size: 1.5rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-stage {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
    }

    .stage-circle {
        width: 100px;
        height: 100px;
    }

    .stage-arrow {
        position: static;
        transform: rotate(90deg);
        margin: 15px 0;
        right: auto;
        top: auto;
    }

    .process-stage:last-child .stage-arrow {
        display: none;
    }

    .stage-tasks {
        height: auto;
        min-height: 120px;
    }

    /* 目的別サービス紹介セクションのレスポンシブスタイルは global.css に移動 */

    .urgent-timeline {
        grid-template-columns: 1fr;
    }

    .plan-feature {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .feature-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .pricing-card {
        margin: 0 10px;
    }

    .pricing-features {
        padding: 20px;
    }

    .process-step {
        padding: 20px;
    }
}


/* Print Styles */
@media print {

    .hero-section,
    /* CTAセクションのプリントスタイルは global.css に移動 */
}