@charset "UTF-8";

/* =========================================
   Service ページ固有スタイル
   ========================================= */

/* -----------------------------------------
   Page Header (Company共通基盤を継承)
   ----------------------------------------- */
.page-header {
    padding-top: 67px;
    overflow: visible;
    position: relative;
    background-color: transparent;
}

.page-title-wrap {
    padding-top: 136px;
    padding-bottom: 0;
    text-align: left;
    background-color: transparent;
    margin-left: 0;
}

.new-title-en {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(72px, 15.0vw, 127px);
    font-weight: 700;
    line-height: 1;
    margin: 0;
    color: #033056;
    letter-spacing: -0.02em;
}

.page-title-jp {
    font-family: var(--f-mplus);
    font-size: 24px;
    font-weight: 500;
    color: #1e3048;
    letter-spacing: 0.00em;
    margin-top: 10px;
    margin-left: 0;
}

/* ★ 横線：位置・スタイル絶対不変 */
.mv-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(10, 25, 47, 0.35);
    margin-top: 89px;
}

/* -----------------------------------------
   Breadcrumb（Company共通基盤を継承）
   ----------------------------------------- */
.breadcrumb-pos {
    position: absolute;
    right: 0;
    bottom: 27.5px;
    z-index: 20;
}

.breadcrumb-horizontal {
    display: flex;
    align-items: center;
    gap: 15.5px;
}

.breadcrumb-item-link,
.breadcrumb-current {
    height: 34px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid #033056;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
}

.breadcrumb-current {
    background-color: #033056;
    color: #ffffff;
}

.breadcrumb-item-link {
    color: #033056;
    overflow: hidden;
    position: relative;
    padding: 0 20px;
}

.bc-en,
.bc-jp {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-jp {
    position: absolute;
    transform: translateY(100%);
    opacity: 0;
    color: #fff;
    font-family: var(--f-mplus);
    font-size: 12px;
}

.breadcrumb-item-link:hover {
    border-color: var(--c-orange);
    background-color: var(--c-orange);
}

.breadcrumb-item-link:hover .bc-en {
    transform: translateY(-100%);
    opacity: 0;
}

.breadcrumb-item-link:hover .bc-jp {
    transform: translateY(0);
    opacity: 1;
}

.breadcrumb-separator {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #033056;
}

/* -----------------------------------------
   コンテンツ幅同期コンテナ（max-width 死守）
   ----------------------------------------- */
.content-sync-container {
    width: 100%;
    max-width: 1422px;
    margin: 0 auto;
    padding: 0 5%;
}

.content-sync-inner {
    position: relative;
    width: 100%;
}

/* -----------------------------------------
   Hero Typography Block（横線の下）
   ----------------------------------------- */
.hero-typo-block {
    display: block;
    padding-top: 128px;
    padding-bottom: 64px;
}

.hero-main-copy {
    font-family: var(--f-mplus);
    font-size: clamp(34px, 3.7vw, 50px);
    font-weight: 700;
    color: #033056;
    line-height: 1.55;
    letter-spacing: 0em;
    margin-bottom: 30px;
}

.hero-sub-copy {
    font-family: var(--f-mplus);
    font-size: 22px;
    font-weight: 500;
    color: #354154;
    line-height: 2.0;
    letter-spacing: 0.02em;
    margin-left: 0;
    text-align: left;
}

/* =========================================
   Gateway Cards — 誘導セクション
   ========================================= */
.gateway-wrapper {
    position: relative;
    width: 100%;
    padding: 150px 0 180px;
    z-index: 10;
    background: transparent;
    overflow: hidden;
}

.gateway-container {
    width: 100%;
    max-width: 1422px;
    margin: 0 auto;
    padding: 0 5%;
}

.gateway-cards-wrap {
    display: flex;
    gap: 40px;
    width: 100%;
}

.gateway-card {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #f0f2f5;
    border-radius: 12px;
    padding: 40px 40px 40px 50px;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(10, 25, 47, 0.03);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    will-change: transform, opacity;
}

.gateway-card:hover {
    box-shadow: 0 25px 50px rgba(10, 25, 47, 0.08);
}

.gc-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 10px;
}

.gc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #033056;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin: 0;
}

.gc-sub {
    font-family: var(--f-mplus);
    font-size: 14px;
    font-weight: 700;
    color: #1e3048;
    margin-top: 10px;
    letter-spacing: 0.05em;
    display: block;
}

.gc-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-v2-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #033056;
    border: 1px solid #033056;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-v2-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--c-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.btn-v2-circle svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    stroke-width: 2.5px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 1;
    transition: stroke 0.4s ease;
}

.gateway-card:hover .btn-v2-circle {
    transform: scale(1.05);
    background-color: var(--c-orange);
    border-color: var(--c-orange);
}

.gateway-card:hover .btn-v2-circle::before {
    transform: scaleX(1);
}

.gateway-card:hover .btn-v2-circle svg {
    stroke: #ffffff;
    animation: arrowFlyWhite 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gc-right {
    width: 220px;
    flex-shrink: 0;
}

.gc-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.gc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gateway-card:hover .gc-img {
    transform: scale(1.05);
}

/* =========================================
   Service Details — 3主力事業カード
   ========================================= */
.service-details {
    width: 100%;
    padding: 80px 0 210px;
    background: transparent;
}

.sd-container {
    width: 100%;
    max-width: 1422px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 59px;
}

.service-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: rgba(2, 22, 45, 0.78);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    will-change: transform, opacity;
}

/* ----- Text Column (LEFT) ----- */
.sc-text-col {
    flex: 1;
    padding: 84px 79px 84px 89px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sc-title-group {
    display: flex;
    flex-direction: column;
}

.sc-title-en {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(42px, 4.2vw, 68px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin: 0;
    white-space: nowrap;
}

.sc-title-jp {
    font-family: var(--f-mplus);
    font-size: 15px;
    font-weight: 500;
    color: var(--c-orange);
    letter-spacing: 0.05em;
    margin-top: 10px;
    display: block;
}

.sc-line {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    margin: 24px 0 28px;
}

.sc-desc {
    font-family: var(--f-mplus);
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    line-height: 2.05;
    letter-spacing: 0.04em;
    margin: 0;
}

.sc-btn-wrap {
    margin-top: 44px;
}

/* Button override — strengthセクションと同一仕様 */
.service-details .about-more-btn {
    background-color: #ffffff !important;
    box-shadow: none !important;
}

.service-details .about-more-btn::after {
    display: none !important;
}

.service-details .about-more-btn .btn-text-slider {
    z-index: 1;
}

.service-details .about-more-btn .btn-en,
.service-details .about-more-btn .btn-jp {
    color: #033056 !important;
    -webkit-text-fill-color: #033056 !important;
    z-index: 1;
}

.service-details .about-more-btn .btn-icon-wrap {
    background-color: #033056 !important;
    z-index: 1;
}

.service-details .about-more-btn .btn-icon-wrap::before,
.service-details .about-more-btn .btn-icon-wrap::after {
    display: none !important;
}

.service-details .about-more-btn .btn-icon-wrap svg {
    stroke: #ffffff !important;
    transition: none !important;
    z-index: 1;
}

.service-details .about-more-btn:hover {
    background-color: var(--c-orange) !important;
}

.service-details .about-more-btn:hover .btn-en,
.service-details .about-more-btn:hover .btn-jp {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.service-details .about-more-btn:hover .btn-icon-wrap {
    background-color: #ffffff !important;
}

.service-details .about-more-btn:hover .btn-icon-wrap svg {
    stroke: var(--c-orange) !important;
    display: block;
    animation: arrowFly 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ----- Image Column (RIGHT) ----- */
.sc-img-col {
    width: 42%;
    flex-shrink: 0;
    padding: 47px 47px 47px 0;
}

.sc-img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.sc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* =========================================
   Our Approach — 課題解決へのプロセス
   ========================================= */
.approach-section {
    position: relative;
    width: 100%;
    overflow: visible;
    background: transparent;
}

/* 背景クリップレイヤー（パートナーセクションと同一モーション） */
.ap-bg-clip {
    position: absolute;
    inset: 0;
    background: rgba(2, 22, 45, 0.78);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    clip-path: inset(18vh 12vw round 4px);
    will-change: clip-path;
    z-index: 0;
    pointer-events: none;
}

.ap-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1422px;
    margin: 0 auto;
    padding: 0 5%;
}

.ap-inner {
    display: grid;
    grid-template-columns: 38% 1fr;
    align-items: start;
    padding: 236px 0 256px;
}

/* ----- Left Column (GSAP Pin) ----- */
.ap-left {
    grid-column: 1;
    padding-right: 40px;
    margin-top: -38px;
}

.ap-left-content {
    display: flex;
    flex-direction: column;
}

.ap-title-en {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(52px, 5.8vw, 92px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin: 0;
    white-space: nowrap;
}

.ap-title-jp {
    font-family: var(--f-mplus);
    font-size: 20px;
    font-weight: 500;
    color: var(--c-orange);
    letter-spacing: 0.06em;
    margin-top: 22px;
    display: block;
}

/* ----- Right Column (Scroll) ----- */
.ap-right {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 110px;
    padding-top: 266px;
}

/* ----- Approach Item ----- */
.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    will-change: transform, opacity;
}

.ap-num {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(52px, 6.8vw, 104px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.1);
    line-height: 0.88;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    width: 110px;
    text-align: left;
    margin-top: -0.06em;
    user-select: none;
}

.ap-item-body {
    flex: 1;
    padding-top: 6px;
}

.ap-item-line {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    margin: 0 0 26px 0;
}

.ap-item-title {
    font-family: var(--f-mplus);
    font-size: clamp(20px, 1.9vw, 26px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.45;
    letter-spacing: 0.03em;
    margin: 0 0 20px 0;
}

.ap-item-desc {
    font-family: var(--f-mplus);
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    line-height: 2.15;
    letter-spacing: 0.04em;
    margin: 0;
}

/* =========================================
   News List — ニュース記事一覧
   ========================================= */
.news-section {
    position: relative;
    width: 100%;
    padding: 142px 0 180px;
    background-color: transparent;
    z-index: 15;
}

.news-container {
    width: 100%;
    max-width: 1422px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.news-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
}

.news-item:not(:last-child) {
    margin-bottom: 20px;
}

.news-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 26px;
    padding: 37px 44px;
    margin: 0;
    border: none;
    text-decoration: none;
    color: inherit;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.48s ease;
}

.news-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.45) 36%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.45) 64%, rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(20px) saturate(1.8) brightness(1.06);
    -webkit-backdrop-filter: blur(20px) saturate(1.8) brightness(1.06);
    border-radius: 4px;
    z-index: 0;
    transition: background 0.48s ease, backdrop-filter 0.48s ease, -webkit-backdrop-filter 0.48s ease;
}

.news-item>* {
    position: relative;
    z-index: 1;
}


.interactive-area:hover.news-item::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 36%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0.65) 64%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(24px) saturate(2.6) brightness(1.12);
    -webkit-backdrop-filter: blur(24px) saturate(2.6) brightness(1.12);
}

.news-meta {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 41px;
}

.news-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: #354154;
    letter-spacing: 0.04em;
}

.news-category {
    font-family: var(--f-mplus);
    font-size: 13.5px;
    font-weight: 400;
    color: var(--c-orange);
    background: transparent;
    border: 1px solid var(--c-orange);
    padding: 1px 13px;
    border-radius: 20px;
    letter-spacing: 0.04em;
}

.news-title {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
}

.news-title-text {
    font-family: var(--f-mplus);
    font-size: 15.5px;
    font-weight: 500;
    color: #354154;
    display: inline-block;
    position: relative;
    transition: color 0.4s ease;
    letter-spacing: 0.02em;
    line-height: 1.0;
}

.news-title-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: var(--c-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.interactive-area:hover.news-item .news-title-text {
    color: var(--c-orange);
}

.interactive-area:hover.news-item .news-title-text::after {
    transform: scaleX(1);
}

.news-arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    margin-left: 36px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #033056;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.news-arrow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background-color: var(--c-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.interactive-area:hover.news-item .news-arrow::before {
    transform: scaleX(1);
}

.news-arrow svg {
    width: 19px;
    height: 19px;
    stroke: #ffffff;
    stroke-width: 3px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
    position: relative;
    z-index: 1;
}

.interactive-area:hover.news-item .news-arrow svg {
    animation: arrowFlyWhite 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* =========================================
   News Pagination — ページネーション
   ========================================= */
.news-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 118px;
}

.np-numbers {
    display: flex;
    align-items: center;
    gap: 48px;
}

.np-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(3, 48, 86, 0.40);
    position: relative;
    cursor: default;
    user-select: none;
}

.np-ellipsis {
    font-family: var(--f-mplus);
    font-size: 14px;
    font-weight: 600;
    color: rgba(3, 48, 86, 0.40);
    letter-spacing: -0.3em;
    cursor: default;
    user-select: none;
    line-height: 1;
}

.np-num.is-current {
    color: #033056;
}

.np-num.is-current::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -5px;
    right: -5px;
    height: 2.5px;
    background-color: #033056;
}

.np-next-btn {
    position: absolute;
    right: 195px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(3, 48, 86, 0.40);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
    flex-shrink: 0;
}

.np-next-btn svg {
    width: 18px;
    height: 18px;
    stroke: rgba(3, 48, 86, 0.40);
    stroke-width: 2px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================
   レスポンシブ
   ========================================= */
@media (max-width: 900px) {
    .gateway-cards-wrap {
        flex-direction: column;
    }

    .gateway-card {
        padding: 40px;
        flex-direction: column;
        text-align: center;
    }

    .gc-center {
        margin: 30px 0;
    }

    .gc-right {
        width: 100%;
        margin-right: 0;
    }

    /* Service Details */
    .service-details {
        padding: 80px 0 100px;
    }

    .service-card {
        flex-direction: column;
    }

    .sc-text-col {
        padding: 50px 36px 40px;
    }

    .sc-title-en {
        white-space: normal;
    }

    .sc-img-col {
        width: 100%;
        padding: 0 28px 28px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    /* Pagination */
    .news-pagination {
        margin-top: 60px;
    }

    .np-numbers {
        gap: 23px;
    }

    .np-num {
        font-size: 18px;
    }

    .np-next-btn {
        position: static;
        width: 40px;
        height: 40px;
        margin-left: 24px;
    }

    .np-next-btn svg {
        width: 17px;
        height: 17px;
    }

    /* News items — メインページのニュースセクションと完全統一 */
    .news-item {
        padding: 36px 18px;
        row-gap: 22px;
    }

    .news-item:not(:last-child) {
        margin-bottom: 12px;
    }

    .news-meta {
        gap: 18px;
    }

    .news-date {
        font-size: 21px;
    }

    .news-category {
        font-size: 14px;
        font-weight: 600;
        padding: 2px 13px;
        border-width: 1.5px;
    }

    .news-title-text {
        font-size: 19px;
        line-height: 1.75;
    }

    .news-arrow {
        display: none;
    }

    /* ページヘッダー */
    .page-title-wrap {
        padding-top: 67px;
    }

    .new-title-en {
        font-size: clamp(68px, 14.5vw, 123px);
    }

    .page-title-jp {
        font-size: 22px;
        margin-top: 8px;
    }

    /* パンくずリスト — 楕円を低く、区切りを大きく、間隔狭く */
    .breadcrumb-item-link,
    .breadcrumb-current {
        height: 28px;
    }

    .breadcrumb-horizontal {
        gap: 10px;
    }

    .breadcrumb-separator {
        font-size: 26px;
        position: relative;
        top: -1px;
    }

    /* 横線 — margin-topでタイトル⇔パンくず⇔横線の間隔を制御 */
    .mv-separator {
        margin-top: 80px;
    }

    /* 横線⇔カード1枚目 */
    .news-section {
        padding-top: 70px;
    }

    /* カード3枚目⇔ページネーション⇔セクション下 */
    .news-pagination {
        margin-top: 63px;
    }

    .news-section {
        padding-bottom: 84px !important;
    }
}