/* 
横浜SHADE 男性求人LP スタイルシート
力強さ・高級感・成功を視覚的に表現
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Roboto+Condensed:wght@700;900&family=Shippori+Antique+B1:wght@400;700;900&display=swap');

:root {
    --primary-color: #ff0000;
    --primary-dark: #cc0000;
    --primary-light: #ff3333;
    --accent-color: #FFD700;
    --accent-dark: #d4af37;
    --dark-bg: #0a0a0a;
    --dark-bg-2: #151515;
    --dark-bg-3: #222222;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --success-color: #4CAF50;
}

/* 基本スタイル */
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Shippori Antique B1', 'Roboto Condensed', sans-serif;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 1em;
    letter-spacing: 1px;
    line-height: 1.3;
}

h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 1.5em;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

section {
    padding: 80px 20px;
    position: relative;
}

.highlight {
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

/* アイコンフォント (仮) - 実際にはFont Awesomeなどを使用 */
.icon-shield::before { content: '🛡️'; margin-right: 5px; }
.icon-guarantee::before { content: '✅'; margin-right: 5px; }
.icon-collab::before { content: '🤝'; margin-right: 5px; }
.icon-money::before { content: '💰'; }
.icon-sns::before { content: '📱'; }
.icon-support::before { content: '🆘'; }
.icon-shield-check::before { content: '🛡️✅'; }
.icon-store::before { content: '🏢'; }
.icon-home::before { content: '🏠'; }
.icon-suit::before { content: '👔'; }
.icon-car::before { content: '🚗'; }
.icon-food::before { content: '🍱'; }

/* ボタン */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.6);
    border: 2px solid var(--primary-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.8);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--success-color);
    color: white;
    border: 2px solid var(--success-color);
}

.btn-secondary:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.5);
}

.btn-tertiary {
    background-color: #333;
    color: white;
    border: 2px solid #444;
}

.btn-tertiary:hover {
    background-color: #444;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.3em;
    font-weight: 900;
}

/* 1. ファーストビュー */
.hero {
    background: url('images/SHADE-店内写真6.jpg') no-repeat center center/cover;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('images/SHADE-店内写真6.jpg');
    color: white;
    text-align: center;
    padding: 180px 20px 120px;
    position: relative;
    overflow: hidden;
}

/* キラキラエフェクト用の疑似要素 */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.8"/></svg>');
    background-size: 120px 120px;
    animation: twinkle 4s infinite linear;
    opacity: 0.2;
    pointer-events: none;
}

@keyframes twinkle {
    0% { opacity: 0.1; }
    50% { opacity: 0.3; }
    100% { opacity: 0.1; }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.8em;
    margin-bottom: 0.5em;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
}

.hero-content .subtitle {
    font-size: 1.6em;
    margin-bottom: 2em;
    opacity: 0.9;
    font-weight: 700;
}

.cta-buttons {
    margin-bottom: 2.5em;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 1em;
    opacity: 0.9;
    flex-wrap: wrap;
}

.trust-icons span {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 2. 悩み・共感 */
.empathy {
    background-color: var(--dark-bg-2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.empathy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.empathy ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.empathy li {
    font-size: 1.3em;
    margin-bottom: 0.8em;
    color: var(--text-light);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    text-align: left;
    transition: all 0.3s ease;
}

.empathy li:hover {
    transform: translateX(5px);
    background-color: rgba(255, 0, 0, 0.1);
}

.empathy .solution {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 2em;
}

.income-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.income-box {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 10px;
    width: 280px;
    text-align: center;
    transition: all 0.3s ease;
}

.income-box:hover {
    transform: translateY(-10px);
}

.income-box h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--text-light);
}

.income-box .income {
    font-size: 2em;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-light);
}

.highlight-box {
    background-color: rgba(255, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.highlight-box .income {
    color: var(--primary-color);
}

.income-details {
    list-style: none;
    padding: 0;
    text-align: left;
}

.income-details li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    border: none;
    background: none;
}

.income-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.vs {
    font-size: 2em;
    font-weight: 900;
    color: var(--accent-color);
}

/* 3. 選ばれる理由 */
.reasons {
    background-color: var(--dark-bg);
    text-align: center;
    padding-bottom: 100px;
}

.reason-item {
    background-color: var(--dark-bg-3);
    padding: 40px 30px;
    margin-bottom: 40px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.reason-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.reason-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.2);
}

.reason-icon {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 0.8em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.reason-item h3 {
    font-size: 2em;
    color: var(--accent-color);
    margin-bottom: 0.8em;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.reason-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: width 0.5s ease;
}

.reason-item:hover h3::after {
    width: 100%;
}

.reason-item p {
    color: var(--text-light);
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 25px;
}

.stats-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 1.8em;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: var(--text-light);
}

.collab-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.collab-logos span {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: bold;
}

.support-features, .safety-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature i {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.safety-features span {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-image {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    margin: 20px 0;
    border: 3px solid var(--accent-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.career-path {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.path-step {
    background-color: var(--accent-color);
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.path-arrow {
    color: var(--accent-color);
    font-size: 1.5em;
    font-weight: bold;
}

/* 4. 働くホストの声 */
.testimonials {
    background-color: var(--dark-bg-2);
    padding-bottom: 100px;
}

.testimonial-item {
    background-color: var(--dark-bg-3);
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    border-left: 5px solid var(--accent-color);
    flex-wrap: wrap;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top; /* 横は中央、縦は上 */
    border: 3px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    flex: 1;
    min-width: 300px;
}

.testimonial-item h4 {
    font-size: 1.6em;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.testimonial-position, .testimonial-current {
    font-size: 1em;
    margin-bottom: 5px;
}

.testimonial-position {
    color: var(--text-muted);
    text-decoration: line-through;
}

.testimonial-current {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(255, 215, 0, 0.3);
}

/* Gallery */
.gallery {
    background-color: var(--dark-bg);
    text-align: center;
    padding-bottom: 100px;
}

.gallery h2 {
    color: var(--accent-color);
}

.gallery-intro {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center top; /* 横は中央、縦は上 */
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.host-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    color: white;
    text-align: left;
}

.host-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
}

.host-info p {
    margin: 0;
    color: var(--accent-color);
}

/* 5. 募集要項 */
.details {
    background-color: var(--dark-bg-2);
    padding-bottom: 100px;
}

.details h2 {
    color: var(--accent-color);
}

.details table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: var(--dark-bg-3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.details th, .details td {
    padding: 20px;
    border-bottom: 1px solid #444;
    text-align: left;
    vertical-align: top;
}

.details th {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--accent-color);
    width: 25%;
    font-weight: bold;
    font-size: 1.2em;
}

.details td {
    color: var(--text-light);
    font-size: 1.1em;
}

.details tr:last-child th,
.details tr:last-child td {
    border-bottom: none;
}

.salary-details, .benefits-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.salary-details li, .benefits-details li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.salary-details li::before, .benefits-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.salary-example {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

/* 6. よくある質問 */
.faq {
    background-color: var(--dark-bg);
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.faq h2 {
    color: var(--accent-color);
}

.faq details {
    background-color: var(--dark-bg-3);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #444;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq details:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq summary {
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    color: var(--accent-color);
    font-size: 1.3em;
    position: relative;
    list-style: none;
    background-color: rgba(0, 0, 0, 0.2);
}

.faq summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq details[open] summary::after {
    transform: rotate(45deg);
}

.faq p {
    padding: 20px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1em;
}

/* 7. 応募・問い合わせフロー */
.apply {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/SHADE-店内写真5.jpg') no-repeat center center/cover;
    text-align: center;
    color: white;
    padding-bottom: 100px;
    position: relative;
}

.apply::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.apply h2 {
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

.apply-lead {
    font-size: 1.5em;
    margin-bottom: 2.5em;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.apply-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3.5em;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.step {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 25px;
    border-radius: 10px;
    position: relative;
    width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 0, 0, 0.1);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.step-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.step-desc {
    color: var(--text-light);
    font-size: 0.9em;
}

.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.5em;
    font-weight: bold;
    z-index: 2;
}

.final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tel-number {
    display: block;
    font-size: 1em;
    margin-top: 5px;
    font-weight: bold;
}

.tel-hours, .line-id {
    display: block;
    font-size: 0.9em;
    margin-top: 5px;
    opacity: 0.8;
}

.secret-consultation {
    margin-top: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.secret-consultation p {
    margin: 5px 0;
}

/* 8. フッター */
footer {
    background-color: #000;
    color: #888;
    text-align: center;
    padding: 40px 20px;
    font-size: 1em;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content .store-name {
    font-size: 1.5em;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-content p {
    margin-bottom: 10px;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
    h2 {
        font-size: 3.2em;
    }
    
    .hero-content h1 {
        font-size: 4.5em;
    }
    
    .testimonial-item {
        flex-wrap: nowrap;
    }
    
    .apply-steps {
        flex-wrap: nowrap;
    }
    
    .step:not(:last-child)::after {
        display: block;
    }
    
    .final-cta {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.8em;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .testimonial-item {
        text-align: center;
    }
    
    .testimonial-item img {
        margin: 0 auto 20px;
    }
    
    .testimonial-content {
        width: 100%;
    }
}

/* アニメーション用クラス */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* 
横浜SHADE 男性求人LP アニメーション
力強さと高級感を演出する動きを追加
*/

/* スクロールアニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ヒーローセクションのアニメーション */
.hero h1 {
    animation: fadeInUp 1.2s ease-out;
}

.hero .subtitle {
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
    opacity: 0;
}

.hero .cta-buttons {
    animation: fadeInUp 1.2s ease-out 0.6s forwards;
    opacity: 0;
}

.hero .trust-icons {
    animation: fadeInUp 1.2s ease-out 0.9s forwards;
    opacity: 0;
}

/* ボタンのホバーエフェクト強化 */
.btn-primary:hover {
    animation: pulse 1s infinite;
}

/* 数字のカウントアップアニメーション */
.stat-number.animate {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 理由セクションのアイコンアニメーション */
.reason-icon {
    animation: pulse 2s infinite;
}

/* ギャラリー画像のホバーエフェクト */
.gallery-item:hover img {
    animation: zoomIn 0.5s forwards;
}

/* 応募ステップのアニメーション */
.step {
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* キラキラエフェクト */
.sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    pointer-events: none;
    opacity: 0;
    z-index: 100;
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* 成功への道のりアニメーション */
.career-path {
    position: relative;
}

.career-path .path-step {
    transition: all 0.3s ease;
}

.career-path:hover .path-step {
    animation: pulse 1s;
}

/* 収入比較のアニメーション */
.income-box {
    transition: all 0.3s ease;
}

.income-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.highlight-box {
    animation: pulse 3s infinite;
}

/* スクロールダウン指示アニメーション */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* テキストのグラデーションアニメーション */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradient 3s linear infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* 応募ボタンの注目アニメーション */
.btn-primary.attention {
    animation: attention 2s infinite;
}

@keyframes attention {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* スクロールトリガーアニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}
