/* TIARA専用スタイル - ネイル・まつエク・眉毛サロン */

body.tiara-page {
    background: #ffffff;
    color: #2d2d2d;
}

body.tiara-page header {
    background: rgba(255, 250, 248, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(218, 165, 145, 0.2);
    box-shadow: 0 2px 20px rgba(218, 165, 145, 0.1);
}

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

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

body.tiara-page .logo img {
    height: 140px;
    width: auto;
}

body.tiara-page nav ul {
    background: rgba(255, 240, 235, 0.5);
    border: 1px solid rgba(218, 165, 145, 0.3);
}

body.tiara-page nav a {
    color: #8b6f5c;
}

body.tiara-page nav a:hover,
body.tiara-page nav a.active {
    background: linear-gradient(135deg, #d4a574 0%, #c89b6f 100%);
    color: #ffffff;
}

/* TIARAヒーローセクション */
.tiara-hero {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 50%, #ffd4c8 100%);
    padding: 6rem 0;
}

.tiara-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

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

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

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

.tiara-hero-description {
    font-size: 1.1rem;
    color: #6b5547;
    line-height: 1.9;
    margin-bottom: 3rem;
    font-weight: 400;
}

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

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

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

.btn-tiara:hover {
    background: #ffffff;
    color: #c89b6f;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

.btn-tiara-outline {
    background: transparent;
    color: #c89b6f;
    border: 2px solid #d4a574;
    box-shadow: none;
}

.btn-tiara-outline:hover {
    background: linear-gradient(135deg, #d4a574 0%, #c89b6f 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

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

.tiara-section-alt {
    background: #fff9f7;
}

.tiara-section-pink {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
}

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

.tiara-section-subtitle {
    font-size: 1.15rem;
    color: #9b8577;
    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;
}

/* TIARAサービスグリッド */
.tiara-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

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

.tiara-service-card:hover {
    transform: translateY(-8px);
    border-color: #d4a574;
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.2);
}

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

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

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

.tiara-service-card h3 {
    font-size: 1.6rem;
    color: #8b6f5c;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

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

.tiara-feature-item:hover {
    background: linear-gradient(135deg, #d4a574 0%, #c89b6f 100%);
    border-color: #d4a574;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.25);
}

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

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

.tiara-feature-item h3 {
    font-size: 1.2rem;
    color: #8b6f5c;
    margin-bottom: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tiara-feature-item:hover h3 {
    color: #ffffff;
}

.tiara-feature-item p {
    color: #9b8577;
    line-height: 1.8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.tiara-feature-item:hover p {
    color: #fff5f0;
}

/* TIARA店舗情報 */
.tiara-store-info {
    background: #fff9f7;
    padding: 4rem;
    border: 2px solid #f5e6dc;
    margin: 4rem 0;
}

.tiara-store-info h3 {
    font-size: 2rem;
    color: #8b6f5c;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

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

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

.tiara-info-item dd {
    font-size: 1.15rem;
    color: #8b6f5c;
    font-weight: 600;
}

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

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

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

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

/* TIARAフッター */
body.tiara-page footer {
    background: linear-gradient(135deg, #8b6f5c 0%, #6b5547 100%);
    border-top: none;
}

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

body.tiara-page .footer-section a {
    color: #f5e6dc;
}

body.tiara-page .footer-section a:hover {
    color: #ffffff;
}

body.tiara-page .footer-section p {
    color: #f5e6dc;
}

/* TIARAメッセージボックス */
.tiara-message-box {
    background: linear-gradient(135deg, #d4a574 0%, #c89b6f 100%);
    color: #ffffff;
    padding: 4rem;
    margin: 4rem 0;
    text-align: center;
}

.tiara-message-box h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

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

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

.tiara-menu-card:hover {
    border-color: #d4a574;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.tiara-menu-card h3 {
    font-size: 1.3rem;
    color: #8b6f5c;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
}

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

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

.tiara-menu-price .special {
    font-size: 2rem;
    color: #c89b6f;
    font-weight: 800;
}

.tiara-menu-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #c89b6f 100%);
    color: #ffffff;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 1rem;
}

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

.fixed-hpb-btn-tiara:hover {
    background: #ffffff;
    color: #c89b6f;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.5);
}

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

@media (max-width: 768px) {
    .tiara-section {
        padding: 4rem 0;
    }
    
    .tiara-hero h1 {
        font-size: 1.8rem;
    }
    
    .tiara-section-title {
        font-size: 2rem;
    }
    
    .tiara-service-card h3 {
        font-size: 1.2rem;
    }
    
    .tiara-service-card p {
        font-size: 0.9rem;
    }
    
    .tiara-features {
        grid-template-columns: 1fr;
    }
    
    .tiara-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .fixed-hpb-btn-tiara {
        padding: 12px 24px;
        font-size: 14px;
    }
}
