@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ===================================
   メインビジュアル内お知らせバー
   =================================== */

/* メインビジュアルコンテナ */
.mv-container-with-notice {
    position: relative;
}

/* お知らせバー全体のスタイル - メインビジュアル内に配置 */
.p-mvInfo {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 50%;
    max-width: 600px;
    min-width: 300px;
    text-decoration: none;
    display: block;
}

/* リンクとしてのホバー効果 */
.p-mvInfo:hover {
    text-decoration: none;
}

/* お知らせバー本体 - 角丸ボタンスタイル */
.p-mvInfo__inner {
    background: #D5180A;
    border-radius: 25px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 8px 32px rgba(213, 24, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* ホバー効果 */
.p-mvInfo:hover .p-mvInfo__inner {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(213, 24, 10, 0.5);
    background: #B01509;
}

/* アニメーション効果 */
.p-mvInfo__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: slide 4s infinite;
}

@keyframes slide {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* テキスト */
.p-mvInfo__text {
    color: white;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    text-align: left;
    letter-spacing: 0.5px;
}

/* カーソルポインター */
.p-mvInfo {
    cursor: pointer;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .p-mvInfo {
        width: 90%;
        bottom: 20px;
        min-width: unset;
    }
    
    .p-mvInfo__inner {
        padding: 14px 20px;
        border-radius: 20px;
    }
    
    .p-mvInfo__text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .p-mvInfo {
        width: 95%;
        bottom: 15px;
    }
    
    .p-mvInfo__inner {
        padding: 12px 16px;
        border-radius: 18px;
    }
    
    .p-mvInfo__text {
        font-size: 13px;
        letter-spacing: 0.3px;
    }
}

