/* ==========================================
   Profileセクション 新レイアウト
   ========================================== */

/* 明朝太字スタイル（Mission用 - 通常テキスト） */
.mission-text-serif {
    font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 2;
    margin-bottom: var(--spacing-md);
    text-align: center; /* 全デバイスでセンター配置 */
}

/* ==========================================
   Practice 導入セクション
   ========================================== */
.practice-intro {
    background-color: #ffffff;
    padding: var(--spacing-xl) 0;
}

.practice-intro .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.practice-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center; /* 全デバイスでセンター配置 */
}

.practice-intro-content p {
    font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-size: clamp(1.05rem, 1.9vw, 1.35rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 2;
    margin-bottom: var(--spacing-md);
}

.practice-intro-content p:last-child {
    margin-bottom: 0;
}

/* 明朝太字スタイル（Mission用 - 強調テキスト） */
.mission-text-emphasis-serif {
    font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 2;
    margin-top: var(--spacing-lg);
    text-align: center; /* 全デバイスでセンター配置 */
}

/* プロフィール新レイアウト: 縦並び1カラム */
.profile-new-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.profile-name-block {
    text-align: center;
    order: 2;
}

.profile-name-block .profile-name {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.1em;
}

.profile-name-block .profile-name-en {
    font-family: Optima, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.profile-name-block .profile-title {
    font-family: Optima, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

.profile-new-layout .profile-image-wrapper {
    order: 1;
    width: clamp(280px, 35vw, 420px);
}

.profile-new-layout .profile-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* プロフィールセクションタイトル: Strategy Architect（上下にオレンジ線、白文字、横一杯） */
.profile-section-title {
    font-family: var(--font-en);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-align: center;
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg) 0;
    width: 100%;
    border-top: 3px solid var(--gold-orange);
    border-bottom: 3px solid var(--gold-orange);
    position: relative;
}

.profile-section-title-ja {
    display: block;
    font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', serif;
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.08em;
    margin-top: var(--spacing-sm);
}

/* プロフィール本文コンテナ */
.profile-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.profile-bio {
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 2;
    color: #ffffff;
    width: 100%;
    max-width: 100%;
    text-align: left;
    padding: 0;
}

.profile-bio p {
    margin-bottom: var(--spacing-md);
}

/* レスポンシブ: タブレット */
@media (max-width: 768px) {
    .profile-new-layout {
        flex-direction: column-reverse;
        align-items: center;
        gap: var(--spacing-lg);
    }

    .profile-name-block {
        text-align: center;
    }

    .profile-new-layout .profile-image-wrapper {
        width: clamp(240px, 60vw, 360px);
    }

    .profile-section-title {
        margin: var(--spacing-lg) 0;
        padding: var(--spacing-md) var(--spacing-sm);
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .profile-section-title-ja {
        font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    }
}

/* レスポンシブ: スマホ */
@media (max-width: 480px) {
    .profile-new-layout {
        gap: var(--spacing-md);
    }

    .profile-new-layout .profile-image-wrapper {
        width: 200px;
    }

    .profile-section-title {
        margin: var(--spacing-md) 0;
        padding: var(--spacing-sm);
        font-size: 1.8rem;
        border-top: 2px solid var(--gold-orange);
        border-bottom: 2px solid var(--gold-orange);
    }

    .profile-section-title-ja {
        font-size: 1.1rem;
    }

    .mission-text-emphasis-serif {
        font-size: 1rem;
        line-height: 1.8;
    }
}
