/* ========================================
   Serviceページ専用スタイルシート (service.css)
   ======================================== */

/* ========================================
   サービス概要セクション
   ======================================== */
.service-overview-section {
    padding: 50px 0;
    background: #fff;
}

.service-overview-wrapper {
    max-width: 1728px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.service-overview-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 38px;
    line-height: 1.2;
    color: #333333;
    text-align: center;
    margin: 0;
    max-width: 1728px;
}

.service-overview-main-content {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.service-overview-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: flex;
    justify-content: center;
}

.service-overview-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.service-overview-bottom {
    width: 100%;
    max-width: 1167px;
}

.service-overview-bottom-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #333333;
    text-align: center;
    margin: 0 0 32px 0;
}

.service-overview-bottom-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-overview-bottom-image {
    flex: 0 0 400px;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
}

.service-overview-problem-img {
    max-width: 100%;
    height: 100%;
    margin: auto;
    aspect-ratio: 600 / 330;
}

.service-overview-bottom-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-overview-bottom-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-overview-bottom-feature-icon {
    flex: 0 0 38px;
    height: 38px;
}

.needs-check-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-overview-bottom-feature-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #333333;
    margin: 0;
}

.highlight-red {
    color: #f35b6c;
}

/* レスポンシブ - サービス概要セクション */
@media (max-width: 1200px) {
    .service-overview-title {
        font-size: 34px;
    }
    
    .service-overview-main-content {
        max-width: 900px;
    }
    
    .service-overview-image {
        max-width: 900px;
    }
    
    .service-overview-bottom-title {
        font-size: 28px;
    }
    
    .service-overview-bottom-content {
        gap: 30px;
    }
    
    .service-overview-bottom-image {
        flex: 0 0 350px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .service-overview-section {
        padding: 40px 0;
    }
    
    .service-overview-wrapper {
        gap: 40px;
    }
    
    .service-overview-title {
        font-size: 30px;
    }
    
    .service-overview-main-content {
        max-width: 100%;
    }
    
    .service-overview-image {
        max-width: 100%;
    }
    
    .service-overview-bottom-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .service-overview-bottom-content {
        flex-direction: column;
        gap: 5px;
    }
    .service-overview-bottom-features{
        gap: 5px;
    }
    
    .service-overview-bottom-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        height: 160px;
    }
    
    .service-overview-bottom-feature-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .service-overview-section {
        padding: 30px 0;
    }
    
    .service-overview-wrapper {
        gap: 20px;
    }
    
    .service-overview-title {
        font-size: 20px;
    }
    
    .service-overview-main-content {
        max-width: 100%;
    }
    
    .service-overview-image {
        max-width: 100%;
    }
    
    .service-overview-bottom-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .service-overview-bottom-image {
        height: 120px;
    }
    
    .service-overview-bottom-feature-text {
        font-size: 16px;
    }
    
    .service-overview-bottom-feature-icon {
        flex: 0 0 32px;
        height: 32px;
    }
}

/* ========================================
   プロ集団セクション
   ======================================== */
.service-professional-section {
    background: #8189ed;
    padding: 64px 0;
}

.service-professional-wrapper {
    max-width: 1728px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-professional-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    margin: 0;
}

/* レスポンシブ - プロ集団セクション */
@media (max-width: 1200px) {
    .service-professional-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .service-professional-section {
        padding: 50px 0;
    }
    
    .service-professional-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .service-professional-section {
        padding: 40px 0;
    }
    
    .service-professional-title {
        font-size: 24px;
    }
}

/* ========================================
   実績・許可証セクション
   ======================================== */
.service-achievement-section {
    background: #ecf7f5;
    padding: 60px 0 50px 0;
}

.service-achievement-wrapper {
    max-width: 957px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.service-achievement-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.2;
    color: #333333;
    text-align: center;
    margin: 0;
}

.service-achievement-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 717px;
}

.service-achievement-images {
    display: flex;
    align-items: center;
    gap: 64px;
}

.service-achievement-license {
    width: 300px;
    height: 360px;
    overflow: hidden;
    border-radius: 8px;
}

.service-achievement-license-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-achievement-highlight {
    width: 260px;
    height: 260px;
}

.service-achievement-highlight-bg {
    background: #0077c3;
    width: 100%;
    height: 100%;
    border-radius: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-achievement-highlight-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    margin: 0;
}

.service-achievement-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #333333;
    text-align: center;
    margin: 0;
}

/* ========================================
   注意喚起セクション
   ======================================== */
.service-warning-section {
    padding: 20px 0 50px;
    background: #ecf7f5;
}

.service-warning-wrapper {
    max-width: 1040px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #cccccc;
    border-radius: 8px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-warning-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}

.service-warning-icon {
    width: 32px;
    aspect-ratio: 1 / 1;
}

.service-warning-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-warning-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #333333;
    margin: 0;
}

.service-warning-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #333333;
    text-align: center;
}

.service-warning-content p {
    margin: 0 0 1rem 0;
}

.service-warning-content p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ - 実績・許可証セクション */
@media (max-width: 1200px) {
    .service-achievement-title {
        font-size: 28px;
    }
    
    .service-achievement-images {
        gap: 40px;
    }
    
    .service-achievement-license {
        width: 250px;
        height: 300px;
    }
    
    .service-achievement-highlight {
        width: 220px;
        height: 220px;
    }
    
    .service-achievement-highlight-text {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .service-achievement-section {
        padding: 50px 0 40px 0;
    }
    
    .service-achievement-wrapper {
        gap: 40px;
    }
    
    .service-achievement-title {
        font-size: 24px;
    }
    
    .service-achievement-images {
        flex-direction: row;
        gap: 20px;
    }
    
    .service-achievement-license {
        width: 200px;
        height: 240px;
    }
    
    .service-achievement-highlight {
        width: 150px;
        height: 150px;
    }
    
    .service-achievement-highlight-text {
        font-size: 24px;
    }
    
    .service-achievement-note {
        font-size: 14px;
    }
    
    .service-warning-wrapper {
        padding: 30px;
    }
    
    .service-warning-title {
        font-size: 20px;
    }
    
    .service-warning-content {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-achievement-section {
        padding: 40px 0 30px 0;
    }
    
    .service-achievement-wrapper {
        gap: 30px;
    }
    
    .service-achievement-title {
        font-size: 20px;
    }
    
    .service-achievement-images {
        flex-direction: row;
        gap: 15px;
    }
    
    .service-achievement-license {
        width: 150px;
        height: 180px;
    }
    
    .service-achievement-highlight {
        width: 120px;
        height: 120px;
    }
    
    .service-achievement-highlight-text {
        font-size: 16px;
    }
    
    .service-achievement-note {
        font-size: 12px;
    }
    
    .service-warning-wrapper {
        padding: 20px;
    }
    .service-warning-header{
        gap: 5px;
    }
    .service-warning-icon{
        width: 16px;
    }
    .service-warning-title {
        font-size: 14px;
    }
    .service-warning-content {
        font-size: 13px;
    }
}

/* ========================================
   依頼するメリットセクション
   ======================================== */
.service-benefits-section {
    padding: 50px 0;
    background: #ecf7f5;
}

.service-benefits-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.service-benefits-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    color: #333333;
    text-align: center;
    margin: 0;
}

.service-benefits-grid {
    display: flex;
    gap: 40px;
    width: 100%;
}

.service-benefit-card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.service-benefit-badge {
    background: #00a3ec;
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-benefit-badge-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    margin: 0;
}

.service-benefit-image {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 460 / 320;
    overflow: hidden;
}

.service-benefit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-benefit-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.service-benefit-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.6;
    color: #333333;
    text-align: center;
    margin: 0;
}

.service-benefit-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 2;
    color: #333333;
    margin: 0;
}

/* レスポンシブ - 依頼するメリットセクション */
@media (max-width: 1200px) {
    .service-benefits-title {
        font-size: 30px;
    }
    
    .service-benefits-grid {
        gap: 30px;
    }
    
    .service-benefit-card {
        padding: 20px;
        gap: 20px;
    }
    
    .service-benefit-badge {
        padding: 14px 35px;
    }
    
    .service-benefit-badge-text {
        font-size: 14px;
    }
    
    .service-benefit-title {
        font-size: 18px;
    }
    
    .service-benefit-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .service-benefits-section {
        padding: 40px 0;
    }
    
    .service-benefits-wrapper {
        gap: 40px;
    }
    
    .service-benefits-title {
        font-size: 28px;
    }
    
    .service-benefits-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-benefit-card {
        padding: 20px;
        gap: 20px;
    }
    
    .service-benefit-badge {
        padding: 12px 30px;
    }
    
    .service-benefit-badge-text {
        font-size: 14px;
    }
    
    .service-benefit-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .service-benefits-section {
        padding: 30px 0;
    }
    
    .service-benefits-wrapper {
        gap: 30px;
    }
    
    .service-benefits-title {
        font-size: 20px;
    }
    
    .service-benefits-grid {
        gap: 20px;
    }
    
    .service-benefit-card {
        padding: 16px;
        gap: 16px;
    }
    
    .service-benefit-badge {
        padding: 10px 25px;
    }
    
    .service-benefit-badge-text {
        font-size: 12px;
    }
    
    .service-benefit-title {
        font-size: 16px;
    }
}

/* ========================================
   サービス内容セクション
   ======================================== */
.service-contents-section {
    padding: 50px 0;
    background: #ecf7f5;
}

.service-contents-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.service-contents-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    color: #333333;
    text-align: center;
    margin: 0;
}

.service-contents-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.service-contents-list-wrapper {
    background: #fff;
    border-radius: 10px;
    padding: 45px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.service-contents-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #333333;
    text-align: center;
    margin: 0;
    max-width: 540px;
}

.service-contents-button {
    display: flex;
    justify-content: center;
}

/* レスポンシブ - サービス内容セクション */
@media (max-width: 1200px) {
    .service-contents-title {
        font-size: 30px;
    }
    
    .service-contents-list-wrapper {
        padding: 35px;
    }
    
    .service-contents-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .service-contents-section {
        padding: 40px 0;
    }
    
    .service-contents-wrapper {
        gap: 40px;
    }
    
    .service-contents-title {
        font-size: 28px;
    }
    
    .service-contents-content {
        gap: 30px;
    }
    
    .service-contents-list-wrapper {
        padding: 25px;
    }
    
    .service-contents-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-contents-section {
        padding: 30px 0;
    }
    
    .service-contents-wrapper {
        gap: 30px;
    }
    
    .service-contents-title {
        font-size: 20px;
    }
    
    .service-contents-content {
        gap: 25px;
    }
    
    .service-contents-list-wrapper {
        padding: 10px 0;
    }
    
    .service-contents-description {
        font-size: 12px;
    }
}

/* ========================================
   比較セクション
   ======================================== */
.service-comparison-section {
    padding: 50px 0;
    background: #ecf7f5;
}

.service-comparison-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.service-comparison-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    color: #333333;
    text-align: center;
    margin: 0;
}


/* レスポンシブ - 比較セクション */
@media (max-width: 1200px) {
    .service-comparison-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .service-comparison-section {
        padding: 40px 0;
    }
    
    .service-comparison-wrapper {
        gap: 40px;
    }
    
    .service-comparison-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .service-comparison-section {
        padding: 30px 0;
    }
    
    .service-comparison-wrapper {
        gap: 30px;
    }
    
    .service-comparison-title {
        font-size: 20px;
    }
}

/* ========================================
   比較テーブル
   ======================================== */
.comparison-table {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 25% 37.5% 37.5%;
}

.comparison-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    padding: 16px 12px;
    background: #00a3ec;
}

.comparison-service {
    background: transparent;
}

.comparison-company {
    background: #00a3ec;
    border-radius: 8px 0 0 0;
}

.comparison-other {
    background: #333333;
    border-radius: 0 8px 0 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 25% 37.5% 37.5%;
    border-bottom: 1px solid #e0e0e0;
}

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

.comparison-row .right-corner {
    border-radius: 8px 0 0 0;
}

.comparison-label {
    background: #00a3ec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    padding: 16px 12px;
}

.comparison-our {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 12px;
}

.comparison-their {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 12px;
}

.comparison-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.comparison-check,
.comparison-x {
    width: 100%;
    height: 100%;
}

.comparison-text {
    font-weight: 700;
    font-size: 16px;
    color: #333333;
    line-height: 1.4;
    text-align: center;
}

.comparison-text p {
    margin: 0;
}

/* 比較テーブル - レスポンシブデザイン */
@media (max-width: 1200px) {
    .comparison-table {
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 25% 37.5% 37.5%;
        min-width: 0;
    }
    .comparison-cell,
    .comparison-label,
    .comparison-our,
    .comparison-their {
        padding: 8px 6px;
        font-size: 14px;
    }
    .comparison-company {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .comparison-table {
        margin-bottom: 30px;
    }
    .comparison-cell,
    .comparison-label {
        padding: 8px 6px;
        font-size: 12px;
    }
    .comparison-text {
        font-size: 12px;
    }
}

/* ========================================
   作業事例セクション - Case Studies
   ======================================== */
.case-studies-section {
    background: #ffffff;
    padding: 20px 0;
    position: relative;
}
.case-studies-section .case-studies-description {
    font-size: 20px;
    color: #333333;
    text-align: center;
    line-height: 2;
    margin: 0 0 64px 0;
}
.case-studies-section .case-studies-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
    padding: 0 20px !important;
    align-items: stretch !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.case-studies-section .case-study-card {
    background: #ecf7f5 !important;
    border-radius: 16px !important;
    padding: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    box-sizing: border-box !important;
    opacity: 1 !important;
    transform: none !important;
    height: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
}
.case-studies-section .case-study-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.case-studies-section .case-study-customer {
    display: flex;
    align-items: center;
    gap: 16px;
}
.case-studies-section .customer-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}
.case-studies-section .customer-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-studies-section .customer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.case-studies-section .customer-location {
    font-weight: 700;
    font-size: 16px;
    color: #333333;
    line-height: 1;
}
.case-studies-section .customer-purpose {
    font-weight: 700;
    font-size: 14px;
    color: #333333;
    line-height: 1;
}
.case-studies-section .case-study-tags {
    display: flex;
    gap: 8px;
    align-items: center;
}
.case-studies-section .case-tag {
    background: #00b69c;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 8px;
    white-space: nowrap;
}
.case-studies-section .case-study-title {
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    text-align: center;
    margin: 0;
    line-height: 1;
}
.case-studies-section .case-study-content {
    font-size: 14px;
    color: #333333;
    text-align: left;
    line-height: 2;
    margin: 0;
}
.case-studies-section .case-study-images {
    display: flex;
    gap: 16px;
    align-items: center;
}
.case-studies-section .case-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
}
.case-studies-section .case-image-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}
.case-studies-section .case-image-label {
    font-weight: 700;
    font-size: 16px;
    color: #333333;
    text-align: center;
    width: 100%;
}
.case-studies-section .case-study-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.case-studies-section .pricing-details {
    display: flex;
    gap: 4px;
    flex: 1;
    width: 100%;
}
.case-studies-section .pricing-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.case-studies-section .pricing-item:not(:last-child)::after {
    display: none;
}
.case-studies-section .pricing-label {
    background: #00a3ec;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 8px;
    text-align: center;
    width: 100%;
    border-radius: 8px 8px 0 0;
}
.case-studies-section .pricing-value {
    background: #52c3f1;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 8px;
    text-align: center;
    width: 100%;
    border-radius: 0 0 8px 8px;
}
.case-studies-section .pricing-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: auto;
    width: 100%;
}
.case-studies-section .pricing-total-label {
    background: #00a3ec;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 8px;
    text-align: center;
    width: 100%;
    border-radius: 8px 8px 0 0;
}
.case-studies-section .pricing-total-value {
    background: #52c3f1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 8px;
    width: 100%;
    border-radius: 0 0 8px 8px;
}
.case-studies-section .pricing-amount {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
}
.case-studies-section .pricing-unit {
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}
.case-studies-section .case-study-items {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.case-studies-section .items-title {
    font-weight: 700;
    font-size: 14px;
    color: #333333;
    margin: 0;
    line-height: 1;
}
.case-studies-section .items-description {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* 作業事例セクション - レスポンシブデザイン */
@media (max-width: 1024px) {
    .case-studies-section { padding: 20px 0; }
    .case-studies-section .case-studies-description { font-size: 18px; }
    .case-studies-section .case-studies-container {
        max-width: 100%;
        padding: 0 20px;
        gap: 24px;
    }
    .case-studies-section .case-study-card { padding: 48px; }
    .case-studies-section .case-study-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .case-studies-section .case-study-tags { flex-wrap: wrap; }
    .case-studies-section .case-study-images { gap: 24px; }
    .case-studies-section .case-image-img { height: 240px; }
    .case-studies-section .case-study-pricing { gap: 16px; }
    .case-studies-section .pricing-details { width: 100%; }
    .case-studies-section .pricing-total { min-width: auto; }
}
@media (max-width: 640px) {
    .case-studies-section { padding: 20px 0; }
    .case-studies-section .case-studies-description { font-size: 16px; margin-bottom: 40px; }
    .case-studies-section .case-studies-container {
        grid-template-columns: 1fr !important;
        gap: 24px;
        padding: 0 20px;
    }
    .case-studies-section .case-study-card { padding: 20px; gap: 24px; }
    .case-studies-section .case-study-header { gap: 16px; }
    .case-studies-section .case-study-customer { gap: 16px; }
    .case-studies-section .customer-avatar { width: 64px; height: 64px; }
    .case-studies-section .customer-location { font-size: 16px; }
    .case-studies-section .customer-purpose { font-size: 14px; }
    .case-studies-section .case-study-title { font-size: 20px; }
    .case-studies-section .case-study-content { font-size: 14px; }
    .case-studies-section .case-study-images { gap: 16px; }
    .case-studies-section .case-image-img { height: 200px; }
    .case-studies-section .case-image-label { font-size: 16px; }
    .case-studies-section .case-study-pricing { flex-direction: column; gap: 16px; }
    .case-studies-section .pricing-details { gap: 4px; }
    .case-studies-section .pricing-label { font-size: 12px; padding: 6px 8px; }
    .case-studies-section .pricing-value { font-size: 14px; padding: 8px 8px; }
    .case-studies-section .pricing-total { min-width: auto; }
    .case-studies-section .pricing-total-label { font-size: 12px; padding: 6px 8px; }
    .case-studies-section .pricing-total-value { padding: 8px 8px; }
    .case-studies-section .pricing-amount { font-size: 20px; }
    .case-studies-section .pricing-unit { font-size: 12px; }
    .case-studies-section .case-study-items { padding: 16px; }
    .case-studies-section .items-title { font-size: 14px; }
    .case-studies-section .items-description { font-size: 14px; }
}
@media (max-width: 360px) {
    .case-studies-section .case-studies-description { font-size: 14px; margin-bottom: 30px; }
    .case-studies-section .case-studies-container {
        grid-template-columns: 1fr !important;
        padding: 0 16px;
        gap: 20px;
    }
    .case-studies-section .case-study-card { padding: 16px; gap: 20px; }
    .case-studies-section .case-study-header { gap: 12px; }
    .case-studies-section .case-study-customer { gap: 12px; }
    .case-studies-section .customer-avatar { width: 48px; height: 48px; }
    .case-studies-section .customer-location { font-size: 14px; }
    .case-studies-section .customer-purpose { font-size: 12px; }
    .case-studies-section .case-tag { font-size: 12px; padding: 3px 8px; }
    .case-studies-section .case-study-title { font-size: 18px; }
    .case-studies-section .case-study-content { font-size: 13px; }
    .case-studies-section .case-study-images { gap: 12px; }
    .case-studies-section .case-image-img { height: 160px; }
    .case-studies-section .case-image-label { font-size: 14px; }
    .case-studies-section .pricing-details { gap: 2px; }
    .case-studies-section .pricing-label { font-size: 10px; padding: 4px 6px; }
    .case-studies-section .pricing-value { font-size: 12px; padding: 6px 6px; }
    .case-studies-section .pricing-total-label { font-size: 10px; padding: 4px 6px; }
    .case-studies-section .pricing-total-value { padding: 6px 6px; }
    .case-studies-section .pricing-amount { font-size: 18px; }
    .case-studies-section .pricing-unit { font-size: 10px; }
    .case-studies-section .case-study-items { padding: 12px; }
    .case-studies-section .items-title { font-size: 12px; }
    .case-studies-section .items-description { font-size: 12px; }
}

