body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333333;
    overflow-x: hidden;
}

.section {
    padding: 4rem 0;
}

.accent-color {
    color: #007BFF;
}

.bg-light-gray {
    background-color: #F5F5F5;
}

.swiper {
    width: auto;
    height: 80vh;
    max-height: 700px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #212730; /* Tailwindのgray-800 */
}

/* ハンバーガーメニューのアニメーション用CSS */
.menu-toggle-icon {
    transition: transform 0.3s ease;
}
.menu-toggle-icon.open {
    transform: rotate(90deg);
}

/* スライダーの高さ調整 */
.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* PC表示時の画像サイズ調整 */
@media (min-width: 768px) {
    .swiper {
        height: calc(100vh - 80px); /* ヘッダーの高さを考慮 */
        max-height: 800px; /* 最大高さを設定 */
    }
    
    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 画像が全体を覆うように */
        object-position: center; /* 中央配置 */
    }
}

/* モバイル表示時の調整 */
@media (max-width: 767px) {
    .swiper-slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 700;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ffffff;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.price-table {
    border-collapse: collapse;
    width: 100%;
}

.price-table th, .price-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.price-table th {
    background-color: #007BFF;
    color: white;
    font-weight: 500;
}

.price-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.hours-table td {
    padding: 8px 15px;
}

.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.footer {
    background-color: #333333;
    color: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #007BFF;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* For mobile call button */
@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
}

/* Smooth fade-in animation for sections */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Style the price categories */
.price-category {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #007BFF;
    border-left: 4px solid #007BFF;
    padding-left: 10px;
}