body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    padding-bottom: 70px; /* 固定フッターの高さ分だけ余白を確保 */
}

/* スライドショーの基本的なスタイル (クロスディゾルブ) */
.slideshow-container {
    width: 100%;
    height: 60vh;
    max-height: 400px;
    position: relative;
    margin: auto;
    overflow: hidden;
    background-color: #000; /* 切り替え時の背景色 */
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.visible {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* グラデーションテキスト */
.gradient-text {
    background: linear-gradient(45deg, #ec4899, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 固定追従フッターCTA */
.sticky-footer-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.footer-cta-btn {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.phone-btn {
    background-color: #ec4899; /* pink-500 */
}
.phone-btn:hover {
    background-color: #db2777; /* pink-600 */
}

.line-btn {
    background-color: #22c55e; /* green-500 */
}
.line-btn:hover {
    background-color: #16a34a; /* green-600 */
}

/* キャスト詳細モーダル */
#cast-modal-content {
    max-height: 80vh;
    overflow-y: auto;
}