.elementor-1401 .elementor-element.elementor-element-985b049{--display:flex;--gap:60px 60px;--row-gap:60px;--column-gap:60px;border-style:solid;--border-style:solid;border-width:0px 0px 1px 0px;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:1px;--border-left-width:0px;border-color:#E9E9E9;--border-color:#E9E9E9;--margin-top:75px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:100px;--padding-bottom:100px;--padding-left:0px;--padding-right:0px;}.elementor-widget-breadcrumbs{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-1401 .elementor-element.elementor-element-b459914{font-family:"Noto Sans JP", Sans-serif;font-weight:400;color:#ACACAC;}.elementor-1401 .elementor-element.elementor-element-b459914 a{color:#ACACAC;}/* Start custom CSS for shortcode, class: .elementor-element-e267ae9 *//* =============================================
   1. ページヘッダー全体のコンテナ
   ============================================= */
.custom-page-header {
    position: relative;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px; /* 上下パディングを増やして表示エリアを確保 */
    overflow: visible;  /* 斜め線や巨大な文字が隠れないようにする */
    background: transparent;
}

/* =============================================
   2. 左側：日本語タイトルエリア
   ============================================= */
.jp-title {
    position: relative;
    z-index: 10;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin: 0;
    color: #333;
}

/* 青い斜めアクセントライン */
.accent-line {
    width: 6px;
    height: 24px;
    background-color: #015EEA;
    transform: skewX(-20deg);
    margin-right: 12px;
    margin-left: 5px; /* 左側の切れ防止 */
    display: inline-block;
}

/* =============================================
   3. 右側：英語タイトルエリア（ACF）
   ============================================= */
.header-right {
    position: absolute;
    right: 0;
    bottom: -20px;      /* 位置を下げて日本語タイトルとバランスを取る */
    z-index: 1;
    width: 100%;
    text-align: right;
    pointer-events: none;
}

.en-text {
    font-family: 'Arial Black', sans-serif;
    font-size: 100px;
    font-weight: 900;
    line-height: 1.1;   /* 重要：1.0以上にすることで「y」の切れを防止 */
    letter-spacing: -2px;
    text-align: right;
    display: block;
    white-space: normal;
    /* 2行目（Visionなど）の色：薄いグレー10% */
    color: rgba(0, 0, 0, 0.1); 
}

/* --- 1行目：左から右へグラデーションのように染まる演出 --- */
.en-first-line {
    display: inline-block;
    padding-bottom: 0.1em; /* yの下部を表示するための余白 */
    
    /* 背景：濃い青(50%) + 薄いグレー(50%) */
    background: linear-gradient(to right, #015EEA 50%, rgba(0, 0, 0, 0.1) 50%);
    background-size: 200% 100%;
    background-position: 100% 0; /* 最初は右側の薄いグレーを表示 */
    
    /* 文字で切り抜く */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* アニメーション：2.5秒後に1.2秒かけてワイプ */
    animation: wipeColorLeftToRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 2.5s; 
}

/* =============================================
   4. アニメーション定義 & モバイル対応
   ============================================= */

@keyframes wipeColorLeftToRight {
    0% { background-position: 100% 0; }
    100% { background-position: 0% 0; }
}

/* スマホ対応（768px以下） */
@media (max-width: 768px) {
    .custom-page-header {
        min-height: 120px;
        padding: 40px 15px;
    }
    .en-text {
        font-size: 50px;
        line-height: 1.2;
    }
    .accent-line {
        height: 20px;
    }
    .header-right {
        bottom: 0px;
    }
}/* End custom CSS */