/* la beauté専用スタイル - 医療提携脱毛・美容サロン */

body.labeaute-page {
    background: #ffffff;
    color: #5a4a42;
}

/* la beauté専用ヘッダー */
body.labeaute-page header {
    background: rgba(255, 250, 248, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 2px 20px rgba(212, 165, 116, 0.1);
}

body.labeaute-page .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.labeaute-page .logo {
    display: block;
}

body.labeaute-page .logo img {
    height: 60px;
    width: auto;
}

body.labeaute-page nav ul {
    background: rgba(244, 199, 212, 0.1);
    border: 1px solid rgba(244, 199, 212, 0.3);
}

body.labeaute-page nav a {
    color: #5a4a42;
}

body.labeaute-page nav a:hover,
body.labeaute-page nav a.active {
    background: #f4c7d4;
    color: #5a4a42;
}

/* ヒーローセクション */
.labeaute-hero {
    position: relative;
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(135deg, #fff5f8 0%, #fffaf8 100%);
    padding: 6rem 0;
}

.labeaute-hero-content {
    max-width: 600px;
    padding: 0 4rem;
}

.labeaute-hero-catch {
    font-size: 1rem;
    font-weight: 600;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #f4c7d4;
    padding-left: 1rem;
}

.labeaute-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #5a4a42;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.labeaute-hero-description {
    font-size: 1.1rem;
    color: #7a6a62;
    line-height: 1.9;
    margin-bottom: 3rem;
    font-weight: 400;
}

.labeaute-hero-image {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.labeaute-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: -30px 30px 60px rgba(212, 165, 116, 0.2);
}

/* ボタン */
.btn-labeaute {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: linear-gradient(135deg, #f4c7d4 0%, #e8b4c8 100%);
    color: #5a4a42;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: 2px solid #f4c7d4;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(244, 199, 212, 0.3);
}

.btn-labeaute:hover {
    background: #ffffff;
    color: #5a4a42;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(244, 199, 212, 0.4);
}

.btn-labeaute-outline {
    background: transparent;
    color: #5a4a42;
    border: 2px solid #f4c7d4;
    box-shadow: none;
}

.btn-labeaute-outline:hover {
    background: linear-gradient(135deg, #f4c7d4 0%, #e8b4c8 100%);
    color: #5a4a42;
    box-shadow: 0 8px 25px rgba(244, 199, 212, 0.3);
}

/* セクション */
.labeaute-section {
    padding: 8rem 0;
    background: #ffffff;
}

.labeaute-section-alt {
    background: #fffaf8;
}

.labeaute-section-pink {
    background: linear-gradient(135deg, #fff5f8 0%, #fffaf8 100%);
}

.labeaute-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #5a4a42;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.labeaute-section-subtitle {
    font-size: 1.15rem;
    color: #8a7a72;
    text-align: center;
    margin-bottom: 5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* サービスグリッド */
.labeaute-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.labeaute-service-card {
    background: #ffffff;
    border: 1px solid #f4e4e8;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.labeaute-service-card:hover {
    transform: translateY(-8px);
    border-color: #f4c7d4;
    box-shadow: 0 25px 50px rgba(244, 199, 212, 0.2);
}

.labeaute-service-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.labeaute-service-card:hover img {
    transform: scale(1.03);
}

.labeaute-service-card-content {
    padding: 2.5rem;
    background: #ffffff;
}

.labeaute-service-card h3 {
    font-size: 1.6rem;
    color: #5a4a42;
    margin-bottom: 1rem;
    font-weight: 700;
}

.labeaute-service-card p {
    color: #7a6a62;
    line-height: 1.9;
    font-size: 1rem;
}

/* メニューカード */
.labeaute-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.labeaute-menu-card {
    display: block;
    background: #ffffff;
    border: 2px solid #f4e4e8;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.labeaute-menu-card:hover {
    border-color: #f4c7d4;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 199, 212, 0.2);
}

.labeaute-menu-card h3 {
    font-size: 1.3rem;
    color: #5a4a42;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
}

.labeaute-menu-card p {
    color: #7a6a62;
    line-height: 1.8;
    font-size: 1rem;
}

.labeaute-menu-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.labeaute-menu-price .original {
    font-size: 1rem;
    color: #b4a4a4;
    text-decoration: line-through;
}

.labeaute-menu-price .special {
    font-size: 2rem;
    color: #5a4a42;
    font-weight: 800;
}

/* 特徴セクション */
.labeaute-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.labeaute-feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border: 2px solid #f4e4e8;
    transition: all 0.4s ease;
}

.labeaute-feature-item:hover {
    background: linear-gradient(135deg, #fff5f8 0%, #fffaf8 100%);
    border-color: #f4c7d4;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 199, 212, 0.2);
}

.labeaute-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.labeaute-feature-item:hover .labeaute-feature-icon {
    transform: scale(1.1);
}

.labeaute-feature-item h3 {
    font-size: 1.2rem;
    color: #5a4a42;
    margin-bottom: 1rem;
    font-weight: 700;
}

.labeaute-feature-item p {
    color: #7a6a62;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* 店舗情報 */
.labeaute-store-info {
    background: #fffaf8;
    padding: 4rem;
    border: 2px solid #f4e4e8;
    margin: 4rem 0;
}

.labeaute-store-info h3 {
    font-size: 2rem;
    color: #5a4a42;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.labeaute-info-item {
    text-align: center;
}

.labeaute-info-item dt {
    font-size: 0.85rem;
    color: #b4a4a4;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.labeaute-info-item dd {
    font-size: 1.15rem;
    color: #5a4a42;
    font-weight: 600;
}

/* ギャラリー */
.labeaute-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.labeaute-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid #f4e4e8;
}

.labeaute-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

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

/* メッセージボックス */
.labeaute-message-box {
    background: linear-gradient(135deg, #fff5f8 0%, #fffaf8 100%);
    color: #5a4a42;
    padding: 4rem;
    margin: 4rem 0;
    text-align: center;
    border: 2px solid #f4c7d4;
}

.labeaute-message-box h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #5a4a42;
}

.labeaute-message-box p {
    font-size: 1.1rem;
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #7a6a62;
}

/* フッター */
body.labeaute-page footer {
    background: #5a4a42;
    border-top: none;
}

body.labeaute-page .footer-section h3 {
    color: #ffffff;
}

body.labeaute-page .footer-section a {
    color: #e8d8d8;
}

body.labeaute-page .footer-section a:hover {
    color: #f4c7d4;
}

body.labeaute-page .footer-section p {
    color: #e8d8d8;
}

/* 固定HPB予約ボタン */
.fixed-hpb-btn-labeaute {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #f4c7d4 0%, #e8b4c8 100%);
    color: #5a4a42;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(244, 199, 212, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #f4c7d4;
    letter-spacing: 1px;
}

.fixed-hpb-btn-labeaute:hover {
    background: #ffffff;
    color: #5a4a42;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(244, 199, 212, 0.5);
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .labeaute-hero {
        grid-template-columns: 1fr;
        padding: 4rem 0;
    }
    
    .labeaute-hero-content {
        padding: 0 2rem;
    }
    
    .labeaute-hero-image {
        height: 400px;
    }
    
    .labeaute-service-grid {
        grid-template-columns: 1fr;
    }
    
    .labeaute-menu-grid {
        grid-template-columns: 1fr;
    }
    
    .labeaute-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .labeaute-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .labeaute-hero h1 {
        font-size: 2.5rem;
    }
    
    .labeaute-hero-catch {
        font-size: 0.85rem;
    }
    
    .labeaute-hero-description {
        font-size: 1rem;
    }
    
    .labeaute-section {
        padding: 4rem 0;
    }
    
    .labeaute-section-title {
        font-size: 2rem;
    }
    
    .labeaute-service-card img {
        height: 250px;
        object-fit: cover;
    }
    
    .labeaute-features {
        grid-template-columns: 1fr;
    }
    
    .labeaute-gallery {
        grid-template-columns: 1fr;
    }
    
    .fixed-hpb-btn-labeaute {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 14px;
    }
}
