* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #ff6b9d, #c44569);
    --secondary-gradient: linear-gradient(135deg, #667eea, #764ba2);
    --accent-gradient: linear-gradient(135deg, #f093fb, #f5576c);
    --soft-gradient: linear-gradient(135deg, #ffeef8, #f8e8ff);
    --dark-gradient: linear-gradient(135deg, #2c3e50, #34495e);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Yu Gothic', 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ヘッダーのスタイル - グラスモーフィズム */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(255, 107, 157, 0.3);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links li a:hover::before {
    width: 80%;
}

.nav-links li a:hover {
    color: #ff6b9d;
    transform: translateY(-1px);
    background: rgba(255, 107, 157, 0.05);
}

/* ハンバーガーメニューボタン */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    justify-content: space-around;
}

.mobile-menu-button span {
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: var(--transition);
}

/* メインコンテンツのスタイル */
main {
    margin-top: 85px;
}

.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), 
                url('images/esute.JPG');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 90vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* iOS対応 - より包括的な修正 */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        min-height: 100vh !important;
        height: 100vh !important;
        -webkit-background-size: cover !important;
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
    }
}

/* iOS Safari特有の対応 */
@media screen and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
    .hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        min-height: 100vh !important;
        height: 100vh !important;
        -webkit-background-size: cover !important;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
    .hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        min-height: 100vh !important;
        height: 100vh !important;
        -webkit-background-size: cover !important;
    }
}

/* iPhone・iPad特定対応 */
@media only screen and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    .hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        min-height: 100vh !important;
        height: 100vh !important;
        -webkit-background-size: cover !important;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
    }
}

/* レスポンシブデザイン強化 */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        height: 70vh;
        min-height: 500px;
        padding: 1rem;
    }
    
    .hero h1 {
        line-height: 1.2;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(2deg); }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out 0.3s both;
    font-weight: 300;
    max-width: 600px;
}

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

/* サービスセクションのスタイル */
.services {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 5% 4rem 5%;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.services h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* 料金表のスタイル */
.price {
    padding: 4rem 5%;
    background-color: #fff;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.price-amount {
    font-size: 2rem;
    color: #ff69b4;
    margin: 1rem 0;
}

.duration {
    color: #666;
    margin-bottom: 1rem;
}

.price-details {
    list-style: none;
    text-align: left;
    padding: 0 1rem;
}

.price-details li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.price-details li::before {
    content: "•";
    color: #ff69b4;
    position: absolute;
    left: 0;
}

/* お問い合わせセクションのスタイル */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-primary);
    padding: 5rem 5%;
    text-align: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff6b9d' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='m0 40l40-40h-40v40zm40 0v-40h-40l40 40z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.contact h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 2.5rem;
    margin: 2rem 0;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border-radius: 15px;
    padding: 1rem;
    display: inline-block;
    transition: var(--transition);
}

.phone-number:hover {
    transform: scale(1.05);
}

.email a {
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6b9d;
    background: rgba(255, 107, 157, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.email a:hover {
    background: rgba(255, 107, 157, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 157, 0.2);
    color: #c44569;
}

/* フッターのスタイル */
footer {
    background: var(--dark-gradient);
    color: white;
    padding: 4rem 5% 2rem 5%;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='m0 40l40-40h-40v40zm40 0v-40h-40l40 40z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-content .contact-info p,
.footer-content .business-hours p {
    color: white !important;
    margin-bottom: 0.5rem;
}

/* フッター内のすべてのテキストとリンクを白色に統一 */
footer p,
footer a,
footer span {
    color: white !important;
    text-decoration: none !important;
}

/* iOS自動リンク対応 */
footer *:any-link {
    color: white !important;
    text-decoration: none !important;
}

/* より具体的な指定でiOS対応 */
.footer-content p:contains("TEL"),
.footer-content p:contains("0869"),
.contact-info p:contains("TEL"),
.contact-info p:contains("0869") {
    color: white !important;
}

/* アクセスセクションのスタイル */
.access {
    background: var(--soft-gradient);
    padding: 5rem 5%;
    position: relative;
}

.access h2 {
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    font-weight: 800;
}

.access-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.access-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-store-image-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.access-store-image {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    object-fit: cover;
}

.access-store-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-strong);
}

.access-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 450px;
}

.map iframe {
    border-radius: 15px;
    transition: var(--transition);
}

/* SNSセクションのスタイル */
.social {
    background: var(--dark-gradient);
    color: white;
    padding: 5rem 5%;
    text-align: center;
    position: relative;
}

.social h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    font-weight: 800;
}

.social-content {
    max-width: 600px;
    margin: 0 auto;
}

.instagram-link p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    border: none;
    position: relative;
    overflow: hidden;
}

.instagram-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.instagram-button:hover::before {
    left: 100%;
}

.instagram-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(131, 58, 180, 0.4);
}

.instagram-icon {
    width: 28px;
    height: 28px;
    margin-right: 12px;
    filter: brightness(0) invert(1);
}

/* ビジネス情報のスタイル */
.business-info, .mascot-info {
    margin: 1.5rem 0;
}

.business-info h4, .mascot-info h4 {
    color: #ff69b4;
    margin-bottom: 0.5rem;
}

/* 看板猫のスタイル */
.mascot-content {
    text-align: center;
    margin: 1rem 0;
}

.mascot-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.mascot-description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* レスポンシブ対応の調整 */
@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links li a {
        display: block;
        padding: 1rem 2rem;
        text-align: center;
        border-radius: 0;
        width: 100%;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .hero {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url('images/top_s.JPG');
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
        height: 70vh;
        min-height: 500px;
        padding: 1rem;
    }
    
    .hero h1 {
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.8rem 4%;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-links li a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero {
        height: 70vh;
        padding: 1rem;
    }
    
    .benefit-section,
    .homey-section,
    .services,
    .access,
    .social,
    .contact {
        padding: 3rem 5% 2rem 5%;
    }
    
    .access-content,
    .contact-content,
    .footer-content {
        padding: 2rem;
    }
}

/* 採用ページのスタイル（モダンに更新） */
.recruit-hero {
    background: linear-gradient(135deg, #74b9ff 0%, #00cec9 100%);
    color: white;
    padding: 6rem 5% 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.recruit-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.recruit-catch h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.recruit-catch .salary {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 2rem;
    display: inline-block;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.recruit-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.recruit-point, .job-description, .requirements {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.recruit-point:hover, .job-description:hover, .requirements:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.recruit-point h3, .job-description h3, .requirements h3 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.apply-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 3rem;
    background: var(--primary-gradient);
    color: white !important;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    border: none;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.apply-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.apply-button:hover::before {
    left: 100%;
}

.apply-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-strong);
    color: white !important;
}

.apply-button span {
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
    font-weight: 500;
    color: white !important;
}

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

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* セレクション色 */
::selection {
    background: rgba(255, 107, 157, 0.3);
    color: var(--text-primary);
}

/* カスタムスクロールバー */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gradient);
}

/* お得にキレイにセクション - カードデザイン強化 */
.benefit-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 5% 3rem 5%;
    position: relative;
}

.benefit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff6b9d' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='m0 40l40-40h-40v40zm40 0v-40h-40l40 40z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.benefit-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card, .start-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.benefit-card::before, .start-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.benefit-card:hover, .start-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.benefit-card h3, .start-card h3 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.benefit-card p, .start-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* アットホームセクション */
.homey-section {
    background: var(--soft-gradient);
    padding: 5rem 5% 3rem 5%;
    position: relative;
}

.homey-section h2 {
    text-align: center;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    font-weight: 800;
}

.homey-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.homey-staff, .homey-cat {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.homey-staff::after, .homey-cat::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.homey-staff:hover, .homey-cat:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.homey-staff-image, .homey-cat-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(255, 107, 157, 0.3);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.homey-staff-image:hover, .homey-cat-image:hover {
    transform: scale(1.05) rotate(5deg);
    border-color: #ff6b9d;
}

.homey-staff p, .homey-cat p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* コース案内 */
.courses-section {
    margin-top: 0;
}

.courses-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.course {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.a-course::before { background: linear-gradient(90deg, #ff6b9d, #c44569); }
.b-course::before { background: linear-gradient(90deg, #4a90e2, #357abd); }
.c-course::before { background: linear-gradient(90deg, #50e3c2, #3ac9a6); }
.d-course::before { background: linear-gradient(90deg, #f5a623, #e89611); }

.course:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.course h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.course h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.course .price {
    font-size: 1.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin: 1rem 0;
    text-shadow: 0 2px 10px rgba(245, 87, 108, 0.3);
}

.course .problem {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.course .description {
    line-height: 1.6;
    color: var(--text-secondary);
}

.course-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-image:hover {
    transform: scale(1.05);
}

/* アクセス店舗画像 */
.access-store-image-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.access-store-image {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    object-fit: cover;
}

.access-store-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-strong);
}

/* ビジネス情報のスタイル */
.business-info h4 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.business-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* 採用ページの応募セクション */
.apply-section {
    text-align: center;
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.apply-section h3 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.apply-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.apply-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.apply-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 3rem;
    background: var(--primary-gradient);
    color: white !important;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    border: none;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.apply-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.apply-button:hover::before {
    left: 100%;
}

.apply-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-strong);
    color: white !important;
}

.apply-button span {
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
    font-weight: 500;
    color: white !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .apply-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .apply-button {
        width: 100%;
        max-width: 300px;
        padding: 1.5rem 2rem;
    }
}

/* レスポンシブ対応の強化 */
@media (max-width: 768px) {
    .access {
        padding: 3rem 4%;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .access-info {
        text-align: center;
        order: 1;
    }
    
    .access-store-image-wrap {
        margin-bottom: 1.5rem;
    }
    
    .access-store-image {
        max-width: 300px;
    }
    
    .access-info p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .map {
        height: 300px;
        order: 2;
    }
}

@media (max-width: 480px) {
    .access {
        padding: 2rem 3%;
    }
    
    .access-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .access-store-image {
        max-width: 250px;
    }
    
    .access-info p {
        font-size: 0.9rem;
    }
    
    .map {
        height: 250px;
    }
}

/* iOS電話番号自動リンク化の無効化 */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    pointer-events: auto;
}

/* フッター内の電話番号スタイル保持 */
footer p,
footer a {
    color: white !important;
    text-decoration: none !important;
    -webkit-text-decoration-color: transparent !important;
    text-decoration-color: transparent !important;
}

/* iOS Safari特有の電話番号リンク無効化 */
@media screen and (-webkit-min-device-pixel-ratio: 1) {
    footer p,
    footer a,
    .footer-content p,
    .footer-content a {
        color: white !important;
        text-decoration: none !important;
        border: none !important;
        background: transparent !important;
        -webkit-text-decoration-line: none !important;
        text-decoration-line: none !important;
    }
} 