/* =============================================================================
   採用情報ページ専用CSS
   ============================================================================= */

/* New Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.7) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
}

.hero-slogan {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
}

.hero-message {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-top: 1.5rem;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.hero-message .highlight-pink {
    color: var(--primary-deep-pink);
}

/* Recruit Hero */
.recruit-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.recruit-hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.recruit-hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.recruit-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 40%,
        rgba(255, 255, 255, 0.3) 70%,
        transparent 100%
    );
    z-index: 2;
}

.recruit-hero .container {
    position: relative;
    z-index: 3;
}

.recruit-hero-content {
    max-width: 650px;
}

.recruit-hero-text {
    text-align: left;
    padding: 2rem 0;
}

.recruit-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-navy);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.recruit-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.recruit-hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.recruit-keywords {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.keyword {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Appeal Section */
.appeal-content {
    max-width: 1200px;
    margin: 0 auto;
}

.appeal-text {
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--dark-gray);
}

.appeal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .appeal-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

.appeal-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.appeal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.appeal-card i {
    font-size: 2.5rem;
    color: var(--primary-deep-pink);
    margin-bottom: 1rem;
}

.appeal-card h3 {
    font-size: 1.15rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.appeal-card p {
    color: var(--tech-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Strengths Recruit */
.strengths-recruit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.strength-recruit-card {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-normal);
}

.strength-recruit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.strength-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-deep-pink), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.strength-recruit-card h3 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.strength-recruit-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.company-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 150px;
    box-shadow: var(--shadow-md);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section subtitle - wider for longer text */
#career .section-subtitle,
#strengths .section-subtitle {
    max-width: 900px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    #career .section-subtitle,
    #strengths .section-subtitle {
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-height: 1.8;
    }
}

/* Career Path */
.career-path {
    max-width: 800px;
    margin: 0 auto;
}

.career-stage {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 0.5rem;
}

.stage-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-deep-pink));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.career-stage h4 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.career-stage ul {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.career-stage li {
    color: var(--dark-gray);
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
}

.career-stage li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    color: var(--accent-green);
    font-weight: 900;
}

.career-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-deep-pink);
    margin: 0.5rem 0;
}

.career-branches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.branch {
    background: var(--light-gray);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-deep-pink);
}

.branch h5 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branch i {
    color: var(--primary-deep-pink);
}

.branch p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Employee Voices */
.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.voice-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.voice-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-navy));
    color: var(--white);
    padding: 0.875rem;
    display: flex;
    gap: 0.875rem;
    align-items: center;
}

.voice-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.voice-profile h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.voice-profile p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.voice-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.voice-content {
    padding: 1rem;
}

.voice-section {
    margin-bottom: 1rem;
}

.voice-section:last-child {
    margin-bottom: 0;
}

.voice-section h5 {
    color: var(--primary-deep-pink);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.voice-section p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.company-culture-tags {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    text-align: center;
}

.company-culture-tags h4 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: var(--spacing-md);
}

.culture-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

.culture-tags .tag {
    background: var(--white);
    border: 2px solid var(--primary-pink);
    color: var(--primary-navy);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.culture-tags .tag i {
    color: var(--accent-green);
}

/* Training Section */
.training-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.training-type {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.training-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), #FF9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.training-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.training-type h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: var(--spacing-sm);
}

.training-type p {
    color: var(--dark-gray);
    line-height: 1.7;
}

.training-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-lg);
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.stat-item-large {
    text-align: center;
}

.stat-number-large {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-deep-pink);
    line-height: 1;
}

.stat-label-large {
    display: block;
    font-size: 1rem;
    color: var(--primary-navy);
    margin-top: 0.5rem;
    font-weight: 600;
}

.training-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.support-card {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

.support-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.support-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.support-card h4 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: var(--spacing-sm);
}

.support-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Work-Life Balance */
.wlb-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
}

.wlb-main h3 {
    font-size: 1.75rem;
    color: var(--primary-navy);
    margin-bottom: var(--spacing-md);
}

.schedule {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-md);
}

.schedule-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--mid-gray);
}

.schedule-item:last-child {
    border-bottom: none;
}

.time {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-deep-pink);
    min-width: 70px;
}

.activity h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.activity p {
    color: var(--tech-gray);
    font-size: 0.9rem;
}

.wlb-highlight {
    background: linear-gradient(135deg, var(--accent-green), #4CAF50);
    color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.wlb-highlight i {
    font-size: 3rem;
}

.wlb-highlight h4 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.wlb-highlight p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.benefit-card {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary-deep-pink);
    margin-bottom: var(--spacing-sm);
}

.benefit-card h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: var(--spacing-sm);
}

.benefit-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-card li {
    color: var(--dark-gray);
    font-size: 0.9rem;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.benefit-card li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--primary-deep-pink);
}

/* Recruitment Details - Vertical Layout */
.recruitment-detail {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.recruitment-category-title {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--primary-pink);
    position: relative;
}

.recruitment-category-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 60px;
    height: 3px;
    background: var(--primary-deep-pink);
}

.recruitment-detail h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--primary-pink);
}

.detail-section {
    margin-bottom: var(--spacing-lg);
}

.detail-section h4 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-section h4 i {
    color: var(--primary-deep-pink);
}

.detail-section p,
.detail-section ul {
    color: var(--dark-gray);
    line-height: 1.8;
}

.detail-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-section li {
    padding-left: 1.5rem;
    position: relative;
}

.detail-section li::before {
    content: '▸';
    position: absolute;
    left: 0.5rem;
    color: var(--primary-deep-pink);
}

.flow-steps {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
}

.flow-step {
    background: var(--light-gray);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--primary-navy);
}

.flow-steps i {
    color: var(--primary-deep-pink);
}

.cta-section-inline {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Final Message */
.final-message {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    color: var(--white);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.final-message h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.message-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.message-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.highlight i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-sm);
}

.highlight h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.highlight p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.message-closing {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: var(--spacing-lg);
}

/* Responsive */
@media (max-width: 992px) {
    .wlb-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 450px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-message {
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .recruit-hero {
        min-height: 80vh;
    }
    
    .recruit-hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(255, 255, 255, 0.6) 100%
        );
    }
    
    .recruit-hero-content {
        max-width: 100%;
    }
    
    .recruit-hero-text {
        text-align: center;
        padding: 1rem 0;
    }
    
    .recruit-hero-title {
        font-size: 2.5rem;
    }
    
    .recruit-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .recruit-hero-description {
        font-size: 1.1rem;
    }
    
    .voices-grid,
    .strengths-recruit-grid,
    .training-types {
        grid-template-columns: 1fr;
    }
    
    .recruitment-tabs {
        flex-direction: column;
    }
    
    .tab-btn.active::after {
        display: none;
    }
    
    .hikari-section {
        flex-direction: column;
        text-align: center;
    }
    
    .hikari-image img {
        width: 180px;
        height: 180px;
    }
}

/* Sakurano Hikari Section */
.section.hikari-intro-section {
    padding: 2rem 0 1rem 0; /* 上下の余白を大幅に削減 */
}

.hikari-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0.5rem 0;
}

.hikari-image {
    flex-shrink: 0;
}

.hikari-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 4px solid #fff;
}

.hikari-content {
    flex: 1;
}

.hikari-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.2rem;
    text-align: left;
}

/* Hikari Message Section */
.hikari-message-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f8 0%, #f0f8ff 100%);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.06);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hikari-message-image {
    flex-shrink: 0;
}

.hikari-message-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.hikari-message-content {
    flex: 1;
}

.hikari-message-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-deep-pink), var(--primary-pink));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hikari-message-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.hikari-message-text p:last-child {
    margin-bottom: 0;
}

/* Hikari Profile */
.hikari-profile {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff5f8 0%, #f0f8ff 100%);
    border-radius: 12px;
}

.profile-header {
    margin-bottom: 1.2rem;
}

.profile-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.2rem;
}

.profile-subtitle {
    font-size: 0.85rem;
    color: var(--primary-pink);
    font-weight: 600;
    margin: 0;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.profile-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: var(--dark-gray);
}

.profile-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.profile-note {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-deep-pink);
    text-align: center;
    font-style: italic;
    margin: 0;
    padding-top: 0.8rem;
    border-top: 2px solid rgba(233, 30, 99, 0.2);
}

@media (max-width: 768px) {
    .hikari-section {
        transform: none; /* scaleを解除 */
    }
    
    .hikari-message-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1rem;
        transform: none; /* scaleを解除 */
    }
    
    .hikari-message-image img {
        width: 120px;
        height: 120px;
    }
    
    .hikari-message-text {
        text-align: left;
    }
    
    .hikari-message-text p {
        font-size: 1rem; /* 0.9rem → 1rem（他のコンテンツと同じ） */
        line-height: 1.8;
    }
    
    .hikari-profile {
        padding: 1.2rem;
    }
    
    .profile-row {
        font-size: 0.95rem; /* 0.85rem → 0.95rem */
    }
    
    .profile-note {
        font-size: 1rem; /* 0.9rem → 1rem */
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 55vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-message {
        font-size: 1rem;
        margin-top: 0.8rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}