/* 地域別メインカラーの設定 */
.hokkaido {
    --area-color: #406CB1;
}

.tohoku {
    --area-color: #FFB601;
}

.kanto {
    --area-color: #E76D9E;
}

.chubu {
    --area-color: #8FCD0F;
}

.kinki {
    --area-color: #01B7E5;
}

.chugoku {
    --area-color: #EB6666;
}

.kyushu {
    --area-color: #A978F4;
}

.over-sea {
    --area-color: #4BA17A;
}

@media screen and (min-width: 769px) {
    .sp-only {
        display: none;
    }
}

.venue-list-page p {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: .02em;
}

/* グラデーション背景のベース */
.page-header__bg {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-image: linear-gradient(90deg, rgba(226, 207, 255, 1), rgba(251, 253, 191, 1));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.page-header__inner {
    padding: 0 59px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.page-header-text p {
    font-size: clamp(20px, 7.3vw, 100px);
    font-weight: 700;
    margin: 0;
    letter-spacing: .05em;
    display: inline-block;
    position: relative;
}

.page-header-text p::after {
    content: "";
    width: 50px;
    height: 95px;
    background: url(../img/rule/icon_a.svg) no-repeat center / cover;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(100%);
    -webkit-transform: translateY(-50%) translateX(100%);
}

/**地域タイトル**/
.venue_contents_title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.venue_contents_title .en_sub_ttl {
    display: flex;
    text-align: right;
    padding-right: 14px;
    font-size: 2.4rem;
    font-weight: 700;
    font-family: "Lato", sans-serif;
    color: #333;
    position: relative;
}

.venue_contents_title .en_sub_ttl span {
    color: #F0007F;
}

.venue_contents_title .en_sub_ttl.en_sub_ttl::after {
    content: "";
    width: 15px;
    height: 28px;
    background: url(../img/event/nav-icon_a2.svg) no-repeat center / cover;
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%) translateX(0%);
}

.area-block__title {
    font-size: 4.5rem;
    margin: 0 0 20px;
}

.hokkaido .area-block__title {
    color: var(--area-color);
}

.tohoku .area-block__title {
    color: var(--area-color);
}

.kanto .area-block__title {
    color: var(--area-color);
}

.chubu .area-block__title {
    color: var(--area-color);
}

.kinki .area-block__title {
    color: var(--area-color);
}

.chugoku .area-block__title {
    color: var(--area-color);
}

.kyushu .area-block__title {
    color: var(--area-color);
}

.over-sea .area-block__title {
    color: var(--area-color);
}

.area-block__title span {
    font-size: 2.6rem;
    margin-left: 10px;
    color: #333;
}

/**会場一覧カード**/
.venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.venue-card {
    background-color: var(--area-color);
    padding: 10px;
    border-radius: 19px;
    position: relative;
}

.venue-card::after {
    content: "";
    width: 68px;
    height: 68px;
    background: url(../img/common/icon-link_bk-gray.svg) no-repeat center / cover;
    position: absolute;
    bottom: 0%;
    right: 0%;
    transform: translateY(0%) translateX(0%);
    -webkit-transform: translateY(0%) translateX(0%);
}


.venue_card__title {
    background-color: #fff;
    border-radius: 5px 5px 0 0;
    padding: 6px;
}

.venue-card__name {
    color: var(--area-color);
    margin: 0;
    font-size: 2.2rem;
}

.venue-card__name.is-medium {
    font-size: 1.8rem;
}

.venue_card__title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.venue_card__title span {
    padding: 5px;
    font-size: 18px;
    font-weight: 500;
    background-color: var(--area-color);
    color: #fff;
    border-radius: 7px;
    margin-right: 10px;
}

.area-block {
    margin: 55px auto;
}

.venue-card__img {
    margin-bottom: 9px;
}

.venue-card__txt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 7px;
    max-width: 310px;
    width: 85%;
    height: 70px;
    background-color: #fff;
    border-radius: 5px;
}

.venue-list-page .venue-card__lead {
    font-size: 1.4rem;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .venue-list-page {
        padding-top: 40px;
    }

    .page-header__bg {
        height: 182px;
    }

    .page-header__inner {
        padding: 0 20px;
    }

    .page-header-text p {
        font-size: 3.6rem;
    }

    .page-header-text p::after {
        width: 14px;
        height: 26px;
    }

    .contents-wrapper {
        margin-top: 30px;
    }

    .area-block__title {
        font-size: 2.8rem;
        margin: 0 0 10px;
    }

    .area-block__title span {
        font-size: 2rem;
        margin-left: 5px;
    }

    .venue-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .page-header__title span {
        font-size: 2rem;
    }

    .venue-card__name {
        font-size: 1.9rem;
    }

    .venue_card__title span {
        font-size: 16px;
    }
}