/* ========================================
   一般的な業者とペンタ工房の違い（セミオーダーメイド式）
   ======================================== */

/* セクション全体 */
#semi-order {
    background: #f8f9fa;
    padding: 80px 0;
}

/* 導入部分（白いボックス） */
.semi-order-intro-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.semi-order-intro-title {
    color: #ff6900;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.semi-order-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.semi-order-text-bold {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: bold;
}

.semi-order-text-last {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 0;
}

/* 食器の例えボックス */
.tableware-example-box {
    background: #fffbf5;
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid #ff6900;
    margin-bottom: 40px;
}

.tableware-example-title {
    color: #ff6900;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
}

.tableware-example-text {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.tableware-example-text-last {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 0;
}

/* サンプルサイトのイメージ一覧 */
.sample-sites-grid-wrapper {
    margin-bottom: 60px;
}

.sample-sites-title {
    color: #0693e3;
    margin-bottom: 35px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.sample-sites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.sample-site-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.sample-site-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.sample-site-image {
    width: 100%;
    height: auto;
    display: block;
}

.sample-site-label {
    padding: 15px;
    text-align: center;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    background: #f8f9fa;
}

.sample-sites-note {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* 比較表 */
.comparison-table-wrapper {
    margin-bottom: 60px;
}

.comparison-table-title {
    color: #0693e3;
    margin-bottom: 35px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 250px 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: linear-gradient(135deg, #0693e3 0%, #0572ba 100%);
    color: white;
    font-weight: bold;
    }
    
.comparison-header .comparison-cell {
    color: white;
        padding: 20px;
    font-size: 1.1rem;
    }
    
.comparison-cell {
    padding: 20px;
    display: flex;
    align-items: center;
        font-size: 1rem;
    color: #333;
    line-height: 1.7;
    }
    
.comparison-cell:first-child {
    background: #f8f9fa;
    font-weight: 600;
    border-right: 2px solid #e9ecef;
    }
    
.comparison-cell:nth-child(2) {
    background: #fff5f5;
    }

.comparison-cell:nth-child(3) {
    background: #f0f9ff;
    }
    
/* 強調セル */
.comparison-highlight {
    background: #fffbf5;
    font-weight: 700;
    color: #ff6900;
    }
    
.comparison-pentad-highlight {
    background: #e6f7ff;
    font-weight: 700;
    color: #0693e3;
}

/* ========================================
   契約後も安心：SNS投稿のような手軽さで更新できる
   ======================================== */

/* セクション全体 */
#easy-update {
    background: #fff;
    padding: 80px 0;
}

/* 導入部分（白いボックス） */
.easy-update-intro-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    border-left: 5px solid #28a745;
}

.easy-update-intro-title {
    color: #28a745;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.easy-update-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.easy-update-text-last {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 0;
}

.easy-update-text-last a {
    color: #0693e3;
    text-decoration: underline;
}

/* メイン画像 */
.easy-update-main-image {
    text-align: center;
    margin-bottom: 60px;
}

.easy-update-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.easy-update-image:hover {
    transform: scale(1.02);
}

/* 業種別更新例 */
.easy-update-examples-box {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.easy-update-examples-title {
    color: #0693e3;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.easy-update-examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.easy-update-example-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.easy-update-example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.example-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
}

.easy-update-example-item h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.easy-update-example-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.easy-update-example-item ul li {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.easy-update-example-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}


/* できること・できないこと */
.easy-update-scope-box {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.easy-update-scope-title {
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.easy-update-scope-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.easy-update-scope-column {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #28a745;
}

.easy-update-scope-column.cannot {
    border-left-color: #dc3545;
}

.easy-update-scope-column h4 {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.easy-update-scope-column.cannot h4 {
    color: #dc3545;
}

.easy-update-scope-grid ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.easy-update-scope-grid ul li {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.easy-update-scope-grid ul li::before {
    position: absolute;
    left: 0;
    font-weight: bold;
}

.easy-update-scope-column ul li::before {
    content: '✅';
    color: #28a745;
}

.easy-update-scope-column.cannot ul li::before {
    content: '🔧';
}

.easy-update-scope-note {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* メンテナンス契約の案内 */
.easy-update-maintenance-box {
    background: #fff9f0;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #ff6900;
    box-shadow: 0 5px 15px rgba(255,105,0,0.1);
}

.easy-update-maintenance-title {
    color: #ff6900;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.easy-update-maintenance-list {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    padding-left: 30px;
    margin-bottom: 20px;
}

/* ========================================
   レスポンシブ対応（更新簡単セクション）
   ======================================== */

@media (max-width: 1024px) {
    .easy-update-examples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    #easy-update {
        padding: 50px 0;
    }
    
    .easy-update-intro-box,
    .easy-update-examples-box,
    .easy-update-scope-box,
    .easy-update-maintenance-box {
        padding: 30px 20px;
    }
    
    .easy-update-intro-title,
    .easy-update-examples-title,
    .easy-update-scope-title,
    .easy-update-maintenance-title {
        font-size: 1.3rem;
    }
    
    .easy-update-examples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .easy-update-scope-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    #easy-update {
        padding: 40px 0;
    }
    
    .easy-update-intro-box,
    .easy-update-examples-box,
    .easy-update-scope-box,
    .easy-update-maintenance-box {
        padding: 20px 15px;
    }
    
    .easy-update-intro-title,
    .easy-update-examples-title,
    .easy-update-scope-title,
    .easy-update-maintenance-title {
        font-size: 1.2rem;
    }
    
    .example-icon {
        font-size: 2.5rem;
    }
}

/* ========================================
   実際の動作例：カフェのおすすめスイーツ
   ======================================== */

.easy-update-demo-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.easy-update-demo-title {
    color: #0693e3;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.easy-update-demo-intro {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

.easy-update-demo-gif {
    text-align: center;
    margin-bottom: 30px;
}

.easy-update-demo-image {
    border: 2px solid #ddd;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.easy-update-demo-image:hover {
    transform: scale(1.02);
}

.easy-update-demo-caption {
    font-size: 1rem;
    color: #555;
    margin-top: 15px;
    font-style: italic;
}

.easy-update-demo-details {
    margin-top: 30px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}

.easy-update-demo-summary {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: #0693e3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.easy-update-demo-summary:hover {
    background: #e9ecef;
}

.summary-icon {
    font-size: 1.3rem;
}

.summary-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.easy-update-demo-details[open] .summary-arrow {
    transform: rotate(180deg);
}

.easy-update-demo-content {
    padding: 30px;
    background: white;
}

.demo-step-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.demo-step-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.demo-step-title {
    color: #0693e3;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.demo-step-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.demo-step-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 15px 0;
}

.demo-step-image:hover {
    transform: scale(1.02);
}

.demo-step-note {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 15px;
}

/* 2列グリッドレイアウト */
.easy-update-demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.easy-update-demo-column {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.demo-column-title {
    color: #0693e3;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.demo-column-caption {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
}

/* 動画セクション */
.easy-update-video-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.easy-update-video-title {
    color: #0693e3;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.easy-update-video-intro {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

.easy-update-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.easy-update-video-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.video-item-title {
    color: #0693e3;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.video-duration {
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
    margin-left: 5px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-item-caption {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .easy-update-demo-grid,
    .easy-update-video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .easy-update-demo-section,
    .easy-update-video-section {
        padding: 30px 20px;
    }

    .easy-update-demo-title,
    .easy-update-video-title {
        font-size: 1.3rem;
    }

    .demo-step-image {
        max-width: 100%;
    }

    .demo-column-title,
    .video-item-title {
        font-size: 1.1rem;
    }

    .video-duration {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .easy-update-video-section {
        padding: 20px 15px;
    }

    .easy-update-video-title {
        font-size: 1.2rem;
    }

    .easy-update-video-item {
        padding: 20px;
    }
}

/* ========================================
   自分で更新できるホームページ化サービスへの誘導CTA
   ======================================== */

.update-corner-service-cta {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    text-align: center;
    border: 2px solid #0693e3;
    box-shadow: 0 5px 15px rgba(6,147,227,0.1);
}

.update-corner-cta-title {
    color: #0693e3;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.update-corner-cta-text {
        font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.update-corner-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0693e3;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(6,147,227,0.3);
    }

.update-corner-cta-button:hover {
    background: #0572ba;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6,147,227,0.4);
}

.cta-button-icon {
    font-size: 1.3rem;
}

.cta-button-arrow {
        font-size: 1.2rem;
    transition: transform 0.3s ease;
    }

.update-corner-cta-button:hover .cta-button-arrow {
    transform: translateX(5px);
}

/* ========================================
   自分で更新できるホームページ化サービスセクション
   ======================================== */

.update-corner-service-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.update-corner-intro {
    text-align: center;
    margin-bottom: 50px;
}

.update-corner-lead {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
        margin-bottom: 20px;
    }

.update-corner-text {
        font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* コスト比較ボックス */
.update-corner-cost-comparison {
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    border: 3px solid #ff6900;
    box-shadow: 0 8px 25px rgba(255,105,0,0.15);
}

.cost-comparison-title {
    color: #ff6900;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    font-size: 2rem;
}

.cost-comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.cost-comparison-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cost-comparison-item.before {
    border-top: 4px solid #dc3545;
}

.cost-comparison-item.after {
    border-top: 4px solid #28a745;
}

.comparison-label {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-method {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.comparison-cost {
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cost-amount {
    font-size: 1.3rem;
    font-weight: bold;
    color: #dc3545;
}

.cost-multiply {
    font-size: 1.1rem;
    color: #666;
}

.cost-frequency {
    font-size: 1.1rem;
    color: #666;
}

.cost-amount-large {
    font-size: 1.3rem;
    font-weight: bold;
    color: #28a745;
}

.comparison-total {
    font-size: 1.8rem;
    font-weight: bold;
    color: #dc3545;
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff5f5;
    border-radius: 8px;
    }

.comparison-total.highlight {
    color: #28a745;
    background: #f0fff4;
}

.comparison-problems,
.comparison-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-problems li,
.comparison-benefits li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.comparison-problems li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.comparison-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.cost-comparison-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.arrow-icon {
    font-size: 2.5rem;
    color: #ff6900;
    font-weight: bold;
}

.arrow-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6900;
    writing-mode: horizontal-tb;
}

.cost-comparison-note {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin: 0;
}

.cost-comparison-note strong {
    color: #ff6900;
    font-size: 1.2rem;
}

/* 見えないコスト */
.update-corner-hidden-cost {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    border: 3px solid #0693e3;
    box-shadow: 0 8px 25px rgba(6,147,227,0.15);
}

.hidden-cost-title {
    color: #0693e3;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hidden-cost-content {
    background: white;
    padding: 35px;
    border-radius: 12px;
}

.hidden-cost-lead {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

.highlight-text {
    color: #0693e3;
    background: linear-gradient(transparent 60%, rgba(6,147,227,0.2) 60%);
    padding: 0 5px;
}

.hidden-cost-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.hidden-cost-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.hidden-cost-item.agency {
    border-left: 4px solid #dc3545;
}

.hidden-cost-item.self {
    border-left: 4px solid #28a745;
}

.hidden-cost-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.hidden-cost-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.hidden-cost-list li {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.hidden-cost-item.agency .hidden-cost-list li::before {
    content: '📧';
    position: absolute;
    left: 0;
}

.hidden-cost-item.self .hidden-cost-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.hidden-cost-time {
    text-align: center;
    font-size: 1.1rem;
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin: 0;
}

.hidden-cost-time.highlight {
    background: #f0fff4;
    color: #28a745;
}

.hidden-cost-arrow-vertical {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon-down {
    font-size: 2.5rem;
    color: #0693e3;
    font-weight: bold;
}

.hidden-cost-conclusion {
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff6900;
}

.conclusion-text {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.8;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.conclusion-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.update-corner-subtitle {
    color: #0693e3;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0693e3;
}

/* 料金表 */
.update-corner-pricing {
    margin-bottom: 60px;
}

.update-corner-price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.update-corner-price-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.update-corner-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.update-corner-price-card.local {
    border-top: 5px solid #28a745;
}

.update-corner-price-card.nationwide {
    border-top: 5px solid #0693e3;
}

.price-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    text-align: center;
}

.price-card-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.price-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.price-card-body {
    padding: 30px;
    text-align: center;
}

.price-card-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0693e3;
    margin-bottom: 15px;
}

.price-card-calculation {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.calc-line {
    font-size: 1rem;
    color: #333;
    margin: 5px 0;
    font-weight: 600;
}

.calc-note {
    font-size: 0.85rem;
    color: #666;
    margin: 8px 0 0 0;
    font-style: italic;
}

.price-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.price-card-features li {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.price-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.price-card-sub-note {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    line-height: 1.6;
}

/* 特典ボックス */
.update-corner-benefit {
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #ff6900;
    box-shadow: 0 5px 15px rgba(255,105,0,0.1);
}

.benefit-title {
    color: #ff6900;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.benefit-icon {
    font-size: 1.8rem;
}

/* 特典コンテンツグリッド */
.benefit-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
}

.benefit-main {
    background: white;
    padding: 25px;
    border-radius: 10px;
}

.benefit-text {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.benefit-text strong {
    color: #ff6900;
    font-weight: bold;
}

.highlight-text {
    background: linear-gradient(transparent 60%, #ffe6cc 60%);
    padding: 0 4px;
}

.benefit-note {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0;
}

.benefit-note strong {
    color: #ff6900;
}

/* 特典例ボックス */
.benefit-example-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #ff6900;
}

.benefit-example-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ff6900;
    margin-bottom: 20px;
    text-align: center;
}

.benefit-flow {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.flow-step.highlight {
    background: #fff9f0;
    border: 2px solid #ff6900;
}

.flow-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #0693e3;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.flow-step.highlight .flow-number {
    background: #ff6900;
}

.flow-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.flow-arrow {
    text-align: center;
    color: #0693e3;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.flow-result {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #ff6900 0%, #ff8c00 100%);
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(255,105,0,0.3);
}

.benefit-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
}

.benefit-example {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff6900;
}

.benefit-example-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-example-list li {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.benefit-example-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff6900;
    font-weight: bold;
}

/* サービスの特徴 */
.update-corner-features {
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    display: flex;
    gap: 15px;
}

.feature-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #28a745;
    font-weight: bold;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* 想定される活用例 */
.update-corner-examples {
    margin-bottom: 60px;
    text-align: center;
}

.update-corner-examples-intro {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

.examples-link {
    color: #0693e3;
    text-decoration: underline;
    font-weight: 600;
}

.examples-link:hover {
    color: #0572ba;
}

/* Q&A */
.update-corner-faq {
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: bold;
    color: #0693e3;
    padding: 20px 30px;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::before {
    content: 'Q.';
    margin-right: 10px;
    color: #0693e3;
    font-weight: bold;
}

.faq-question::after {
    content: '▼';
    position: absolute;
    right: 30px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
}

.faq-item:hover .faq-question {
    background: #f8f9fa;
}

.faq-answer {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    padding: 0 30px 25px 30px;
    margin: 0;
}

.faq-link {
    color: #0693e3;
    text-decoration: underline;
    font-weight: 600;
}

.faq-link:hover {
    color: #0572ba;
}

/* ========================================
   レスポンシブ対応（自分で更新できる化サービス）
   ======================================== */

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .cost-comparison-grid {
        gap: 20px;
    }

    .hidden-cost-comparison {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .update-corner-service-section {
        padding: 50px 0;
    }

    .update-corner-subtitle {
        font-size: 1.5rem;
    }

    .update-corner-price-grid {
        grid-template-columns: 1fr;
    }
    
    /* 特典セクションのレスポンシブ */
    .benefit-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .flow-text {
        font-size: 0.9rem;
    }

    .update-corner-service-cta {
        padding: 30px 20px;
    }

    .update-corner-cta-title {
        font-size: 1.3rem;
    }

    .update-corner-cta-text {
        font-size: 1rem;
    }

    .update-corner-cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px 25px;
    }

    .faq-answer {
        font-size: 0.95rem;
        padding: 0 25px 20px 25px;
    }

    .cost-comparison-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cost-comparison-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .cost-comparison-title {
        font-size: 1.5rem;
    }

    .update-corner-cost-comparison {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .update-corner-service-section {
        padding: 40px 0;
    }

    .update-corner-subtitle {
        font-size: 1.3rem;
    }

    .price-card-amount {
        font-size: 2rem;
    }

    .update-corner-benefit,
    .feature-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 15px 20px;
    }

    .faq-question::after {
        right: 20px;
    }

    .faq-answer {
        font-size: 0.9rem;
        padding: 0 20px 15px 20px;
    }

    .cost-comparison-title {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 10px;
    }

    .title-icon {
        font-size: 1.5rem;
    }

    .cost-comparison-item {
        padding: 20px;
    }

    .comparison-method {
        font-size: 1.1rem;
    }

    .comparison-total {
        font-size: 1.5rem;
    }

    .cost-comparison-note {
        font-size: 1rem;
        padding: 15px;
    }

    .hidden-cost-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hidden-cost-arrow-vertical {
        transform: rotate(0deg);
        margin: 0;
    }

    .arrow-icon-down {
        font-size: 2rem;
    }

    .update-corner-hidden-cost {
        padding: 30px 20px;
    }

    .hidden-cost-content {
        padding: 25px 20px;
    }

    .hidden-cost-title {
        font-size: 1.5rem;
    }

    .hidden-cost-lead {
        font-size: 1.05rem;
    }

    .conclusion-text {
        font-size: 1.05rem;
        flex-direction: column;
        gap: 10px;
    }

    .hidden-cost-title {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 10px;
    }

    .hidden-cost-lead {
        font-size: 1rem;
    }

    .hidden-cost-item {
        padding: 20px;
    }

    .hidden-cost-subtitle {
        font-size: 1.1rem;
    }

    .hidden-cost-list li {
        font-size: 0.95rem;
    }

    .hidden-cost-time {
        font-size: 1rem;
    }

    .hidden-cost-content {
        padding: 20px 15px;
    }

    .hidden-cost-conclusion {
        padding: 20px;
    }
}
