/*
===============================================
Shinka AI - Services Component
サービスコンポーネント
===============================================
*/

/* ========================================
   サービス概要
   ======================================== */

.shinka-service-overview {
    padding: 80px 0;
    background-color: #fafafa;
}

.shinka-service-overview__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.shinka-service-overview__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #111;
}

.shinka-service-overview__text {
    font-size: 16px;
    line-height: 2;
    color: #555;
}

/* ========================================
   サービス一覧グリッド
   ======================================== */

.shinka-services-list {
    padding: 100px 0;
}

.shinka-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.shinka-service-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.shinka-service-card__number {
    padding: 20px 24px;
    font-size: 14px;
    font-weight: 700;
    color: #4795E8;
    letter-spacing: 0.1em;
}

.shinka-service-card__number-value {
    font-size: 32px;
    margin-left: 8px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shinka-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shinka-service-card:hover .shinka-service-card__image img {
    transform: scale(1.05);
}

.shinka-service-card__body {
    padding: 32px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shinka-service-card__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #111;
}

.shinka-service-card__excerpt {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
    flex: 1;
}

.shinka-service-card__arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4795E8;
    transition: gap 0.3s ease;
}

.shinka-service-card:hover .shinka-service-card__arrow {
    gap: 12px;
}

.shinka-service-card__arrow svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   サービスの流れ
   ======================================== */

.shinka-service-flow {
    padding: 100px 0;
    background-color: #fafafa;
}

.shinka-section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.shinka-section-heading__label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #4795E8;
    margin-bottom: 12px;
}

.shinka-section-heading__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #111;
}

.shinka-flow-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.shinka-flow-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.shinka-flow-step:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateX(8px);
}

.shinka-flow-step__number {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.shinka-flow-step__number span {
    font-size: 12px;
    letter-spacing: 0.1em;
}

.shinka-flow-step__number strong {
    font-size: 36px;
    line-height: 1;
}

.shinka-flow-step__content {
    flex: 1;
}

.shinka-flow-step__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

.shinka-flow-step__text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* ========================================
   FAQ
   ======================================== */

.shinka-service-faq {
    padding: 100px 0;
}

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

.shinka-faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.shinka-faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.shinka-faq-item__question:hover {
    color: #4795E8;
}

.shinka-faq-item__question-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: inherit;
}

.shinka-faq-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 300;
    color: #4795E8;
    border: 2px solid #4795E8;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.shinka-faq-item.is-open .shinka-faq-item__icon {
    transform: rotate(45deg);
    background: #4795E8;
    color: #fff;
}

.shinka-faq-item__answer {
    display: none;
    padding: 0 0 32px;
}

.shinka-faq-item__answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* ========================================
   サービス詳細ヒーロー
   ======================================== */

.shinka-service-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #fafafa 100%);
}

.shinka-service-hero .c-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.shinka-service-hero__content {
    flex: 1;
}

.shinka-service-hero__title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #111;
}

.shinka-service-hero__excerpt {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.shinka-service-hero__image {
    flex: 0 0 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.shinka-service-hero__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   サービス詳細コンテンツ
   ======================================== */

.shinka-service-content {
    padding: 80px 0;
}

.shinka-service-body {
    max-width: 900px;
    margin: 0 auto 80px;
    font-size: 16px;
    line-height: 2;
    color: #333;
}

.shinka-service-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 60px 0 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid #4795E8;
}

.shinka-service-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 48px 0 16px;
}

.shinka-service-body p {
    margin-bottom: 24px;
}

.shinka-service-body ul,
.shinka-service-body ol {
    margin: 24px 0;
    padding-left: 24px;
}

.shinka-service-body li {
    margin-bottom: 12px;
}

.shinka-service-section {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: #f9fafb;
    border-radius: 16px;
    border-left: 4px solid #4795E8;
}

.shinka-service-section__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}

.shinka-service-section__icon {
    font-size: 32px;
}

.shinka-service-section__content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.shinka-service-section__content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 12px;
}

.shinka-service-section__content ul,
.shinka-service-section__content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.shinka-service-section__content li {
    margin-bottom: 8px;
}

/* ========================================
   サービスCTA
   ======================================== */

.shinka-service-cta {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 60px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.shinka-service-cta__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.shinka-service-cta__text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.95;
}

.shinka-service-cta .c-button {
    background: #fff;
    color: #4795E8;
}

.shinka-service-cta .c-button:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* ========================================
   関連サービス
   ======================================== */

.shinka-related-services {
    padding: 80px 0;
    background-color: #fafafa;
}

.shinka-related-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.shinka-related-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.shinka-related-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.shinka-related-service-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.shinka-related-service-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.shinka-related-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shinka-related-service-card:hover .shinka-related-service-card__image img {
    transform: scale(1.05);
}

.shinka-related-service-card__body {
    padding: 24px;
}

.shinka-related-service-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.shinka-related-service-card__excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 16px;
}

.shinka-related-service-card__arrow {
    font-size: 14px;
    font-weight: 600;
    color: #4795E8;
}

/* ========================================
   サービス詳細ページ専用スタイル
   ======================================== */

/* サービス概要詳細 */
.shinka-service-overview-detail {
    padding: 80px 0;
    background-color: #fff;
}

.shinka-service-overview-detail__content {
    max-width: 900px;
    margin: 0 auto;
}

.shinka-service-overview-detail__title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #111;
}

.shinka-service-overview-detail__label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #4795E8;
    margin-bottom: 12px;
}

.shinka-service-overview-detail__text {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 24px;
}

/* 特徴グリッド */
.shinka-features-grid {
    padding: 80px 0;
    background-color: #fafafa;
}

.shinka-features-grid__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.shinka-feature-box {
    background: #fff;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.shinka-feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.shinka-feature-box__number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #4795E8;
    background: linear-gradient(135deg, rgba(71, 149, 232, 0.1) 0%, rgba(203, 104, 121, 0.1) 100%);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.shinka-feature-box__icon {
    margin-bottom: 20px;
    color: #4795E8;
}

.shinka-feature-box__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

.shinka-feature-box__text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* おすすめセクション */
.shinka-recommend {
    padding: 80px 0;
    background-color: #fff;
}

.shinka-recommend__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.shinka-recommend__item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #4795E8;
}

.shinka-recommend__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #4795E8;
    font-size: 20px;
}

.shinka-recommend__text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

/* サービス詳細コンテンツ */
.shinka-service-detail-content {
    padding: 80px 0;
    background-color: #fafafa;
}

.shinka-service-detail-list {
    margin-top: 40px;
}

.shinka-service-phase {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.shinka-service-phase__header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f0f0f0;
}

.shinka-service-phase__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.shinka-service-phase__title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.shinka-service-phase__period {
    font-size: 14px;
    color: #666;
}

.shinka-service-phase__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.shinka-service-phase__item {
    padding-left: 24px;
    border-left: 3px solid #4795E8;
}

.shinka-service-phase__item-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.shinka-service-phase__item-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.shinka-service-phase__text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* 導入事例 */
.shinka-case-example {
    padding: 80px 0;
    background-color: #fff;
}

.shinka-case-example__item {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: #f9fafb;
    border-radius: 16px;
    border-left: 6px solid #4795E8;
}

.shinka-case-example__item:last-child {
    margin-bottom: 0;
}

.shinka-case-example__header {
    margin-bottom: 32px;
}

.shinka-case-example__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.shinka-case-example__subtitle {
    font-size: 14px;
    color: #666;
}

.shinka-case-example__content {
    display: grid;
    gap: 24px;
}

.shinka-case-example__challenge,
.shinka-case-example__solution,
.shinka-case-example__result {
    padding: 24px;
    background: #fff;
    border-radius: 12px;
}

.shinka-case-example__challenge h4,
.shinka-case-example__solution h4,
.shinka-case-example__result h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #4795E8;
}

.shinka-case-example__challenge p,
.shinka-case-example__solution p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.shinka-case-example__result ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shinka-case-example__result li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.shinka-case-example__result li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4795E8;
    font-weight: 700;
}

/* 料金プラン */
.shinka-pricing {
    padding: 80px 0;
    background-color: #fafafa;
}

.shinka-pricing__note {
    text-align: center;
    margin-bottom: 40px;
}

.shinka-pricing__note p {
    font-size: 14px;
    color: #666;
}

.shinka-pricing__table {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.shinka-pricing__row {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 24px;
    padding: 24px 32px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.shinka-pricing__row:last-child {
    border-bottom: none;
}

.shinka-pricing__label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.shinka-pricing__value {
    font-size: 20px;
    font-weight: 700;
    color: #4795E8;
    text-align: center;
}

.shinka-pricing__desc {
    font-size: 14px;
    color: #666;
    text-align: right;
}

/* 開発例グリッド */
.shinka-development-examples {
    padding: 80px 0;
    background-color: #fff;
}

.shinka-development-examples__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.shinka-development-example {
    padding: 32px 24px;
    background: #f9fafb;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.shinka-development-example:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.shinka-development-example__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.shinka-development-example__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

.shinka-development-example__text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* プログラムカード */
.shinka-programs {
    padding: 80px 0;
    background-color: #fafafa;
}

.shinka-programs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.shinka-program-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.shinka-program-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.shinka-program-card--featured {
    border: 3px solid #4795E8;
    position: relative;
}

.shinka-program-card--featured::before {
    content: 'おすすめ';
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 1;
}

.shinka-program-card__header {
    padding: 32px 24px 24px;
    background: linear-gradient(135deg, rgba(71, 149, 232, 0.05) 0%, rgba(203, 104, 121, 0.05) 100%);
}

.shinka-program-card__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #4795E8;
    background: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.shinka-program-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.shinka-program-card__body {
    padding: 24px;
}

.shinka-program-card__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.shinka-program-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.shinka-program-card__features li {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.shinka-program-card__features li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #4795E8;
    font-size: 10px;
}

.shinka-program-card__features li:last-child {
    border-bottom: none;
}

.shinka-program-card__info {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 2px solid #f0f0f0;
    font-size: 13px;
    color: #666;
}

.shinka-program-card__duration,
.shinka-program-card__target {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* サポートコンテンツ */
.shinka-support-contents {
    padding: 80px 0;
    background-color: #fafafa;
}

.shinka-support-contents__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.shinka-support-content {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.shinka-support-content__icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.shinka-support-content__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.shinka-support-content__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shinka-support-content__list li {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.shinka-support-content__list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4795E8;
    font-size: 12px;
}

.shinka-support-content__list li:last-child {
    border-bottom: none;
}

/* ========================================
   レスポンシブ
   ======================================== */

@media (max-width: 768px) {
    .shinka-service-overview {
        padding: 60px 0;
    }

    .shinka-service-overview__title {
        margin-bottom: 20px;
    }

    .shinka-services-list {
        padding: 60px 0;
    }

    .shinka-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shinka-service-flow {
        padding: 60px 0;
    }

    .shinka-section-heading {
        margin-bottom: 40px;
    }

    .shinka-flow-steps {
        gap: 24px;
    }

    .shinka-flow-step {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }

    .shinka-flow-step:hover {
        transform: translateX(0);
    }

    .shinka-flow-step__number {
        width: 80px;
        height: 80px;
    }

    .shinka-flow-step__number strong {
        font-size: 28px;
    }

    .shinka-flow-step__title {
        font-size: 20px;
    }

    .shinka-service-faq {
        padding: 60px 0;
    }

    .shinka-faq-item__question {
        padding: 24px 0;
    }

    .shinka-faq-item__question-text {
        font-size: 16px;
    }

    .shinka-faq-item__icon {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .shinka-service-hero {
        padding: 60px 0;
    }

    .shinka-service-hero .c-container {
        flex-direction: column;
        gap: 32px;
    }

    .shinka-service-hero__image {
        flex: 1;
        width: 100%;
    }

    .shinka-service-content {
        padding: 60px 0;
    }

    .shinka-service-body {
        margin-bottom: 60px;
    }

    .shinka-service-body h2 {
        font-size: 24px;
        margin: 40px 0 20px;
    }

    .shinka-service-body h3 {
        font-size: 20px;
        margin: 32px 0 12px;
    }

    .shinka-service-section {
        padding: 24px;
        margin-bottom: 40px;
    }

    .shinka-service-section__heading {
        font-size: 20px;
    }

    .shinka-service-cta {
        padding: 40px 24px;
        margin: 60px auto 40px;
    }

    .shinka-service-cta__title {
        font-size: 22px;
    }

    .shinka-related-services {
        padding: 60px 0;
    }

    .shinka-related-services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* 詳細ページ追加スタイル */
    .shinka-service-overview-detail {
        padding: 60px 0;
    }

    .shinka-features-grid {
        padding: 60px 0;
    }

    .shinka-features-grid__items {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shinka-feature-box {
        padding: 32px 24px;
    }

    .shinka-recommend {
        padding: 60px 0;
    }

    .shinka-recommend__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .shinka-service-detail-content {
        padding: 60px 0;
    }

    .shinka-service-phase {
        padding: 24px;
    }

    .shinka-case-example {
        padding: 60px 0;
    }

    .shinka-case-example__item {
        padding: 24px;
    }

    .shinka-pricing {
        padding: 60px 0;
    }

    .shinka-pricing__row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
    }

    .shinka-pricing__value,
    .shinka-pricing__desc {
        text-align: left;
    }

    .shinka-development-examples {
        padding: 60px 0;
    }

    .shinka-development-examples__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shinka-programs {
        padding: 60px 0;
    }

    .shinka-programs__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shinka-support-contents {
        padding: 60px 0;
    }

    .shinka-support-contents__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ========================================
   サービス詳細リスト（新デザイン）
   ======================================== */

.shinka-services-detail {
    padding: 100px 0;
    background: #FFFFFF;
}

.shinka-services-detail__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* サービスアイテム */
.shinka-service-item {
    margin-bottom: 120px;
}

.shinka-service-item:last-child {
    margin-bottom: 0;
}

/* イントロセクション（画像+テキスト） */
.shinka-service-item__intro {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 60px;
}

.shinka-service-item__img {
    flex: 0 0 525px;
    max-width: 525px;
}

.shinka-service-item__img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.shinka-service-item__text-area {
    flex: 1;
    max-width: 520px;
}

/* ヘッダー */
.shinka-service-item__header {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.shinka-service-item__header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300%;
    max-width: 720px;
    height: 1px;
    background: linear-gradient(90deg, #4795E8 0%, #CB6879 100%);
}

.shinka-service-item__number {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-service-item__title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.5;
    color: #0A0E27;
    margin: 0;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-service-item__description {
    font-size: 16px;
    line-height: 2;
    color: #495057;
}

/* 詳細ボックス（業務内容） */
.shinka-service-item__details {
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px 0 30px 0;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%) 1;
    box-shadow: 
        0 10px 40px rgba(71, 149, 232, 0.3),
        0 20px 60px rgba(203, 104, 121, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    border-radius: 12px;
    z-index: 1;
}

.shinka-service-item__details::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(71, 149, 232, 0.08) 0%, rgba(203, 104, 121, 0.08) 100%);
    z-index: -1;
    border-radius: 16px;
}

.shinka-service-item__details-head {
    flex-shrink: 0;
    width: 260px;
    font-size: 26px;
    font-weight: 900;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.shinka-service-item__details-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0 40px;
    margin: 0;
    list-style: none;
    gap: 8px 0;
}

.shinka-service-item__details-list li {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    width: 50%;
    padding-left: 45px;
    box-sizing: border-box;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.shinka-service-item__details-list li::before {
    content: "✓";
    position: absolute;
    top: 2px;
    left: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: #4795E8;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* CTAボタン */
.shinka-service-item__cta {
    text-align: center;
}

/* レスポンシブ */
@media (max-width: 991px) {
    .shinka-services-detail {
        padding: 80px 0;
    }

    .shinka-service-item {
        margin-bottom: 100px;
    }

    .shinka-service-item__intro {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .shinka-service-item__img {
        flex: 1;
        max-width: 100%;
    }

    .shinka-service-item__text-area {
        max-width: 100%;
    }

    .shinka-service-item__title {
        font-size: 32px;
    }

    .shinka-service-item__details {
        flex-direction: column;
        padding: 20px;
    }

    .shinka-service-item__details::before {
        left: -20px;
        width: calc(100% + 40px);
    }

    .shinka-service-item__details-head {
        width: 100%;
        margin-bottom: 20px;
        font-size: 22px;
    }

    .shinka-service-item__details-list {
        padding: 0 20px;
    }

    .shinka-service-item__details-list li {
        width: 100%;
        font-size: 16px;
        padding-left: 40px;
    }
}

@media (max-width: 767px) {
    .shinka-services-detail {
        padding: 60px 0;
    }

    .shinka-service-item {
        margin-bottom: 80px;
    }

    .shinka-service-item__intro {
        gap: 30px;
        margin-bottom: 30px;
    }

    .shinka-service-item__header {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .shinka-service-item__title {
        font-size: 26px;
    }

    .shinka-service-item__description {
        font-size: 15px;
    }

    .shinka-service-item__details {
        padding: 15px;
    }

    .shinka-service-item__details-head {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .shinka-service-item__details-list {
        padding: 0 15px;
    }

    .shinka-service-item__details-list li {
        font-size: 15px;
        padding-left: 35px;
    }

    .shinka-service-item__details-list li::before {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
}

/* ========================================
   導入タイムライン
   ======================================== */

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

.shinka-timeline__item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    position: relative;
}

.shinka-timeline__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.shinka-timeline__item::after {
    content: "";
    position: absolute;
    left: 80px;
    bottom: -30px;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, #4795E8 0%, #CB6879 100%);
}

.shinka-timeline__item:last-child::after {
    display: none;
}

.shinka-timeline__number {
    flex: 0 0 160px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    color: #FFFFFF;
    padding: 20px 0;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(71, 149, 232, 0.3);
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-timeline__content {
    flex: 1;
}

.shinka-timeline__title {
    font-size: 24px;
    font-weight: 900;
    color: #0A0E27;
    margin-bottom: 12px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-timeline__duration {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-timeline__description {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

/* ========================================
   料金プラン詳細
   ======================================== */

.shinka-pricing-detail {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.shinka-pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.shinka-pricing-plan {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.shinka-pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.shinka-pricing-plan--featured {
    border: 3px solid linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.shinka-pricing-plan--featured::before {
    content: "おすすめ";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.shinka-pricing-plan__header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    position: relative;
}

.shinka-pricing-plan__header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #4795E8 0%, #CB6879 100%);
}

.shinka-pricing-plan__name {
    font-size: 20px;
    font-weight: 900;
    color: #0A0E27;
    margin-bottom: 16px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-pricing-plan__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.shinka-pricing-plan__amount {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-pricing-plan__period {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

.shinka-pricing-plan__features {
    space-y: 16px;
}

.shinka-pricing-plan__features p {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 16px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-pricing-plan__features p::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    color: #FFFFFF;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    border-radius: 50%;
}

.shinka-pricing-note {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(71, 149, 232, 0.05) 0%, rgba(203, 104, 121, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(71, 149, 232, 0.1);
}

.shinka-pricing-note p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

/* ========================================
   コンタクトセクション
   ======================================== */

.shinka-contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.shinka-contact-intro-1 {
    text-align: center;
    background: none;
    margin-bottom: 60px;
}

.shinka-contact-intro__text {
    font-size: 16px;
    line-height: 2;
    color: #495057;
    max-width: 800px;
    margin: 0 auto 60px;
    background: none;
}

.shinka-contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* レスポンシブ */
@media (max-width: 991px) {
    .shinka-timeline__item {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
        padding-bottom: 50px;
    }

    .shinka-timeline__item::after {
        display: none;
    }

    .shinka-timeline__number {
        flex: none;
        max-width: 200px;
        margin: 0 auto;
    }

    .shinka-pricing-table {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shinka-pricing-plan {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .shinka-pricing-detail {
        padding: 60px 0;
    }

    .shinka-contact-section {
        padding: 60px 0;
    }

    .shinka-contact-form {
        padding: 40px 20px;
    }

    .shinka-timeline__title {
        font-size: 20px;
    }

    .shinka-pricing-plan__amount {
        font-size: 28px;
    }
}

/* ========================================
   サービス詳細ページの特徴セクション
   ======================================== */

/* サービス詳細ページの特徴アイテム - 背景画像なし、ボーダー線追加、画像右側固定 */
.page-template-page-service-consulting .shinka-feature-item,
.page-template-page-service-development .shinka-feature-item,
.page-template-page-service-reskilling .shinka-feature-item,
.page-template-page-service-support .shinka-feature-item {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid #E9ECEF;
}

.page-template-page-service-consulting .shinka-feature-item:last-child,
.page-template-page-service-development .shinka-feature-item:last-child,
.page-template-page-service-reskilling .shinka-feature-item:last-child,
.page-template-page-service-support .shinka-feature-item:last-child {
    border-bottom: none;
}

/* 背景画像を削除 */
.page-template-page-service-consulting .shinka-feature-item::before,
.page-template-page-service-development .shinka-feature-item::before,
.page-template-page-service-reskilling .shinka-feature-item::before,
.page-template-page-service-support .shinka-feature-item::before {
    display: none;
}

/* 逆順レイアウトを無効化（画像常に右側固定） */
.page-template-page-service-consulting .shinka-feature-item--reverse,
.page-template-page-service-development .shinka-feature-item--reverse,
.page-template-page-service-reskilling .shinka-feature-item--reverse,
.page-template-page-service-support .shinka-feature-item--reverse {
    flex-direction: row;
}

/* レスポンシブ対応 */
@media (max-width: 991px) {
    .page-template-page-service-consulting .shinka-feature-item,
    .page-template-page-service-development .shinka-feature-item,
    .page-template-page-service-reskilling .shinka-feature-item,
    .page-template-page-service-support .shinka-feature-item {
        flex-direction: column;
        margin-bottom: 60px;
        padding-bottom: 60px;
        border-bottom: 1px solid #E9ECEF;
    }
    
    .page-template-page-service-consulting .shinka-feature-item:last-child,
    .page-template-page-service-development .shinka-feature-item:last-child,
    .page-template-page-service-reskilling .shinka-feature-item:last-child,
    .page-template-page-service-support .shinka-feature-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .page-template-page-service-consulting .shinka-feature-item,
    .page-template-page-service-development .shinka-feature-item,
    .page-template-page-service-reskilling .shinka-feature-item,
    .page-template-page-service-support .shinka-feature-item {
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid #E9ECEF;
    }
    
    .page-template-page-service-consulting .shinka-feature-item:last-child,
    .page-template-page-service-development .shinka-feature-item:last-child,
    .page-template-page-service-reskilling .shinka-feature-item:last-child,
    .page-template-page-service-support .shinka-feature-item:last-child {
        border-bottom: none;
    }
}

/* ========================================
   コンパクトタイムライン
   ======================================== */

   .shinka-timeline-compact {
    padding: 80px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.shinka-timeline-compact__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.shinka-timeline-compact__duration {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.shinka-timeline-compact__period {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-timeline-compact__unit {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #0A0E27;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-timeline-compact__connector {
    font-size: clamp(40px, 4vw, 60px);
    font-weight: 700;
    color: #6c757d;
    margin: 0 16px;
}

.shinka-timeline-compact__description {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin: 0;
}

/* ========================================
   導入事例セクション
   ======================================== */

.shinka-cases {
    padding: 100px 0;
    background: #FFFFFF;
}

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

.shinka-case-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.shinka-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.shinka-case-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.shinka-case-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.shinka-case-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shinka-case-card:hover .shinka-case-card__image img {
    transform: scale(1.05);
}

.shinka-case-card__no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 900;
}

.shinka-case-card__content {
    padding: 32px 24px;
}

.shinka-case-card__title {
    font-size: 18px;
    font-weight: 900;
    color: #0A0E27;
    margin-bottom: 16px;
    line-height: 1.4;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-case-card__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-case-card__date {
    font-size: 12px;
    color: #adb5bd;
    font-weight: 500;
}

.shinka-cases__more {
    text-align: center;
}

/* ========================================
   よくある質問セクション
   ======================================== */

.shinka-faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.shinka-faq__list {
    max-width: 900px;
    margin: 0 auto;
}

.shinka-faq__item {
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.shinka-faq__question {
    width: 100%;
    padding: 24px 32px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.shinka-faq__question:hover {
    background: rgba(71, 149, 232, 0.02);
}

.shinka-faq__q-mark {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
}

.shinka-faq__q-text {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: #0A0E27;
    line-height: 1.5;
}

.shinka-faq__toggle {
    flex: 0 0 24px;
    font-size: 24px;
    font-weight: 300;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.shinka-faq__item.active .shinka-faq__toggle {
    transform: rotate(45deg);
}

.shinka-faq__answer {
    padding: 0 32px 32px;
    display: none;
    border-top: 1px solid #E9ECEF;
    margin-top: 16px;
    padding-top: 24px;
    display: flex;
    gap: 16px;
}

.shinka-faq__a-mark {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background: #E9ECEF;
    color: #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
}

.shinka-faq__a-text {
    flex: 1;
}

.shinka-faq__a-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    margin: 0;
}

/* レスポンシブ */
@media (max-width: 991px) {
    .shinka-timeline-compact {
        padding: 60px 0;
    }

    .shinka-timeline-compact__content {
        padding: 40px 30px;
    }

    .shinka-cases {
        padding: 80px 0;
    }

    .shinka-cases__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .shinka-faq {
        padding: 80px 0;
    }

    .shinka-faq__question {
        padding: 20px 24px;
        gap: 12px;
    }

    .shinka-faq__q-mark,
    .shinka-faq__a-mark {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .shinka-faq__answer {
        padding: 0 24px 24px;
        gap: 12px;
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    .shinka-timeline-compact__content {
        padding: 30px 20px;
    }

    .shinka-timeline-compact__connector {
        margin: 8px 0;
    }

    .shinka-case-card__content {
        padding: 24px 20px;
    }

    .shinka-faq__question {
        padding: 16px 20px;
    }

    .shinka-faq__q-text {
        font-size: 15px;
    }

    .shinka-faq__answer {
        padding: 0 20px 20px;
        padding-top: 16px;
    }
}

/* ========================================
   費用表
   ======================================== */

   .shinka-pricing-detail {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.shinka-pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 60px;
}

.shinka-pricing-case-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.shinka-pricing-case-table thead th {
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.06em;
    color: #FFFFFF;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    padding: 20px;
    border-left: 15px solid #FFFFFF;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-pricing-case-table thead th:first-child {
    width: 23%;
    border-left: 0;
}

.shinka-pricing-case-table tbody th,
.shinka-pricing-case-table tbody td {
    font-size: 16px;
    letter-spacing: 0.06em;
    text-align: center;
    vertical-align: top;
    background-color: #F7F7F7;
    padding: 20px min(2vw, 30px);
    border-top: 15px solid #FFFFFF;
}

.shinka-pricing-case-table tbody th {
    font-weight: 900;
    color: #0A0E27;
}

.shinka-pricing-case-table tbody td {
    border-left: 15px solid #FFFFFF;
}

.shinka-pricing-case-table tbody td.left {
    text-align: left;
    line-height: 1.8;
}

.shinka-pricing-fee-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.shinka-pricing-fee-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 32px;
}

.shinka-pricing-fee-item__title {
    display: grid;
    align-content: center;
    width: 248px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    min-height: 60px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.06em;
    font-weight: 900;
    color: #FFFFFF;
    clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0 100%, 0 0);
}

.shinka-pricing-fee-item__description {
    width: calc(100% - 280px);
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
}

/* レスポンシブ */
@media (max-width: 991px) {
    .shinka-pricing-detail {
        padding: 80px 0;
    }

    .shinka-pricing-case-table thead th {
        font-size: 16px;
        padding: 15px 10px;
        border-left: 10px solid #FFFFFF;
    }

    .shinka-pricing-case-table tbody th,
    .shinka-pricing-case-table tbody td {
        font-size: 14px;
        padding: 15px min(2vw, 20px);
        border-top: 10px solid #FFFFFF;
    }

    .shinka-pricing-case-table tbody td {
        border-left: 10px solid #FFFFFF;
    }

    .shinka-pricing-fee-item {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .shinka-pricing-fee-item__title {
        width: 100%;
        clip-path: none;
    }

    .shinka-pricing-fee-item__description {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .shinka-pricing-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .shinka-pricing-case-table {
        min-width: 600px;
        width: auto;
    }

    .shinka-pricing-case-table thead th {
        font-size: 14px;
        padding: 12px 8px;
    }

    .shinka-pricing-case-table tbody th,
    .shinka-pricing-case-table tbody td {
        font-size: 13px;
        padding: 12px 10px;
    }

    .shinka-pricing-fee-item__title {
        font-size: 16px;
        min-height: 50px;
    }

    .shinka-pricing-fee-item__description {
        font-size: 15px;
    }
}

/* ========================================
   背景装飾の追加
   ======================================== */

/* コンパクトタイムライン - グラデーション背景と斜め線 */
.shinka-timeline-compact {
    position: relative;
    overflow: hidden;
}

.shinka-timeline-compact::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(135deg, 
        rgba(71, 149, 232, 0.05) 0%, 
        rgba(203, 104, 121, 0.05) 100%);
    transform: rotate(-6deg);
    z-index: 0;
}

.shinka-timeline-compact::after {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, 
        rgba(71, 149, 232, 0.1) 0%, 
        rgba(203, 104, 121, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

.shinka-timeline-compact .c-container {
    position: relative;
    z-index: 1;
}

/* 導入事例 - 斜めの装飾要素 */
.shinka-cases {
    position: relative;
    overflow: hidden;
}

.shinka-cases::before {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, 
        rgba(71, 149, 232, 0.08) 0%, 
        rgba(203, 104, 121, 0.08) 100%);
    border-radius: 50%;
    z-index: 0;
}

.shinka-cases::after {
    content: "";
    position: absolute;
    top: 50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(225deg, 
        rgba(71, 149, 232, 0.06) 0%, 
        rgba(203, 104, 121, 0.06) 100%);
    border-radius: 50%;
    z-index: 0;
}

.shinka-cases .c-container {
    position: relative;
    z-index: 1;
}

/* よくある質問 - グラデーション背景と斜め線 */
.shinka-faq {
    position: relative;
    overflow: hidden;
}

.shinka-faq::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(225deg, 
        rgba(71, 149, 232, 0.04) 0%, 
        rgba(203, 104, 121, 0.04) 100%);
    transform: rotate(6deg);
    z-index: 0;
}

.shinka-faq::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, 
        rgba(71, 149, 232, 0.08) 0%, 
        rgba(203, 104, 121, 0.08) 100%);
    border-radius: 50%;
    z-index: 0;
}

.shinka-faq .c-container {
    position: relative;
    z-index: 1;
}

/* 費用セクション - グラデーション背景と装飾 */
.shinka-pricing-detail {
    position: relative;
    overflow: hidden;
}

.shinka-pricing-detail::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -15%;
    width: 130%;
    height: 140%;
    background: 
        linear-gradient(135deg, transparent 0%, transparent 49%, rgba(71, 149, 232, 0.03) 49%, rgba(71, 149, 232, 0.03) 51%, transparent 51%, transparent 100%),
        linear-gradient(45deg, transparent 0%, transparent 49%, rgba(203, 104, 121, 0.03) 49%, rgba(203, 104, 121, 0.03) 51%, transparent 51%, transparent 100%);
    background-size: 40px 40px;
    transform: rotate(-3deg);
    z-index: 0;
}

.shinka-pricing-detail::after {
    content: "";
    position: absolute;
    top: 100px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(71, 149, 232, 0.06) 0%, 
        rgba(203, 104, 121, 0.06) 50%, 
        transparent 70%);
    z-index: 0;
}

.shinka-pricing-detail .c-container {
    position: relative;
    z-index: 1;
}

/* テーブルに軽いグラデーション追加 */
.shinka-pricing-case-table tbody th,
.shinka-pricing-case-table tbody td {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(247, 247, 247, 1) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
}

/* 支払い情報ボックスに装飾 */
.shinka-pricing-fee-item {
    position: relative;
}

.shinka-pricing-fee-item::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, 
        rgba(71, 149, 232, 0.05) 0%, 
        rgba(203, 104, 121, 0.05) 100%);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shinka-pricing-fee-item:hover::before {
    opacity: 1;
}

/* 事例カードにグラデーションのアクセント */
.shinka-case-card {
    position: relative;
}

.shinka-case-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        transparent 50%, 
        rgba(71, 149, 232, 0.02) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.shinka-case-card:hover::before {
    opacity: 1;
}

.shinka-case-card__link {
    position: relative;
    z-index: 1;
}

/* FAQアイテムにグラデーションホバー */
.shinka-faq__item {
    position: relative;
}

.shinka-faq__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(71, 149, 232, 0.03) 0%, 
        rgba(203, 104, 121, 0.03) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.shinka-faq__item.is-open::before {
    opacity: 1;
}

.shinka-faq__question,
.shinka-faq__answer {
    position: relative;
    z-index: 1;
}

/* レスポンシブ調整 */
@media (max-width: 991px) {
    .shinka-timeline-compact::after,
    .shinka-cases::before,
    .shinka-cases::after,
    .shinka-faq::after,
    .shinka-pricing-detail::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .shinka-timeline-compact::before,
    .shinka-faq::before,
    .shinka-pricing-detail::before {
        opacity: 0.5;
    }
}

/* ========================================
   セクション全体の視覚的な改善
   ======================================== */

/* タイムラインコンテンツボックスに奥行き */
.shinka-timeline-compact__content {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 20px 80px rgba(71, 149, 232, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(71, 149, 232, 0.1);
}

/* タイムラインの大きな数字にグラデーション強化 */
.shinka-timeline-compact__period {
    background: linear-gradient(135deg, 
        #4795E8 0%, 
        #CB6879 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(71, 149, 232, 0.3));
}

/* 事例カードの画像エリアにグラデーションオーバーレイ */
.shinka-case-card__image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, 
        rgba(71, 149, 232, 0.1) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shinka-case-card:hover .shinka-case-card__image::after {
    opacity: 1;
}

.shinka-case-card__image {
    position: relative;
}

/* テーブルヘッダーに動きのあるグラデーション */
.shinka-pricing-case-table thead th {
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    position: relative;
    overflow: hidden;
}

.shinka-pricing-case-table thead th::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    transform: rotate(45deg);
}

/* 支払い情報のタイトルに光沢効果 */
.shinka-pricing-fee-item__title {
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    position: relative;
    overflow: hidden;
}

.shinka-pricing-fee-item__title::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.shinka-pricing-fee-item:hover .shinka-pricing-fee-item__title::before {
    left: 100%;
}

/* FAQの質問マークに立体感 */
.shinka-faq__q-mark {
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    box-shadow: 
        0 4px 12px rgba(71, 149, 232, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.shinka-faq__q-mark::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 60%);
    border-radius: 50%;
}

/* コンテンツセクションにサブタイトルのグラデーション強化 */
.shinka-data-cards__label {
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    box-shadow: 
        0 4px 20px rgba(71, 149, 232, 0.3),
        0 8px 40px rgba(203, 104, 121, 0.2);
    position: relative;
}

.shinka-data-cards__label::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 50%);
    border-radius: 4px;
}

/* 装飾的なドット要素を追加 */
.shinka-cases::before {
    background: 
        radial-gradient(circle, rgba(71, 149, 232, 0.15) 2px, transparent 2px),
        radial-gradient(circle, rgba(203, 104, 121, 0.15) 2px, transparent 2px),
        linear-gradient(135deg, 
            rgba(71, 149, 232, 0.08) 0%, 
            rgba(203, 104, 121, 0.08) 100%);
    background-size: 30px 30px, 30px 30px, 100% 100%;
    background-position: 0 0, 15px 15px, 0 0;
}

/* セクション間の視覚的な区切り強化 */
.shinka-timeline-compact,
.shinka-cases,
.shinka-faq,
.shinka-pricing-detail {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* タイムラインのunit（単位）にアクセント */
.shinka-timeline-compact__unit {
    position: relative;
}

.shinka-timeline-compact__unit::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        #4795E8 0%, 
        #CB6879 100%);
    border-radius: 2px;
    opacity: 0.3;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ========================================
   研修プログラムセクション
   ======================================== */

.shinka-training-programs {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
}

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

/* コースカード */
.course-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

/* コース画像 - 非表示 */
.course-image {
    display: none;
}

/* レベル表示 */
.course-level {
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(71, 149, 232, 0.3);
    display: inline-block;
    margin-bottom: 10px;
}

/* コース内容 */
.course-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* タグ */
.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.course-tag {
    background: linear-gradient(135deg, rgba(71, 149, 232, 0.1) 0%, rgba(203, 104, 121, 0.1) 100%);
    color: #4795E8;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1px solid rgba(71, 149, 232, 0.2);
}

/* タイトル */
.course-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0A0E27;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* メタ情報 */
.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #6c757d;
    font-size: 13px;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-meta i {
    color: #4795E8;
    font-size: 14px;
}

/* 説明文 */
.course-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    margin: 0;
}

/* フッター */
.course-footer {
    padding: 20px 25px;
    border-top: 2px solid #F8F9FA;
    background: linear-gradient(135deg, rgba(71, 149, 232, 0.03) 0%, rgba(203, 104, 121, 0.03) 100%);
}

.course-price {
    font-size: 18px;
    font-weight: 900;
    color: #0A0E27;
    text-align: center;
    letter-spacing: 0.03em;
}

/* レスポンシブ */
@media (max-width: 991px) {
    .shinka-training-programs {
        padding: 80px 0;
    }

    .training-programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .course-content {
        padding: 20px;
    }

    .course-content h3 {
        font-size: 18px;
    }

    .course-meta {
        font-size: 12px;
    }

    .course-content p {
        font-size: 14px;
    }

    .course-footer {
        padding: 18px 20px;
    }

    .course-price {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .shinka-training-programs {
        padding: 60px 0;
    }

    .training-programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-content {
        padding: 18px;
    }

    .course-content h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .course-meta {
        gap: 12px;
        margin-bottom: 12px;
    }

    .course-content p {
        font-size: 13px;
    }

    .course-footer {
        padding: 16px 18px;
    }

    .course-price {
        font-size: 15px;
    }

    .course-level {
        font-size: 12px;
        padding: 5px 14px;
    }

    .course-tag {
        font-size: 11px;
        padding: 3px 10px;
    }
}

/* ========================================
   サポート内容セクション
   ======================================== */

.shinka-support-contents {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.support-contents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* サポートカード */
.support-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ヘッダー */
.support-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F8F9FA;
}

.support-card__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(71, 149, 232, 0.3);
}

.support-card__title-area {
    flex-grow: 1;
}

.support-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #0A0E27;
    margin-bottom: 5px;
    line-height: 1.4;
}

.support-card__phase {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    background: linear-gradient(135deg, rgba(71, 149, 232, 0.1) 0%, rgba(203, 104, 121, 0.1) 100%);
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.03em;
}

/* コンテンツ */
.support-card__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-card__description {
    font-size: 15px;
    line-height: 1.8;
    color: #495057;
    margin: 0;
}

.support-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-card__list li {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
    padding-left: 28px;
    position: relative;
}

.support-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* レスポンシブ */
@media (max-width: 991px) {
    .shinka-support-contents {
        padding: 80px 0;
    }

    .support-contents-grid {
        gap: 30px;
        margin-top: 40px;
    }

    .support-card {
        padding: 30px;
    }

    .support-card__header {
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .support-card__icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .support-card__title {
        font-size: 20px;
    }

    .support-card__phase {
        font-size: 12px;
    }

    .support-card__description {
        font-size: 14px;
    }

    .support-card__list li {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .shinka-support-contents {
        padding: 60px 0;
    }

    .support-contents-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .support-card {
        padding: 25px;
    }

    .support-card__header {
        gap: 12px;
        margin-bottom: 18px;
        padding-bottom: 15px;
    }

    .support-card__icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .support-card__title {
        font-size: 18px;
    }

    .support-card__phase {
        font-size: 11px;
        padding: 3px 10px;
    }

    .support-card__content {
        gap: 15px;
    }

    .support-card__description {
        font-size: 13px;
    }

    .support-card__list {
        gap: 10px;
    }

    .support-card__list li {
        font-size: 13px;
        padding-left: 24px;
    }

    .support-card__list li::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
}