/* 以下にカスタムスタイルを追加 */

/* fontの読み込み */
@import url("https://fonts.googleapis.com/earlyaccess/notosansjp.css");

/* flowbite-card 内の div 要素に適用するスタイル */

.custom-card div {
    justify-content: flex-start;
    padding: 0;
    border-top-right-radius: 8px 8px;
}

.custom-card div.custom-card-read {
    padding: 1rem;
}

/* 共通CSS */
html {
    color: #333;
}

a:hover {
    opacity: .7;
    transition: .4s;
}

/* ページトップへ戻るボタン */
#btn-back-to-top {
    right: 5px;
    bottom: 5px;
}

@media screen and (width >= 768px) {
    #btn-back-to-top {
        right: 14px;
        bottom: 14px;
    }
}

/* MV */
.main-img {
    position: relative;
    padding-top: 111%;
    padding-bottom: 6%;
    background-image: url('../images/mv_sp.webp');
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (width >= 768px) {
    .main-img {
        padding-top: 56%;
        padding-bottom: 0;
        background-image: url('../images/mv_pc.webp');
        background-size: cover;
    }
}

/* ウォーカーフェスとは */
.about-area {
    background: url('../images/bg_about_ttl.png') top 10px right 10px /220px no-repeat;
}

@media screen and (width >= 768px) {
    .about-area {
        background: url('../images/bg_about_ttl.png') top 20% right 30px /250px no-repeat;
    }
}

/* 魅力 */
.highlight-area {
    background-image: url('../images/bg_highlight_top_l.png'),
    url('../images/bg_highlight_top_r.png');
    background-repeat: no-repeat;
    background-position: top left,
    top -1px right;
    background-size: 20%;
}

/* イベント詳細 */
.event-area {
    background-image: url('../images/bg_event_bottom_repeat.png'),
    url('../images/bg_event_bottom.png');
    background-repeat: repeat-x, no-repeat;
    background-position: bottom center, bottom 2% center;
    background-size: 50px, 110%;
}
.event-area-inner {
    background-image: url('../images/bg_event_top_l.png'),
    url('../images/bg_event_top_r.png');
    background-repeat: no-repeat;
    background-position: top 20px left 10px,
    top 20px right 10px;
    background-size: 30%;
}

@media screen and (width >= 768px) {
    .event-area {
        background-position: bottom center, bottom 4% center;
        background-size: 80px, 110%;
    }
    .event-area-inner {
        background-size: 25%;
    }
}

/* 上部の波形 */
.content-hr-top {
    width: 100%;
    height: 50px;
    background-image: url('../images/hr_top.png');
    background-repeat: repeat-x;
    background-position: top;
    background-size: 235px;
    border: none;
}

@media screen and (width >= 768px) {
    .content-hr-top {
        height: 120px;
        background-size: 520px;
    }
}