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

/* 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;
    scroll-behavior: smooth; /* スムーススクロール */
}

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: 117%;
    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, no-repeat;
    background-position: top 10px left, top 40px right;
    background-size: 20%;
}
.highlight-area-img {
    top: -30px;
    left: -3%;
}

@media screen and (width >= 768px) {
    .highlight-area {
        background-position: top left, top 30px right;
        background-size: 210px;
    }
    .highlight-area-img {
        top: -60px;
        left: -13%;
    }
    .highlight-area-title {
        font-size: 3.4rem!important;
    }
    .highlight-area h2 {
        line-height: 1.4;
    }
}

@media screen and (width >= 1024px) {
    .highlight-area {
        background-position: top 10px left, top 40px right;
        background-size: 260px;
    }
}

/* コンテンツ */
.contents-area {
    width: 100%;
    background-image: linear-gradient(90deg, rgb(252 208 217 / 100%) 23%, rgb(255 229 203 / 100%) 89%);
}

.contents-area > div {
    background-image: url('../images/bg_contents_top_l.png'),
    url('../images/bg_contents_top_r.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top 30px left, top 30px right;
    background-size: 120px;
}

@media screen and (width >= 768px) {
    .contents-area > div {
        background-position: top 40px left, top 40px right;
        background-size: 200px;
    }
}
@media screen and (width >= 1024px) {
    .contents-area > div {
        background-position: top 30px left 30px, top 30px right 30px;
        background-size: 250px;
    }
}

/* イベント詳細 */
.event-area {
    background-image: url('../images/bg_event_re.png');
    background-repeat: repeat;
    background-position: top left;
    background-size: 800px;
}
.event-area-inner {
    background-image: url('../images/bg_event_top.png');
    background-repeat: no-repeat;
    background-position: top 35px right -20px;
    background-size: 160px;
}

@media screen and (width >= 768px) {
    .event-area-inner {
        background-size: 350px;
    }
}

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