/*
===============================================
Shinka AI - About Page (Service Page)
Aboutページ（サービスページ）
===============================================
*/

/* ========================================
   Top Image Section（トップ画像）
   ======================================== */

.shinka-top-image {
    padding: 0 0 100px;
    position: relative;
    overflow: hidden;
}

.shinka-top-image__bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 100%;
    background: linear-gradient(135deg, rgba(71, 149, 232, 0.03) 0%, rgba(203, 104, 121, 0.03) 100%);
    border-radius: 300px 0 0 300px;
    z-index: 0;
}

.shinka-top-image__wrapper {
    position: relative;
    width: 80%;
    margin-left: auto;
    z-index: 1;
}

.shinka-top-image__frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.shinka-top-image__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 40px 100px rgba(71, 149, 232, 0.2),
        0 60px 140px rgba(203, 104, 121, 0.15);
    transition: all 0.5s ease;
}

.shinka-top-image__gradient-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.shinka-top-image__overlay-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(71, 149, 232, 0.15) 0%, rgba(203, 104, 121, 0.15) 100%);
    z-index: 2;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.shinka-top-image__overlay-circle--1 {
    width: 120px;
    height: 120px;
    top: 30px;
    right: 40px;
}

.shinka-top-image__overlay-circle--2 {
    width: 80px;
    height: 80px;
    bottom: 50px;
    left: 60px;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

/* ========================================
   Message Section（メッセージ）
   ======================================== */

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

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

.shinka-message__title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 900;
    color: #0A0E27;
    line-height: 1.5;
    margin-bottom: 32px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-message__company {
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

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

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

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

.shinka-message__feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.shinka-message__feature-text {
    font-size: 15px;
    font-weight: 700;
    color: #0A0E27;
    line-height: 1.6;
    margin: 0;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

/* ========================================
   CEO Message Section（代表メッセージ）
   ======================================== */

.shinka-ceo-message {
    padding: 120px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
    overflow: hidden;
}

.shinka-ceo-message::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 40%;
    height: 60%;
    background: linear-gradient(135deg, rgba(71, 149, 232, 0.03) 0%, rgba(203, 104, 121, 0.03) 100%);
    border-radius: 0 300px 300px 0;
    transform: translateY(-50%);
    z-index: 0;
}

.shinka-ceo-message__wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.shinka-ceo-message__image-area {
    flex: 0 0 420px;
    position: relative;
}

.shinka-ceo-message__image-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    background: linear-gradient(135deg, rgba(71, 149, 232, 0.1) 0%, rgba(203, 104, 121, 0.1) 100%);
    border-radius: 20px;
    z-index: 0;
}

.shinka-ceo-message__image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 30px 80px rgba(71, 149, 232, 0.15);
    z-index: 1;
}

.shinka-ceo-message__image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-radius: 16px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.3;
    pointer-events: none;
}

.shinka-ceo-message__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.shinka-ceo-message__image-frame:hover .shinka-ceo-message__image {
    transform: scale(1.05);
}

.shinka-ceo-message__content {
    flex: 1;
}

.shinka-ceo-message__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: #FFFFFF;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    padding: 8px 24px;
    border-radius: 4px;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(71, 149, 232, 0.5);
}

.shinka-ceo-message__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #0A0E27;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
}

.shinka-ceo-message__title-highlight {
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.shinka-ceo-message__text {
    font-size: 16px;
    line-height: 2;
    color: #495057;
    margin-bottom: 40px;
}

.shinka-ceo-message__text p {
    margin-bottom: 24px;
}

.shinka-ceo-message__text p:last-child {
    margin-bottom: 0;
}

.shinka-ceo-message__text strong {
    color: #0A0E27;
    font-weight: 700;
    background: linear-gradient(to bottom, transparent 60%, rgba(71, 149, 232, 0.15) 60%);
}

.shinka-ceo-message__closing {
    font-size: 17px;
    font-weight: 700;
    color: #0A0E27;
    line-height: 2;
    padding-top: 20px;
    border-top: 2px solid rgba(71, 149, 232, 0.2);
}

.shinka-ceo-message__company {
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.shinka-ceo-message__signature {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.shinka-ceo-message__role {
    font-size: 13px;
    font-weight: 500;
    color: #6c757d;
    letter-spacing: 0.05em;
}

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

/* ========================================
   Achievements Section（実績と信頼）
   ======================================== */

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

.shinka-data-cards__heading {
    text-align: center;
    margin-bottom: 80px;
}

.shinka-data-cards__label {
    display: block;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.3em;
    padding: 8px 24px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    color: #FFFFFF;
    border-radius: 4px;
    margin: 0 auto 24px;
    width: fit-content;
    text-shadow: 0 2px 10px rgba(71, 149, 232, 0.5);
}

.shinka-data-cards__title {
    display: block;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
    color: #0A0E27;
    line-height: 1.5;
}

.shinka-data-cards__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
}

.shinka-data-card {
    border: 1px solid #9f9f9f;
    border-radius: 10px;
    padding: 30px 30px 30px 40px;
    position: relative;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
}

.shinka-data-card__title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.shinka-data-card__title h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0A0E27;
    margin: 0;
}

.shinka-data-card__title span {
    font-size: 13px;
    color: #6c757d;
}

.shinka-data-card__content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.shinka-data-card__textarea {
    flex: 1 0 auto;
}

.shinka-data-card__number {
    margin-bottom: 12px;
}

.shinka-data-card__number p {
    color: #0A0E27;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    font-size: 4.2rem;
}

.shinka-data-card__number em {
    font-style: normal;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shinka-data-card__number span {
    font-size: 1.8rem;
    color: #6c757d;
    margin-left: 8px;
}

.shinka-data-card__text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.shinka-data-card__image {
    flex: 0 1 auto;
    align-self: center;
    max-width: 180px;
}

.shinka-data-card__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 5番目のカード（導入実績業界）は3行目に跨る */
.shinka-data-card--05 {
    grid-column: 1 / 3;
}

.shinka-data-card__industries {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.shinka-data-card__industries span {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(71, 149, 232, 0.1) 0%, rgba(203, 104, 121, 0.1) 100%);
    border: 1px solid rgba(71, 149, 232, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #0A0E27;
    transition: all 0.3s ease;
}

.shinka-data-card__industries span:hover {
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    color: #FFFFFF;
    border-color: transparent;
}

/* ========================================
   Features Section（3つの特徴）
   ======================================== */

.shinka-features {
    padding: 100px 0 120px;
    background: #fff;
}

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

.shinka-features__heading {
    text-align: center;
    margin-bottom: 80px;
}

.shinka-features__label {
    display: block;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.3em;
    padding: 8px 24px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    color: #FFFFFF;
    border-radius: 4px;
    margin: 0 auto 24px;
    width: fit-content;
    text-shadow: 0 2px 10px rgba(71, 149, 232, 0.5);
}

.shinka-features__title {
    display: block;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif;
    color: #0A0E27;
    line-height: 1.5;
}

/* 特徴アイテム */
.shinka-feature-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 200px;
    padding-bottom: 100px;
    position: relative;
    isolation: isolate;
}

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

.shinka-feature-item::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -100px;
    width: calc(100% + 200px);
    height: 500px;
    background-image: url('https://shinka-ai.co.jp/wp-content/uploads/2025/10/about-back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    opacity: 0.8;
}

/* 2つ目の特徴アイテムの背景画像 */
.shinka-feature-item:nth-child(3)::before {
    background-image: url('https://shinka-ai.co.jp/wp-content/uploads/2025/10/about-back-1.png');
}

/* 逆順レイアウト */
.shinka-feature-item--reverse {
    flex-direction: row-reverse;
}

/* コンテンツエリア */
.shinka-feature-item__content {
    flex: 0 0 480px;
    z-index: 1;
}

/* 数字 */
.shinka-feature-item__number {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 24px;
}

.shinka-feature-item__number-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #6c757d;
}

.shinka-feature-item__number-value {
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px #4795E8;
    text-stroke: 2px #4795E8;
    letter-spacing: 0;
}

/* タイトル */
.shinka-feature-item__title {
    font-size: 32px;
    font-weight: 900;
    color: #212529;
    line-height: 1.6;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

/* テキスト */
.shinka-feature-item__text {
    font-size: 16px;
    color: #495057;
    line-height: 1.9;
    margin-bottom: 20px;
}

.shinka-feature-item__text:last-child {
    margin-bottom: 0;
}

/* 画像エリア */
.shinka-feature-item__image {
    flex: 0 0 600px;
    position: relative;
}

.shinka-feature-item__image img {
    width: 100%;
    height: auto;
    border-radius: 20px 0 20px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.shinka-feature-item:hover .shinka-feature-item__image img {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Trust Section（信頼構築）
   ======================================== */

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

.shinka-trust-item {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.shinka-trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shinka-trust-item__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
}

.shinka-trust-item__title {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 16px;
}

.shinka-trust-item__text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.8;
}

/* ========================================
   Service Phases（フェーズ分け）
   ======================================== */

.shinka-service-phases {
    padding: 100px 0;
    background: #ffffff;
}

.shinka-phase {
    margin-bottom: 80px;
}

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

.shinka-phase__title {
    font-size: 32px;
    font-weight: 900;
    color: #212529;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #4795E8;
    position: relative;
}

.shinka-phase__title::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #4795E8 0%, #CB6879 100%);
}

.shinka-phase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.shinka-phase-item {
    padding: 30px 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4795E8;
    transition: all 0.3s ease;
}

.shinka-phase-item:hover {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left-color: #CB6879;
}

.shinka-phase-item__title {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 12px;
}

.shinka-phase-item__text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 991px) {
    .shinka-top-image {
        padding: 60px 0 80px;
    }

    .shinka-top-image__wrapper {
        width: 90%;
    }

    .shinka-top-image__overlay-circle--1 {
        width: 100px;
        height: 100px;
        top: 20px;
        right: 30px;
    }

    .shinka-top-image__overlay-circle--2 {
        width: 60px;
        height: 60px;
        bottom: 40px;
        left: 40px;
    }

    .shinka-ceo-message {
        padding: 80px 0;
    }

    .shinka-ceo-message__wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .shinka-ceo-message__image-area {
        flex: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .shinka-ceo-message__content {
        text-align: center;
    }

    .shinka-ceo-message__signature {
        justify-content: center;
    }

    .shinka-data-cards {
        padding: 80px 0;
    }

    .shinka-data-cards__heading {
        margin-bottom: 60px;
    }

    .shinka-data-cards__grid {
        gap: 24px;
    }

    .shinka-data-card {
        padding: 24px 24px 24px 30px;
    }

    .shinka-data-card__number p {
        font-size: 3.6rem;
    }

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

    .shinka-features__heading {
        font-size: 28px;
        margin-bottom: 60px;
    }

    .shinka-feature-item {
        flex-direction: column !important;
        gap: 40px;
        margin-bottom: 80px;
        padding-bottom: 80px;
    }

    .shinka-feature-item__content {
        flex: 1;
    }

    .shinka-feature-item__number-value {
        font-size: 80px;
    }

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

    .shinka-feature-item__image {
        flex: 1;
        width: 100%;
    }

    .shinka-trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .shinka-phase__title {
        font-size: 26px;
    }

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

@media (max-width: 767px) {
    .shinka-top-image {
        padding: 40px 0 60px;
    }

    .shinka-top-image__wrapper {
        width: 95%;
    }

    .shinka-top-image__bg-decoration {
        width: 90%;
    }

    .shinka-top-image__img {
        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.12),
            0 30px 70px rgba(71, 149, 232, 0.15),
            0 45px 100px rgba(203, 104, 121, 0.12);
    }

    .shinka-top-image__frame:hover .shinka-top-image__img {
        transform: translateY(-5px);
        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.15),
            0 35px 80px rgba(71, 149, 232, 0.18),
            0 50px 110px rgba(203, 104, 121, 0.15);
    }

    .shinka-top-image__overlay-circle--1 {
        width: 70px;
        height: 70px;
        top: 15px;
        right: 20px;
    }

    .shinka-top-image__overlay-circle--2 {
        width: 50px;
        height: 50px;
        bottom: 30px;
        left: 25px;
    }

    .shinka-data-cards {
        padding: 60px 0;
    }

    .shinka-data-cards__heading {
        margin-bottom: 40px;
    }

    .shinka-data-cards__label {
        font-size: 16px;
        padding: 6px 16px;
        margin-bottom: 16px;
    }

    .shinka-data-cards__title {
        font-size: 24px;
    }

    .shinka-data-cards__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shinka-data-card {
        padding: 24px 20px;
    }

    .shinka-data-card__title h3 {
        font-size: 16px;
    }

    .shinka-data-card__title span {
        font-size: 12px;
    }

    .shinka-data-card__number p {
        font-size: 3.2rem;
    }

    .shinka-data-card__number span {
        font-size: 1.6rem;
    }

    .shinka-data-card__text {
        font-size: 13px;
    }

    .shinka-data-card__industries span {
        padding: 6px 12px;
        font-size: 13px;
    }

    .shinka-ceo-message {
        padding: 60px 0;
    }

    .shinka-ceo-message::before {
        width: 60%;
    }

    .shinka-ceo-message__wrapper {
        gap: 40px;
    }

    .shinka-ceo-message__image-bg {
        top: -20px;
        left: -20px;
        width: calc(100% + 40px);
        height: calc(100% + 40px);
    }

    .shinka-ceo-message__label {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .shinka-ceo-message__title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .shinka-ceo-message__text {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .shinka-ceo-message__closing {
        font-size: 16px;
    }

    .shinka-ceo-message__signature {
        flex-direction: column;
        gap: 8px;
    }

    .shinka-ceo-message__role {
        font-size: 12px;
    }

    .shinka-ceo-message__name {
        font-size: 18px;
    }

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

    .shinka-message__title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .shinka-message__text {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .shinka-message__feature-icon {
        width: 70px;
        height: 70px;
    }

    .shinka-message__feature-text {
        font-size: 14px;
    }

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

    .shinka-features__heading {
        margin-bottom: 40px;
    }

    .shinka-features__label {
        font-size: 16px;
        padding: 6px 16px;
        margin-bottom: 16px;
    }

    .shinka-features__title {
        font-size: 24px;
    }

    .shinka-feature-item {
        margin-bottom: 60px;
        padding-bottom: 60px;
    }

    .shinka-feature-item__number-label {
        font-size: 14px;
    }

    .shinka-feature-item__number-value {
        font-size: 60px;
        -webkit-text-stroke: 1.5px #4795E8;
        text-stroke: 1.5px #4795E8;
    }

    .shinka-feature-item__title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .shinka-feature-item__text {
        font-size: 15px;
    }

    .shinka-trust-item {
        padding: 30px 20px;
    }

    .shinka-trust-item__icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .shinka-trust-item__title {
        font-size: 18px;
    }

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

    .shinka-phase {
        margin-bottom: 60px;
    }

    .shinka-phase__title {
        font-size: 22px;
    }
}