/* ==========================================
   新しいPROFILEセクション
   ========================================== */
.profile-section-new {
    background: #ffffff;
    padding: 40px 15px;
}

.section-title-red {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    color: #d32f2f;
    font-family: var(--font-accent);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-subtitle-small {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #333333;
    margin-bottom: 30px;
}

.profile-card-new {
    max-width: 700px;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.profile-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, #ff0050 0%, #ff6874 50%, #ff0050 100%);
    border-radius: 20px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.profile-main-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* 三角を削除 */
.profile-name-large {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    color: #333333;
    margin-bottom: 25px;
    line-height: 1.2;
    white-space: nowrap;
}

.profile-description {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    text-align: left;
}

.profile-description p {
    margin: 5px 0;
}

/* ==========================================
   新しいVISIONセクション
   ========================================== */
.vision-section-new {
    background: #ffffff;
    padding: 40px 15px;
}

.vision-content-new {
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
}

.vision-intro {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.vision-content-new p {
    margin: 8px 0;
    line-height: 1.8;
}

.vision-para {
    margin-top: 20px !important;
}

.vision-final {
    font-size: 16px;
    font-weight: 700;
    margin: 15px 0;
    color: #333333;
}

.vision-closing {
    margin-top: 25px !important;
    font-size: 16px;
}

.vision-disclaimer {
    font-size: 13px;
    color: #666666;
    margin-top: 20px;
}

/* 黄色ハイライト */
.highlight-yellow {
    background: linear-gradient(transparent 60%, #ffff00 60%);
    font-weight: 600;
    padding: 0 2px;
}

/* 実績表の画像 */
.achievement-table-wrapper {
    margin: 25px 0;
    width: 100%;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.achievement-table-image {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.achievement-table-second {
    margin-top: 0;
}

/* VISIONのCTAボタン */
.vision-cta-wrapper {
    margin: 30px 0 0;
}

.cta-vision {
    display: block;
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 900;
    background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(183, 28, 28, 0.4);
    transition: all 0.3s ease;
    line-height: 1.5;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-vision::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-vision:hover::before {
    width: 300px;
    height: 300px;
}

.cta-vision:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 28, 28, 0.5);
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
    .section-title-red {
        font-size: 60px;
    }
    
    .section-subtitle-small {
        font-size: 18px;
    }
    
    .profile-name-large {
        font-size: 28px;
    }
    
    .profile-description {
        font-size: 16px;
    }
    
    .vision-intro {
        font-size: 18px;
    }
    
    .vision-content-new {
        font-size: 16px;
    }
    
    .profile-image-wrapper {
        max-width: 600px;
        padding: 10px;
    }
}
