/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 08 2026 | 12:13:33 */
/* =========================================
   Apple風プロフィール（修正完了版）
   ========================================= */

.apple-profile-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, sans-serif;
    color: #1d1d1f;
    margin-bottom: 60px;
}

/* --- プロフィール上部 --- */
.ap-bio-section {
    display: flex;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 40px;
    align-items: flex-start;
}

/* 画像エリアの修正 */
.ap-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}
/* get_avatarが出力するimgタグへのスタイル */
.ap-avatar img {
    width: 100% !important;   /* 強制的に枠に合わせる */
    height: 100% !important;
    object-fit: cover;
    border-radius: 50%;       /* 丸くする */
    border: 1px solid #e5e5e5;
    margin: 0;                /* テーマの余白打ち消し */
    padding: 0;
    box-shadow: none;
}

.ap-bio-text {
    flex-grow: 1;
}

.ap-name {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.ap-description {
    font-size: 14px;
    line-height: 1.8;
    color: #424245;
    margin: 0;
}

/* --- 3つの特徴グリッド --- */
.ap-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ap-feature-card {
    background: #fbfbfd;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px 14px; /* 左右の余白を詰めて文字スペース確保 */
    position: relative;
    transition: transform 0.2s;
}
.ap-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ap-number {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #86868b;
    margin-bottom: 12px;
    font-family: SF Pro Display, sans-serif;
}

.ap-text-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ★見出しの改行を防ぐ設定 */
.ap-feature-title {
    font-size: 15px;       /* 16pxだと溢れるので15pxに */
    white-space: nowrap;   /* ★強制的に1行にする */
    letter-spacing: -0.05em; /* 文字間を少し詰める */
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #1d1d1f;
}

.ap-feature-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #424245;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.ap-feature-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #6e6e73;
    margin: 0;
    text-align: justify;
}

/* スマホ表示 */
@media (max-width: 768px) {
    .ap-bio-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .ap-features-grid {
        grid-template-columns: 1fr;
    }
    .ap-feature-title {
        white-space: normal; /* スマホでは改行してOK */
    }
}