@charset "utf-8";

/* =========================================
   Custom Overrides & Additions
========================================= */

/* 初回作成時のベースカラー復元用 */
.bg-asphalt {
    background-color: #2b2f33 !important;
}

/* 追従ヘッダー（sticky-top）の高さ分、アンカーリンクでジャンプした際のズレを調整 */
html {
    scroll-padding-top: 76px;
    scroll-behavior: smooth; /* JS（main.js）を廃止し、これ一本でスムーススクロールを実現 */
}

/* 視認性の高いやわらかいオレンジ・イエロー系テキストカラー（注意書き等） */
.text-accent-soft {
    color: #e67e22 !important; 
}

/* カルーセルの画像を元のまま明るく表示するため、今回はfilterを使用しない */
.carousel-item img {
    height: 100%;
    object-fit: cover;
}

/* 画像上の文字（白文字）を読みやすくするため強めのシャドウを追加 */
.hero-carousel .carousel-caption h2,
.hero-carousel .carousel-caption p {
    text-shadow: 0 4px 10px rgba(0,0,0,0.8), 0 0 5px rgba(0,0,0,0.4);
}

/* カルーセルの高さを固定（スマホとPCで調整） */
.hero-carousel .carousel-item {
    height: 400px;
}
.parking-carousel .carousel-item {
    height: 400px;
}

@media (max-width: 768px) {
    .hero-carousel .carousel-item {
        height: 280px; 
    }
    .parking-carousel .carousel-item {
        height: 300px;
    }
}

/* 駐車場カード（Box）の微調整 */
.parking-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.parking-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
}

/* テーブル内の強調行 */
.table-highlight {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

/* 電話番号周りの装飾（リンクと勘違いされないようグレー・黒系へ変更） */
.tel-box {
    border: 3px solid #6c757d;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: inline-block;
    background-color: #ffffff;
}
.tel-link {
    font-size: 2.5rem;
    font-weight: bold;
    color: #212529;
    text-decoration: none;
    line-height: 1.2;
}
.tel-link:hover {
    color: #495057; 
}

@media (max-width: 768px) {
    .tel-link {
        font-size: 2rem;
    }
}
