/* 基本設定 */
:root {
    --main-color: #8B0000; /* エンジ色 (より深みのある色に修正) */
    --sub-color: #C0C0C0;   /* シルバー */
    --text-color: #333;
    --light-text-color: #fff;
    --dark-bg-color: #1a1a1a;
    --bg-gray: #f7f7f7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: #fff;
}

/* ヘッダーと追従ナビゲーション */
.sticky-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.global-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%; 
    max-width: 1200px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link img {
    height: 50px; 
    margin-right: 15px; 
}

.logo-link span {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem; 
    font-weight: 700;
    color: var(--main-color);
    letter-spacing: 2px;
}


.global-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.global-nav ul li a {
    display: block;
    padding: 20px 15px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    transition: color 0.3s;
}

.global-nav ul li a:hover {
    color: var(--main-color);
}

/* ヒーローセクション */
.hero {
    height: 50vh; 
    background: linear-gradient(135deg, var(--dark-bg-color) 0%, #41011d 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text-color);
}

.hero-content {
    background-color: transparent;
    padding: 40px;
    border: 2px solid var(--sub-color);
    border-radius: 10px;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 6rem;
    margin: 0;
    color: var(--sub-color);
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.8);
    position: relative; 
    overflow: hidden; 
}

.hero-content h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px; 
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg) translateX(-200px); 
    animation: shine-effect 5s linear infinite 2s; 
}


.hero-content p { font-size: 1.5rem; margin-top: 10px; }

/* セクション共通スタイル */
.section-title {
    text-align: center;
    padding-top: 80px;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--main-color);
    margin: 0;
}

.section-title p { color: #777; margin: 5px 0 0 0; }

/* 事業内容セクション */
.service-section { 
    padding: 0 5% 80px 5%; 
    max-width: 1200px; 
    margin: 0 auto; 
}
.service-container { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr);
    gap: 40px; 
    align-items: start;
}

.service-card { 
    background: #fff; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    overflow: hidden; 
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s; 
    padding-bottom: 20px; 
    display: flex; 
    flex-direction: column;
    height: 100%;
}

.service-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
}
.service-card img { 
    width: 100%; 
    height: 220px;
    object-fit: cover; 
}

.service-card h3 { 
    font-family: 'Noto Sans JP', sans-serif; 
    margin: 20px 0 10px 0; 
    padding: 0 30px;
    font-size: 1.5rem; 
    color: var(--main-color); 
    font-weight: 700; 
}
.service-card p { 
    padding: 0 30px 20px 30px; 
    margin: 0; 
    line-height: 1.8; 
    color: #555; 
}

.service-card .shop-info {
    padding-top: 10px;
    margin-top: auto;
}

.shop-info {
    padding: 10px 30px 0 30px;
    border-top: 1px solid var(--sub-color);
}
.shop-info p {
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
}
.shop-booking {
    margin-top: 10px !important;
    margin-bottom: 15px !important;
}

/* 予約リンクボタン */
.booking-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 30px 10px 30px;
}

.booking-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
    justify-content: center;
    min-width: 170px;
    box-sizing: border-box;
}
.booking-links a:hover {
    opacity: 0.9;
}

.insta-button {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.insta-button svg {
    width: 20px;
    height: 20px;
}

.hp-button {
    background-color: #f85f36; 
}


/* 理念・MVVセクション */
.philosophy-section { background-color: var(--bg-gray); padding-bottom: 80px; }
.philosophy-content { text-align: center; max-width: 820px; margin: 0 auto 60px auto; font-size: 1.1rem; line-height: 2; }
.mvv-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.mvv-card { background-color: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-radius: 8px; overflow: hidden; }
.mvv-header { color: white; padding: 20px; text-align: center; }
.mvv-header h3 { margin: 0; font-size: 1.5rem; }
.mvv-body { padding: 25px; }
.mvv-body ul { list-style: none; padding: 0; }
.mvv-body li { padding: 10px 0; border-bottom: 1px solid #eee; line-height: 1.7; }
.mvv-body li:last-child { border-bottom: none; }

/* 会社概要セクション */
.company-section { padding-bottom: 80px; padding-top:1px; margin-top:-1px; }
.company-table { border-collapse: collapse; width: 100%; max-width: 800px; margin: 0 auto; }
.company-table th, .company-table td { border: 1px solid #ddd; padding: 15px; text-align: left; }
.company-table th { background-color: var(--bg-gray); width: 30%; font-weight: 700; }

/* ▼▼▼▼▼▼▼▼▼▼ 変更箇所 ▼▼▼▼▼▼▼▼▼▼ */
.company-table a {
    color: var(--text-color); /* エンジ色から基本テキストカラーに変更 */
    text-decoration: none;
    font-weight: normal; /* 太字を通常に戻す */
}
.company-table a:hover {
    text-decoration: underline;
}
/* ▲▲▲▲▲▲▲▲▲▲ 変更箇所 ▲▲▲▲▲▲▲▲▲▲ */

/* フッター */
.footer { 
    background-color: var(--main-color); 
    color: white; 
    text-align: center; 
    padding: 20px 0; 
}
.footer p { margin: 0; }

/* 光が流れるアニメーションの定義 */
@keyframes shine-effect {
    to {
        transform: skewX(-25deg) translateX(1000px);
    }
}


/* スマートフォン対応 */
@media (max-width: 768px) {
    .global-nav { flex-direction: column; padding: 10px 5%; }
    .global-nav ul { margin-top: 10px; flex-wrap: wrap; justify-content: center;}
    .global-nav ul li a { padding: 10px 12px; font-size: 0.9rem; }
    
    .hero-content h1 { font-size: 3.5rem; }
    .hero-content h1::before {
        animation-name: none;
    }

    .hero-content p { font-size: 1.2rem; }
    .section-title { padding-top: 60px; }
    .section-title h2 { font-size: 2.5rem; }
    
    .service-container { 
        grid-template-columns: 1fr;
    }

    .service-card {
        height: auto;
    }

    .service-card h3 { font-size: 1.3rem; }
    .company-table th { width: 40%; }
    
    .logo-link img { 
        height: 40px; 
    } 
    .logo-link span { 
        font-size: 2.2rem; 
    }
}