/* 店舗情報ページ専用スタイル */

/* ロゴのリンクスタイル */
.logo img {
    height: 45px;
    padding: 0;
    margin: 0;
}
.logo a {
    color: inherit;
    text-decoration: none;
}

.nav-links a.active {
    color: #fff;
}

.nav-links a.active::after {
    width: 100%;
}

/* ページヘッダー */
.page-header {
    min-height: 40vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%),
                url('../img/about_bg.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.header-content h2 {
    font-size: 3rem;
    font-weight: 100;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.header-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #aaa;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

/* メインコンテンツ */
.main-content {
    flex: 1;
}

/* 店舗紹介セクション */
.store-intro {
    padding: 5rem 0;
    background: #0a0a0a;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 100;
    letter-spacing: 4px;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

.intro-text p {
    font-size: 1rem;
    line-height: 2;
    color: #ccc;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* 店舗詳細情報 */
.store-details {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

/* Bootstrap5グリッドシステムに移行 - .details-grid は不要 */

.detail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.detail-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.detail-card h4 {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    color: #fff;
}

.detail-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #aaa;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.detail-card a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-card a:hover {
    color: #fff;
}

.holiday {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* アクセスセクション */
.access-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

.access-content {
    margin-top: 3rem;
}

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

.access-item h4 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    color: #fff;
}

.access-item ul {
    list-style: none;
}

.access-item li {
    font-size: 0.95rem;
    line-height: 2.2;
    color: #aaa;
    font-weight: 300;
    padding-left: 1.5rem;
    position: relative;
}

.access-item li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #666;
}

/* 地図 */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    display: block;
    filter: grayscale(30%) brightness(0.8);
}

/* サービスセクション */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

/* Bootstrap5グリッドシステムに移行 - .services-grid は不要 */

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    color: #fff;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #aaa;
    font-weight: 300;
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .page-header {
        min-height: 30vh;
        margin-top: 120px;
    }

    .header-content h2 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .header-content p {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .store-intro {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .intro-text p {
        font-size: 0.95rem;
    }

    .store-details,
    .access-section,
    .services-section {
        padding: 3rem 0;
    }

    .detail-card {
        padding: 2rem 1.5rem;
    }

    .access-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .header-content h2 {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .detail-card,
    .service-card {
        padding: 1.5rem 1rem;
    }

    .map-container iframe {
        height: 300px;
    }
}
