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

/* 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: 131.75%;
    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 10px left 10px, top -1px right;
    background-size: 16%, 22%;
}

@media screen and (width >= 768px) {
    .highlight-area {
        background-position: top 20px left 20px, top -1px right;
        background-size: 16%, 20%;
    }
}

.highlight-area > div {
    background-image: url('../images/bg_highlight_bottom_l.png'),
    url('../images/bg_highlight_bottom_r.png');
    background-repeat: no-repeat, no-repeat;
    background-position: bottom -4px left -8px, bottom 10px right 10px;
    background-size: 24%, 18%;
}

@media screen and (width >= 768px) {
    .highlight-area > div {
        background-position: bottom -4px left -8px, bottom 10px right 10px;
        background-size: 22%, 12%;
    }
}

/* イベント詳細 */
.event-area {
    background-image: url('../images/event_area_hr.png');
    background-repeat: repeat-x;
    background-position: top -13px left;
    background-size: 100px;
}

@media screen and (width >= 768px) {
    .event-area {
        background-position: top 0 left;
        background-size: 140px;
    }
}

/* 上部の波形 */
.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;
    }
}