@charset "UTF-8";

html {
    font-size: 62.5%;
}

body {
    font-family: "Lato", "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    margin: 0;
    background-color: #EFEFEF;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

a {
    color: #333333;
    text-decoration: unset;
}

a:visited {
    /*color: #333333;*/
}

a:hover,
a:focus,
a:active {
    opacity: .8;
    transition: all .3s;
}

/**リンクのアイコン設定**/
/* --- 1. アイコンを表示するためのベース設定 --- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* 擬似要素の共通スタイル */
.btn::after {
    content: "";
    position: absolute;
    bottom: auto;
    right: 5%;
    width: 1.1em;
    height: 1.1em;
    background-color: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

/* --- 2. 通常の矢印（target="_blank" が無い場合） --- */
.btn:not([target="_blank"])::after {
    -webkit-mask-image: url('../img/common/icon_link-arrow.svg');
    mask-image: url('../img/common/icon_link-arrow.svg');
    transition: transform 0.3s ease;
    /* 動く設定 */
}

.btn:not([target="_blank"]):hover::after {
    transform: translateX(4px);
    /* ホバーで動かす */
}



/* --- 3. 別タブアイコン（target="_blank" が有る場合） --- */
.btn[target="_blank"]::after {
    -webkit-mask-image: url('../img/common/icon_out-link-black.svg');
    mask-image: url('../img/common/icon_out-link-black.svg');
    /* transitionやtransformは書かない（＝動かない） */
}

/* =================================================
   メニュー展開時の背景ぼかし
   ================================================= */
#page>*:not(.a-header) {
    filter: blur(0);
    will-change: filter;
    /* 拡大をやめて1:1にする */
    transform: scale(1);
    /* ぼかしと同じ色の輪郭線を1pxだけ引いて隙間を埋める */
    outline: 1px solid transparent;
    transition: filter 0.4s ease, outline 0.4s ease;
}

body.nav-open #page>*:not(.a-header) {
    filter: blur(8px);
    /* ぼかした時に、背景色に近い色（またはメインの背景色）の線を出す */
    /* ページの背景が白なら #fff、グレーならその色に */
    outline: 1px solid #efefef
}



body.nav-open {
    overflow: hidden;
}

/* =================================================
   ヘッダーレイアウト（カプセル）
   ================================================= */
.a-header_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 56px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* 全体の上に配置 */
}

/* 右側のメニュー周りをまとめるエリア */
.a-header__manu .a-header__capsule {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    gap: 15px;
}

.a-header__first a {
    font-weight: bold;
    font-size: 1.4rem;
    color: #333;
}

.a-header__ticket a {
    background-color: #2ecc71;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.4rem;
    display: block;
}

/* =================================================
   ハンバーガーボタン（円形）
   ================================================= */
.hamburger {
    background-color: #444;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* メニュー本体より上に */
    transition: background-color 0.3s;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin-bottom: 4px;
    transition: 0.4s;
    position: relative;
}

.hamburger span:last-of-type {
    margin-bottom: 0;
}

.hamburger small {
    color: #fff;
    font-size: 10px;
    margin-top: 2px;
    line-height: 1;
}

/* 開閉アニメーション */
.hamburger.active {
    background-color: #333;
    /* 展開時は色を濃くする等の調整 */
}

.hamburger.active span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: -6px;
    transform: rotate(-45deg);
}

/* =================================================
   ナビゲーション本体（右端に隠す）
   ================================================= */
.header__nav {
    position: fixed;
    top: 20px;
    right: 20px;
    bottom: 20px;
    width: 90%;
    max-width: 1100px;
    height: calc(100vh - 40px);
    background-color: #e6007e;
    /* ピンク */
    border-radius: 30px;
    color: #fff;
    z-index: 9998;
    overflow-y: auto;
    padding: 60px 40px 20px;

    /* 初期状態：右側に隠す */
    transform: translateX(105%);
    transition: transform 0.4s ease-in-out;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* iOSでのスクロールを滑らかにする */
}

/* PC閲覧時は幅を約6割にする */
@media screen and (min-width: 960px) {
    .header__nav {
        width: 60%;
    }
}

/* 展開時 */
.header__nav.active {
    transform: translateX(0);
}

/* --- 内部レイアウト --- */
.nav-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.nav-group {
    display: flex;
    border-top: 2px solid #fff;
    padding-top: 15px;
    align-items: flex-start;
}

.nav-group:first-child {
    border-top: none;
    padding-top: 0;
}

.nav-title {
    width: 160px;
    flex-shrink: 0;
}

.nav-title p {
    font-family: 'Lato', sans-serif;
    font-size: 3.4rem;
    font-weight: 900;
    margin: 0;
    position: relative;
}

.nav-title p::after {
    content: "";
    width: 21px;
    height: 41px;
    background: url(../img/common/nav-icon_a-white.svg) no-repeat center / cover;
    position: absolute;
    bottom: -8px;
    right: 15%;
    transform: translateY(-15%) translateX(0%);
    -webkit-transform: translateY(-15%) translateX(0%);
}

.g-nav_menu .nav-title p::after {
    right: 25%;
}

.g-nav_sns .nav-title p::after {
    right: 48%;
}

.g-nav_ticket,
.g-nav_menu {
    width: 100%;
}

/* メニューリスト（グリッド配置） */
.g-nav_menu ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.g-nav_menu li a {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    color: #333;
    font-size: 1.4rem;
    font-weight: bold;
    padding-bottom: 10px;
}

.g-nav_menu li img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: 5px;
}

.g-nav_menu li span {
    font-size: 1.8rem;
    padding: 0 9px;
}

.g-nav_menu li span.s-txt {
    font-size: 1.4rem;
    padding: 0;
}


.g-nav_ticket ul, .g-nav_sns ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.g-nav_ticket li a, .g-nav_sns li a {
    display: block;
    background: #fff;
    padding: 13px 20px;
    border-radius: 15px;
    text-align: center;
}

.g-nav_ticket img {
    max-width: 250px;
    width: 100%;
}

.g-nav_sns ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 16px;
}

.g-nav_sns li {
    max-width: 330px;
    width: 100%;
}


.g-nav_sns li a {
    border-radius: 99px;
    text-align: left;
}


.link-sns_wrap p {
    margin: 0 0 5px;
    font-size: 1.9rem;
    font-weight: 700;
}

.link-sns_wrap span {
    display: block;
    font-size: 1.2rem;
}

main {
    background-color: #f1f1f1;
    min-height: 800px;
    padding-top: 60px;
}

.g-nav_ticket, .g-nav_menu, .g-nav_sns {
    display: flex;
    gap: 20px;
}

.g-nav_ticket ul, .g-nav_menu ul, .g-nav_sns ul {
    border-left: 2px solid #fff;
    padding-left: 50px;
}

.a-header__first, .a-header__ticket span {
    position: relative;
    padding-left: 30px;
    display: block;
}

.a-header__first::before {
    content: "";
    width: 20px;
    height: 29px;
    background: url(../img/common/icon_beginner.svg) no-repeat center / cover;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
}

.a-header__ticket span::before {
    content: "";
    width: 17px;
    height: 17px;
    background: url(../img/common/icon_staca.svg) no-repeat center / cover;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
}

.g-nav_sns .btn::after {
    top: 50%;
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
}

.g-nav_sns li a {
    padding-left: 55px;
    padding-right: 50px;
}

.g-nav_sns a::before {
    content: "";
    width: 35px;
    height: 35px;
    background: url(../img/common/icon_x.svg) no-repeat center / cover;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
}

.link-x .sns-desc {
    font-size: 1.1rem;
}

.g-nav_sns .link-line a::before {
    background: url(../img/common/icon_line.svg) no-repeat center / cover;
}

.g-nav_sns .link-tic a::before {
    background: url(../img/common/icon_tictok.svg) no-repeat center / cover;
}

.g-nav_sns .link-x a, .g-nav_sns .link-tic a {
    padding-top: 7px;
    padding-bottom: 7px;
}

.g-nav_ticket .btn::after {
    bottom: 10%;
    right: 2%;
}

/**ロゴの装飾**/
.a-header__main .logo {
    padding: 11px 20px;
    background-color: #ffffff00;
    border-radius: 99px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgb(255 255 255 / 9%);
}

.a-header__main .logo h1 {
    margin: 0;
}

.link-ct {
    grid-column: 1/4;
}

.link-ct a {
    display: block;
    background: #fff;
    padding: 13px 20px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.8rem;
    padding: 28px 0 !important;
    position: relative;
}

.link-ct a::before {
    content: "";
    width: 23px;
    height: 17px;
    background: url(../img/common/icon_mail.svg) no-repeat center /cover;
    position: absolute;
    top: 50%;
    left: 33%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

.link-ct .btn::after {
    top: auto;
}

/* =================================================
   ヘッダー_レスポンシブ
   ================================================= */
@media screen and (max-width: 768px) {


    .a-header_wrap {
        padding: 7px;
        background-color: #fff;
        border-radius: 99px;
        filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.16));
        margin: 15px auto;
        width: 98%;
        position: fixed;
        z-index: 1000;
    }

    .a-header__manu .a-header__capsule {
        background: unset;
        box-shadow: none;
        gap: 6px;
        padding: 0;
    }

    .a-header__first a, .a-header__ticket span {
        font-size: 1.2rem;
    }

    .a-header__first::before {
        width: 10px;
        height: 13px;
    }

    .a-header__main .logo {
        padding: 0;
        background-color: unset;
        border-radius: unset;
        backdrop-filter: none;
        border: none;
    }

    .a-header__main .logo img {
        max-width: 97px;
        margin-left: 5px;
    }

    .a-header__first, .a-header__ticket span {
        padding-left: 15px;
    }

    .hamburger {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }

    .hamburger span {
        width: 13px;
    }

    .hamburger small {
        display: none;
    }

    .a-header__ticket a {
        padding: 8px 15px;
    }

    .a-header__ticket span::before {
        width: 8px;
        height: 8px;
    }

    .a-header__ticket {
        margin-right: 18px;
    }

    .header__nav {
        transform: translateX(120%);
    }

    .g-nav_ticket, .g-nav_menu, .g-nav_sns {
        flex-direction: column;
        gap: 5px;
    }

    .nav-title p {
        font-size: 2rem;
    }

    .header__nav {
        top: 0;
        width: 98%;
        right: 0px;
        left: 0px;
        padding: 65px 15px 45px;
    }

    .g-nav_ticket ul, .g-nav_menu ul, .g-nav_sns ul {
        border-left: none;
        padding-left: 0;
    }

    .nav-title p::after, .g-nav_menu .nav-title p::after {
        width: 11px;
        height: 21px;
        right: -16%;
        bottom: -3px;
    }

    .g-nav_sns .nav-title p::after {
        right: -30%;
    }

    .nav-title p {
        display: inline-block;
    }

    .g-nav_ticket li a, .g-nav_sns li a {
        padding: 10px 20px;
    }

    .nav-items {
        gap: 20px;
    }

    .g-nav_menu ul {
        display: block;
    }

    .g-nav_menu li {
        width: 100%;
        margin: 6px auto;
    }

    .g-nav_menu li a {
        display: grid;
        gap: 0;
        grid-template-columns: 87px 1fr;
        padding-bottom: 0;
        height: 55px;
    }

    .g-nav_menu li img {
        height: 55px;
    }

    .g-nav_menu .btn::after {
        bottom: 35%;
    }

    .g-nav_menu .link-ct a {
        display: block;
    }

    .link-ct a::before {
        left: 15%;
    }

    .g-nav_menu li span, .g-nav_menu .link-ct a {
        font-size: 1.6rem;
    }

    .link-ct a {
        padding: 15px 0 !important;
    }

    .g-nav_sns li {
        max-width: 100%;
    }

    .g-nav_sns li a {
        padding-left: 60px;
        padding-right: 30px;
    }

    .nav-open .a-header__main .logo {
        background-color: #fff;
        border-radius: 99px;
        position: relative;
        z-index: 10000;
        padding: 0 20px;
        margin-right: 0;
    }

    .nav-open .a-header__main .logo img {
        margin-left: 0;
    }

    .top-filter .search_venue h2::befor, .top-filter .search_cameraman h2::before, .top-filter .search_calendar h2::before {
        width: 23px;
        height: 23px;
    }
}



/* =================================================
   トップページ
   ================================================= */
/**バナースライドのレスポンシブ**/
/* PC：縦スライド時の隙間 */
.mv-slider .slider_img img {
    border-radius: 38px;
    width: 100%;
    height: auto;
    vertical-align: bottom;
    object-fit: cover;
}

.bn-slider .slider-bn_img img {
    border-radius: 26px;
    border: 2px solid #333;
}

@media screen and (min-width: 769px) {
    .bn-slider .slider-bn_img {
        padding: 9px 0;
        /* 上下に10pxずつ、計20pxの隙間 */
    }
}

/* スマホ：横スライド時の隙間（再掲） */
@media screen and (max-width: 768px) {
    .bn-slider .slider-bn_img {
        margin: 0 10px;
        /* 左右に隙間 */
    }
}

.main-visual {
    padding: 0 2.5vw;
    display: grid;
    grid-template-columns:
        calc(1304 / 1804 * 100%) calc(482 / 1804 * 100%);
    column-gap: calc(18 / 1804 * 100%);
    align-items: start;
}

.mv {
    max-width: 1300px;
    width: 100%;
    position: relative;
}

.mv-slider {
    position: relative;
}

.mv-copy {
    position: absolute;
    bottom: 0%;
    left: 2vw;

}

.mv-copy h2 {
    font-size: clamp(20px, 3.9vw, 80px);
    color: #fff;
    font-weight: 900;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
    margin: 0;
}

/**メインビジュアルここまで**/
/**メインコンテンツここから**/
/* スマホ版：SNS、tictokを最後に回す */
@media (max-width: 1023px) {
    .contents-wrapper {
        display: flex;
        flex-direction: column;
    }

    .sidebar-bottom-group {
        order: 10;
        /* これでE, Fが一番下に行くわ */
    }
}

/* PC版：左サイドバーを固定して追従 */
@media (min-width: 1024px) {
    .contents-wrapper {
        display: grid;
        grid-template-columns:
            calc(482 / 1804 * 100%) calc(1304 / 1804 * 100%);
        column-gap: calc(18 / 1804 * 100%);
        align-items: start;
        /*padding: 0 59px;*/
        padding: 0 2.5vw;
    }

    .top-page .contents-wrapper {
        margin-top: 40px;
    }

    .sidebar-column {
        position: sticky;
        top: 37px;
        padding-top: 50px;
    }
}


.sidebar-section {
    background-color: #fff;
    border-radius: 26px;
    padding: 30px 10px;
    margin: 7px auto;
}

.sidebar-section.tiktok {
    padding: 30px 0;
}

.sidebar-section.tiktok blockquote {
    margin: 0;
}

/* 1. 読み込み前のblockquoteと、読み込み後のiframeの両方を対象にする */
.tiktok-embed,
iframe[src*="tiktok.com"] {
    max-width: 100% !important;
    /* インラインスタイルの605pxを強制上書き */
    min-width: 100% !important;
    /* インラインスタイルの300pxを強制上書き */
    width: 100% !important;

    /* 1920px基準の可変コンテナ。横幅を画面幅に応じて滑らかにしたい場合 */
    /* 例：1920pxの時に横幅550px、画面が狭くなると100%（320px等）まで縮小 */
    width: clamp(320px, 20vw + 200px, 550px) !important;
    margin: 0 auto !important;
    /* 中央寄せにしたい場合 */
}

.sidebar-section.tiktok blockquote iframe {
    border: none;
}

.top-filter h2 {
    margin: 0 0 22px;
    padding: 0;
    font-size: 2.2rem;
    padding-left: 40px;
    position: relative;
}

.top-filter h2::before {
    content: "";
    width: 33px;
    height: 35px;
    background: url(../img/common/icon_area.svg) no-repeat center /cover;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
}

.area-list ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px 18px;
    margin-bottom: 26px;
}

.area-list li {
    list-style-type: none;
    max-width: 90px;
    width: 100%;
}

.area-list li a, .area-list li button {
    display: block;
    font-size: clamp(1.3rem, 1vw, 1.8rem);
    font-weight: 700;
    text-align: center;
    border-radius: 7px;
    padding: 5px 0;
    background-color: #fff;
    border: 1px solid #555;
    transition: all .3s ease;
    width: 100%;
}

.area-list .all-area {
    border-color: #333;
}

.area-list .hokkaido {
    border-color: #406CB1;
    background-color: #406CB1;
    color: #fff;
}

.area-list .tohoku {
    border-color: #FFB601;
    background-color: #FFB601;
    color: #fff;
}

.area-list .kanto {
    border-color: #E76D9E;
    background-color: #E76D9E;
    color: #fff;
}

.area-list .chubu {
    border-color: #86C210;
    background-color: #86C210;
    color: #fff;
}

.area-list .kinki {
    border-color: #01B7E5;
    background-color: #01B7E5;
    color: #fff;
}

.area-list .chugoku {
    border-color: #EB6666;
    background-color: #EB6666;
    color: #fff;
}

.area-list .kyushu {
    border-color: #A978F4;
    background-color: #A978F4;
    color: #fff;
}

.area-list .over-sea {
    border-color: #4BA17A;
    background-color: #4BA17A;
    color: #fff;
}

.area-list li button:hover {
    background-color: #fff;
    transition: all .3s ease;
}

.area-list .hokkaido:hover {
    color: #406CB1;
}

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

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

.area-list .chubu:hover {
    color: #86C210;
}

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

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

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

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

.all-venue a {
    max-width: 415px;
    width: 100%;
    display: block;
    border: 2px solid #333333;
    font-weight: 600;
    border-radius: 99px;
    text-align: center;
    font-size: clamp(1.3rem, 1vw, 1.8rem);
    position: relative;
    padding: 12px 0 12px 40px;
}

.sidebar-column .btn::after {
    bottom: unset;
    top: 50%;
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
    transition: all .3s ease;
}

.sidebar-column .btn:not([target="_blank"]):hover::after {
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
    right: 2%;
    transition: all .3s ease;
}

.contents-list {
    margin-top: 27px;
}

.contents-item {
    padding: 13px;
    border-bottom: 1px solid #707070;
}

.contents-item a {
    padding-left: 50px;
    font-size: clamp(1.3rem, 1vw, 1.8rem);
    font-weight: 700;
    display: block;
    width: 100%;
    position: relative;
}

.contents-item a::before {
    content: "";
    width: 32px;
    height: 32px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
}

.s-gallery a::before {
    background-image: url(../img/common/icon_picture.svg);
}

.s-contents a::before {
    background-image: url(../img/common/icon_contents.svg);
}

.s-acosta a::before {
    background-image: url(../img/common/icon_side_acosta.svg);
}

.s-intl a::before {
    background-image: url(../img/common/icon_side_intl.svg);
}

.s-hotoenter a::before {
    background-image: url(../img/common/icon_lst-band.svg);
}

.s-transfer a::before {
    background-image: url(../img/common/icon_transfer.svg);
}

.s-contact a::before {
    background-image: url(../img/common/icon_mail.svg);
}

.contents-item .btn:not([target="_blank"])::after, .contents-item .btn::after {
    right: 0%
}

.sidebar-column .contents-item .btn:not([target="_blank"]):hover::after {
    right: -4px;
}

.all-venue a::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/common/icon_venue.svg) no-repeat center /contain;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
}

.s-gallery {
    border-top: 1px solid #707070;
}

.g-nav_sns .s-sns_list ul {
    padding: 0;
    gap: 10px;
}

.g-nav_sns .s-sns_list li {
    max-width: 100%;

    border-bottom: 1px solid #707070;
}

.g-nav_sns .s-sns_list a::before {
    left: 2%;
}

.g-nav_sns .s-sns_list .link-x a, .g-nav_sns .s-sns_list .link-tic a {
    padding-top: 0;
    padding-bottom: 10px;
}

.s-bnr {
    background-color: #fff;
    border-radius: 26px;
    padding: 20px;
    position: relative;
}

.s-bnr::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%);
}

.s-bnr img {
    border-radius: 18px 18px 90px 18px;
}

.a-bigtitle h2 {
    font-size: clamp(1.8rem, 3vw, 9rem);
    margin: 0;
    position: relative;
    text-align: right;
    padding-right: 30px;
}

.a-bigtitle h2::after {
    content: "";
    width: 35px;
    height: 61px;
    background: url(../img/common/icon_a-icon.svg) no-repeat center / cover;
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
}

/***イベントスケジュール***/
.event-section__main {
    background-color: #fff;
    border-radius: 38px;
    padding: 34px 28px;
}

.event-section__item {
    padding: 15px 10px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: calc(644 / 1225 * 100%) calc(573 / 1225 * 100%);
    column-gap: calc(9 / 1225 * 100%);
}

.event-eye_catch {
    position: relative;
    background-color: inherit;
}

.event-eye_catch_img img {
    border-radius: 20px 20px 150px 20px;
}

.event-section__area {
    display: flex;
    max-width: 85px;
    height: 45px;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translateY(0%) translateX(0%);
    -webkit-transform: translateY(0%) translateX(0%);
}

.event-section__area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 116px;
    height: 68px;
    background-color: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-image: url('../img/common/icon_mask-curve.svg');
    mask-image: url('../img/common/icon_mask-curve.svg');
    z-index: -1;
}

.event-section__area p {
    color: #fff;
    text-align: center;
    font-size: clamp(1.6rem, 1.5vw, 2.6rem);
    margin: 0;
    font-weight: 700;
}

.event-section__item.hokkaido {
    color: #406CB1;
    background-color: #406CB1;
}

.event-section__item.tohoku {
    color: #FFB601;
    background-color: #FFB601;
}

.event-section__item.kanto {
    color: #E76D9E;
    background-color: #E76D9E;
}

.event-section__item.chubu {
    color: #86C210;
    background-color: #86C210;
}

.event-section__item.kinki {
    color: #01B7E5;
    background-color: #01B7E5;
}

.event-section__item.tyugoku {
    color: #EB6666;
    background-color: #EB6666;
}

.event-section__item.kyushu {
    color: #A978F4;
    background-color: #A978F4;
}

.event-section__item.over-sea {
    color: #4BA17A;
    background-color: #4BA17A;
}

.event-schedule {
    max-width: 543px;
    width: 100%;
}

.event-name {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 800;
}

.event-name h3 {
    margin: 0;
}

.event-name.is-short {
    font-size: 2vw;
    white-space: nowrap;
}

/* 12〜20文字：1行に収めるために縮小 */
.event-name.is-medium {
    font-size: 1.55vw;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

/* 21文字以上：改行を許可 */
.event-name.is-long {
    font-size: 2rem;
    white-space: normal;
    word-break: break-all;
}

.event-day_list__item {
    background-color: #fff;
    border-radius: 15px;
    margin: 5px auto;
}

.event-schedule {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/common/event_list-bg.svg) no-repeat center /contain;

}

.event-day_list__item a {
    display: flex;
    width: 100%;
    padding: 7px 16px;
    color: currentColor;
    font-family: Roboto;
    font-size: 3.6rem;
    font-weight: 900;
}

.event-day_list__item a span {
    font-size: 1.8rem;
    font-weight: 500;
    margin-right: 5px;
}

.is-3days .event-day_list__item a span:first-child {
    display: block;
}

.event-day_list__item .btn::after {
    width: 22px;
    height: 22px;
    bottom: unset;
    top: auto;
}

.e-announce {
    padding: 7px 10px;
    border-radius: 6px;
    margin-left: 15px;
    position: relative;
}

.e-announce p {
    font-size: 1.6rem;
    margin: 0;
    padding-left: 0px;
    color: #5f5f5f;
}

.night-announce .e-announce {
    background-color: #0C3A62;

}

.night-announce .e-announce p {
    color: #fff;
    font-size: 1.9rem;
    margin: 0;
    padding-left: 28px;
}

.night-announce .e-announce::before {
    content: "";
    width: 20px;
    height: 25px;
    background: url(../img/common/icon_night.svg) no-repeat center / cover;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
}

.ticket_announce .e-announce {
    background-color: #3DD270;
    color: #fff;
}

.ticket_announce .e-announce span.staca-icon {
    font-size: 1.4rem;
    padding-left: 23px;
    position: relative;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    padding-top: 3px;
}

.staca-icon::before {
    content: "";
    width: 17px;
    height: 17px;
    background: url(../img/common/icon_staca.svg) no-repeat center / cover;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
}

.t-dat {
    font-family: Roboto;
    font-size: 1.8rem;
    font-weight: 800;
}

.event-day_list__item .t-dat span {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 3px;
}

.decision_announce .e-announce {
    background-color: #AAAAAA;
    color: #fff;
}

.decision_announce .e-announce p {
    color: #fff;
    font-size: 1.9rem;
    margin: 0;
    padding-left: 28px;
    margin-bottom: 0;
    position: relative;
}

.decision_announce .e-announce p::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/common/icon_a-white.svg) no-repeat center / contain;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
}

.decision_announce a .e-announce span {
    margin-top: 4px;
    font-size: 1.6rem;
    display: block;
    text-align: center;
    margin-right: 0;
}

.cdef_announce {
    display: flex;
}

.cdef_announce .e-announce img {
    max-width: 132px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

.cdef_announce .event-day_list__item {
    width: 100%;
}

.decision_announce a {
    pointer-events: none;
}

.decision_announce .btn::after {
    display: none;
}

.event-section__item {
    margin-bottom: 15px;
}

/***イベントスケジュール(PC)ここまで***/

/***参加の皆様へ***/
.top-notice {
    margin: 50px auto;
    background-color: #fff;
    border-radius: 38px;
    padding: 40px 30px;
}

.top-notice__wrap h2 {
    font-size: 2.9rem;
    padding-bottom: 16px;
    margin-bottom: 30px;
    font-weight: 700;
    border-bottom: 3px solid #AAAAAA;
    position: relative;
}

.top-notice__wrap h2::before {
    content: "";
    width: 223px;
    height: 3px;
    display: block;
    background-color: #F0007F;
    position: absolute;
    bottom: -3px;
    left: 0;
}

.top-notice__wrap p {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 500;
}

.top-notice__highlight p {
    display: inline-block;
    font-weight: 700;
    background-color: #FFF100;
    margin-top: 15px;
}

.top-notice__contents h3 {
    padding-left: 30px;
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    line-height: 1.7;
    background: url(../img/common/icon_attentions.svg) no-repeat 0px 5px;
    margin-bottom: 10px;
}

.top-notice__contents p {
    margin-top: 0;
}

/***トップ_コンテンツ***/

.bottom-contents {
    padding: 0 56px;
}

.top-contents_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: end;
    gap: 30px 27px;
}

/*
.top-contents_item:nth-child(5) {
    grid-column: 3;
}*/

.top-contents_wrap {
    background-color: #fff;
    border-radius: 38px;
    padding: 60px 90px;
}

.top-contents_item-img {
    position: relative;
}

.top-contents_item-img img {
    border-radius: 120px 10px 20px 20px;
    display: block;
    position: relative;
}

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

.out-link .top-contents_item-img::after {
    background: url(../img/common/icon-out-link_bk-white.svg) no-repeat center / cover;
}

.top-contents__title h3 {
    font-size: 2rem;
    padding-bottom: 16px;
    margin-bottom: 30px;
    font-weight: 700;
    border-bottom: 3px solid #AAAAAA;
    position: relative;
}

.top-contents__title h3::before {
    content: "";
    width: 223px;
    height: 3px;
    display: block;
    background-color: #F0007F;
    position: absolute;
    bottom: -3px;
    left: 0;
}

.a-bigtitle span {
    color: #F0007F;
}

.top-contents_wrap {
    margin-top: 24px;
}

.contents-section {
    padding: 50px 0;
}

.other-contents_flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/*
.other-contents_item:nth-child(1) {
    grid-column: 2;
}*/

.other-contents_item a {
    color: #fff;
}

.other-contents_item.cosset {
    background-color: #00A0E9;
}

.other-contents_item.hacostadium {
    background-color: #FE549C;
}

.other-contents_item.hacostudio {
    background-color: #263C79;
}

.other-contents_item {
    border-radius: 120px 10px 20px 20px;
    display: grid;
    grid-template-rows: subgrid;
    position: relative;
}

.other-contents_item img {
    border-radius: 120px 10px 0 0;
}

.other-contents__txt {
    padding: 10px 30px 10px 10px;
    /*height: 210px;*/
}

.other-contents__txt h3 {
    font-size: 2.2rem;
    padding: 4px 0;
    margin: 0;
}

.other-contents__txt p {
    line-height: 1.4;
    font-size: 1.6rem;
}

/***フッターここから***/
footer {
    background-color: #1A1A1A;
    padding: 43px 0 28px;
    position: relative;
}

.footer-inner {
    display: block;
    margin: 0 auto;
    max-width: 460px;
    width: 100%;

}

.f-logo img {
    max-width: 225px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.f-nav {
    margin: 30px auto;
}

.f-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 65px;
    margin: 0;
    padding: 0;
}

.f-nav li {
    list-style-type: none;
}

.f-nav li a {
    color: #fff;
    font-size: 1.6rem;
}

.f-nav .btn::after {
    right: -25px;
}

.corp img {
    max-width: 278px;
    width: 100%;
    display: block;
    margin: 35px auto;
}

.copy {
    text-align: center;
    color: #fff;
}

#page_top {
    width: 90px;
    height: 90px;
    position: absolute;
    right: 60px;
    top: -40px;
}



.event-day_list__item .e-announce {
    max-width: 143px;
    padding-right: 35px;
    margin-left: 5px;
}

.decision_announce .event-day_list__item .e-announce {
    max-width: 175px;
}


/* =================================================
   レスポンシブ
   ================================================= */
@media screen and (min-width: 769px) {
    .spac-01 summary::-webkit-details-marker {
        display: none;
    }

    .spac-01 summary::after {
        content: none;
    }

    .spac-01 summary {
        list-style: none;
    }

    details[open] summary~* {
        display: block;
        /* 強制的に表示 */
    }
}


@media screen and (max-width: 1023px) {


    .contents-wrapper {
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
    }

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

    /*******スリックのレスポンシブ*******/
    .mv-slider .slick-track {
        height: 370px;
    }

    .mv-slider .slick-slide img {
        height: 100%;
        object-fit: cover;
    }

    .bottom-contents {
        padding: 0 10px;
    }

    .other-contents_item:nth-child(1) {
        grid-column: initial;
    }

    .top-contents_wrap {
        padding: 20px;
    }

    .event-section__main {
        padding: 15px 10px;
        border-radius: 10px;
    }

    .sidebar-column {
        display: contents;
    }

    /* 2. 各要素に順番（order）を振る */
    #sidebar-filter {
        order: 1;
    }

    .main-column {
        order: 2;
    }

    .sidebar-bottom-group,
    #sidebar-bnr {
        order: 3;
    }

    .contents-wrapper {
        padding: 0 10px;
    }

    .sidebar-section {
        width: 100%;
        border-radius: 10px;
        padding: 15px 10px;
    }

    .mv-copy {
        bottom: 3%;
        left: 5vw;
    }

    .mv-copy h2 {
        font-size: 3.7rem;
    }

    main {
        padding-top: 75px;
    }

    .bn-slider .slider-bn_img img {
        border-radius: 16px;
    }

    .contents-list {
        display: none;
    }

    .a-bigtitle h2 {
        font-size: 3.5rem;
        padding-right: 17px;
    }

    .event-section {
        padding: 15px 0;
    }

    .tiktok-contents blockquote {
        max-width: 100% !important;
        min-width: unset !important;
        width: 100% !important;
        margin: 0 auto;
    }



    .top-contents__title h3::before {
        width: 80px;
    }

    .other-contents_flex {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 0 20px 20px;
    }

    .other-contents_item {
        flex: 0 0 82%;
        white-space: normal;
    }

    .top-contents_item-img img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 50px 10px 10px 10px;
    }

    .top-contents_item-img::after {
        width: 45px;
        height: 45px;
    }

    .top-contents__title h3 {
        font-size: 1.4rem;
        padding-bottom: 10px;
        margin-bottom: 0;
    }

    .f-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .top-filter {
        padding: 0 15px;
    }

    .top-filter h2 {
        font-size: 1.6rem;
        padding-left: 24px;
        margin-bottom: 10px;
    }

    .top-filter h2::before {
        width: 18px;
        height: 19px;
    }

    .area-list ul {
        gap: 7px 10px;
        margin-top: 20px;
    }

    .area-list li a {
        font-size: 1.4rem;
        padding: 7px 0;
    }

    .all-venue a {
        font-size: 1.6rem;
    }

    .spac-01 summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 15px 10px;
        color: #333333;
        font-weight: 600;
        cursor: pointer;
    }

    .spac-01 summary::-webkit-details-marker, .sidebar-section summary::-webkit-details-marker {
        display: none;
    }

    .spac-01 summary::after {
        transform: translateY(-25%) rotate(45deg);
        width: 7px;
        height: 7px;
        margin-left: 10px;
        border-bottom: 3px solid #5F6368;
        border-right: 3px solid #5F6368;
        content: '';
        transition: transform .3s;
    }

    .spac-01[open] summary::after {
        transform: rotate(225deg);
    }

    .spac-01 p {
        transform: translateY(-10px);
        opacity: 0;
        margin: 0;
        padding: .3em 2em 1.5em;
        color: #333333;
        transition: transform .5s, opacity .5s;
    }

    .spac-01[open] p {
        transform: none;
        opacity: 1;
    }

    .spac-01[open] .all-venue {
        margin-bottom: 15px;
    }

    .a-bigtitle h2::after {
        width: 19px;
        height: 38px;
    }

    .event-section__area {
        max-width: 51px;
        height: 25px;
    }

    .event-section__area p {
        font-size: 1.4rem;
    }

    .event-section__area::after {
        width: 69px;
        height: 39px;
        left: -2px;
    }

    .event-name.is-short {
        font-size: 2.3rem;
        white-space: nowrap;
    }

    /* 12〜20文字：1行に収めるために縮小 */
    .event-name.is-medium {
        font-size: 1.9rem;
        white-space: nowrap;
        letter-spacing: -0.02em;
    }

    /* 21文字以上：改行を許可 */
    .event-name.is-long {
        font-size: 1.9rem;
        white-space: normal;
        word-break: break-all;
    }

    .event-name h3 {
        padding: 10px 0;
    }

    .event-eye_catch_img img {
        border-radius: 20px 20px 100px 20px;
    }

    .decision_announce .e-announce p {
        font-size: 1.6rem;
    }

    .e-announce {
        margin-left: 0px;
        width: 90%;
        padding-left: 0;
    }

    .event-day_list__item .btn::after {
        width: 18px;
        height: 18px;
        top: 35%;
        right: 3%;
    }

    .t-dat {
        font-size: 1.8rem;
    }

    .ticket_announce .e-announce span.staca-icon {
        font-size: 1.4rem;
        padding-left: 18px;
        margin-bottom: 0;
    }

    .staca-icon::before {
        width: 14px;
        height: 14px;
    }

    .event-day_list__item a {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .night-announce .e-announce p {
        font-size: 1.6rem;
    }

    .night-announce .e-announce::before {
        left: 5%;
        width: 19px;
        height: 20px;
        background-size: contain;
    }

    .ticket_announce .e-announce {
        display: flex;
        align-items: center;
    }

    .decision_announce .e-announce {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .decision_announce a .e-announce span {
        font-size: 1.4rem;
        margin-top: 0;
        margin-left: 8px;
    }

    .cdef_announce .e-announce {
        max-width: 100px;
        width: 100%;
    }

    .cdef_announce .e-announce img {
        max-width: 95px;
    }

    .top-notice {
        padding: 25px 10px;
        border-radius: 10px;
        margin: 20px auto;
    }

    .top-notice__wrap h2 {
        font-size: 2rem;
        padding-bottom: 10px;
    }

    .top-notice__wrap h2::before {
        width: 100px;
    }

    .top-notice__wrap p {
        font-size: 1.6rem;
    }

    .top-notice__contents h3 {
        font-size: 1.8rem;
    }

    .other-contents__txt h3 {
        font-size: 1.8rem;
    }

    .other-contents__txt {
        padding: 10px;
    }

    .other-contents__txt p {
        padding: 0px 30px 0px 0px;
        font-size: 1.4rem;
    }

    #page_top {
        width: 62px;
        height: 62px;
        right: 10px;
    }

    .f-logo img {}

    .event-section__item {
        grid-template-columns: 1fr;
    }

    .event-day_list__item .e-announce {
        max-width: 100%;
        padding-left: 0;
        margin-left: 0;
    }

    .decision_announce .event-day_list__item .e-announce {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    html #wpadminbar {
        display: none;
    }

    .main-visual {
        display: block;
        padding: 0;
    }

    .mv {
        padding: 0 10px;
        margin-bottom: 15px;
    }

    .top-contents_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .top-contents_item:nth-child(5) {
        grid-column: initial;
    }

    .area-list li a, .area-list li button {
        padding: 10px 0;
    }
}


.tiktok-contents {
    width: 100%;
}

/**トップページニュース欄**/
.top-news-ticker {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    /* 背景はデザインに合わせて調整してください */
    overflow: hidden;
    padding: 10px 0;
    /**
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;**/
}

.ticker-inner {
    display: flex;
    white-space: nowrap;
}

.ticker-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    animation: ticker-scroll 60s linear infinite;
    /* 速度は秒数で調整 */
}

/* ニュース項目のスタイル */
.ticker-item {
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.ticker-item a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
}

.ticker-date {
    font-size: 14px;
    margin-right: 15px;
}

.ticker-label {
    font-size: 10px;
    padding: 2px 8px;
    background: #666;
    color: #fff;
    margin-right: 15px;
    border-radius: 2px;
}

/* イベントとギャラリーでラベルの色を分ける場合 */
.ticker-label.event {
    background: #e91e63;
}

.ticker-label.gallery {
    background: #2196f3;
    margin-bottom: 0;
}

.ticker-text {
    font-size: 15px;
    font-weight: bold;
}

/* 右から左へ流れるアニメーション */
@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* マウスホップで一時停止させたい場合 */
.top-news-ticker:hover .ticker-list {
    animation-play-state: paused;
}


/**共通アニメーション**/

/**アニメーション**/
.fade-in {
    opacity: 0;
}

.inview {
    animation-name: fade-in;
    animation-duration: .5s;
    animation-timing-function: ease-in-out;
    animation-delay: .4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes fade-in {
    0% {
        transform: translateY(40px);
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.post, .page {
    margin: 0;
}




/**コンタクトフォーム**/

/*****コンタクトフォーム
---------------------------------------------*/
.wp-block-contact-form-7-contact-form-selector {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}

/*ContactForm7カスタマイズ*/
table.CF7_table {
    width: 100%;
    margin: 0 auto;
}


.CF7_table td,
.CF7_table th {
    border: none;
    display: block;
    text-align: left;
    padding: 10px 0;
}

.CF7_table th {
    padding-bottom: 0;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table {
    display: table;
}

/*入力欄*/
.CF7_table input,
.CF7_table textarea,
.CF7_table select {
    border: 1px solid #DDDDDD;
    padding: 15px;
    font-size: 16px;
}

.CF7_table input[type="text"], .CF7_table input[type="email"], .CF7_table textarea, .CF7_table select, .CF7_table input[type="tel"] {
    width: 100%;
}

.sluck-select {
    /* selectボックスの親要素 */
    position: relative;
}

.sluck-select:after {
    /* selectボックスの親要素にオリジナルの矢印を宣言 */
    content: '\f078';
    /* fontawesomeのアイコン表示 */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: var(--sub-color);
    width: 0;
    z-index: 0;
    position: absolute;
    top: 50%;
    right: 85px;
    transform: translateY(-50%);
}

select {
    /* select要素 */
    appearance: none;
}


.CF7_table ::placeholder {
    color: #797979;
}

.CF7_table p {
    text-align: left;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 13px;
}

.CF7_table span {
    font-size: 1.4rem;
    font-weight: 400;
}

/*「必須」文字*/
.CF7_req {

    padding: 3px 14px;
    background: #F0007F;
    /*オレンジ*/
    color: #fff;
    border-radius: 50px;
    margin-left: 1em;
}

/*「任意」文字*/
.CF7_unreq {

    padding: 3px 14px;
    background: #858585;
    /*グレー*/
    color: #fff;
    border-radius: 50px;
    margin-left: 1em;
}

.bd p {
    display: flex;
    align-items: center;
}

.bd-y {
    width: 80px !important;
}

.bdspan {
    margin: 0 15px 0 7px;
}

.row-privacy {
    text-align: center;
    margin-bottom: 20px;
}

.CF7_table .choose_ymd span.wpcf7-form-control-wrap {
    display: flex;
    gap: 15px
}

.wpcf7-radio label {
    display: flex;
}

.wpcf7-radio label input {
    max-width: 20px;
    margin-right: 10px;
}

.rsv-form .wpcf7-radio {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.rsv-form .wpcf7-radio .wpcf7-list-item {}

.rsv-form .wpcf7-list-item-label {
    font-size: 1.6rem;
    font-weight: 500;
}

.cf7_telspan {
    display: block;
    margin: 10px 0;
}


/* レスポンシブ */
@media screen and (max-width: 768px) {
    table.CF7_table {
        width: 95%;
    }

    .CF7_table tr,
    .CF7_table td,
    .CF7_table th {
        display: block;
        width: 100%;
        line-height: 1.4;
        text-align: left;
    }

    .CF7_table p {
        margin-bottom: 0;
    }


}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 240px;
    padding: 1rem 4rem;
    font-weight: bold;
    border: 2px solid #171A1C;
    color: #171A1C;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 0 auto;
    background-color: inherit;
    border-radius: 0;
    font-size: 1.6rem;
    transition: all .3s;
}

.wpcf7 input.wpcf7-submit::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #171A1C;
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.wpcf7 input.wpcf7-submit:hover::before {
    transform: translateX(0);
}

.wpcf7 input.wpcf7-submit:hover {
    color: #fff;
    opacity: 1;
    background-color: #171A1C;
}

/* 「戻るボタン」ボタン */
.wpcf7 input.wpcf7-previous {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 240px;
    padding: 1rem 4rem;
    font-weight: bold;
    border: 2px solid #171A1C;
    color: #171A1C;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 0 auto;
    background-color: inherit;
    border-radius: 0;
    font-size: 1.6rem;
    transition: all .3s;
    margin-bottom: 20px;
}

.wpcf7 input.wpcf7-previous::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #171A1C;
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.wpcf7 input.wpcf7-previous:hover::before {
    transform: translateX(0);
}

.wpcf7 input.wpcf7-previous:hover {
    color: #fff;
    opacity: 1;
    background-color: #171A1C;
}

.CF7_btn {
    text-align: center;
    margin-top: 20px;
}

.wpcf7-spinner {
    width: 0;
    margin: 0;
}

/**他社イベントバナー**/
.other-event-banner, .top-own-ad-banner {
    background-color: #efefef;
    border-radius: 30px;
    padding: 15px;
    margin-bottom: 15px;
}

.other-event-banner img, .top-own-ad-banner img {
    width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 24px;
}

@media screen and (max-width: 768px) {
    .other-event-banner, .top-own-ad-banner {
        padding: 10px;
        border-radius: 10px;
    }

    .other-event-banner img, .top-own-ad-banner img {
        border-radius: 7px;
    }
}

/*************レスポンシブ*************/

/*1024pxまで*/

@media screen and (min-width:768px) and (max-width:1375px) {
    .g-nav_ticket ul, .g-nav_menu ul, .g-nav_sns ul {
        padding-left: 10px;
    }

    .g-nav_ticket, .g-nav_menu, .g-nav_sns {
        gap: 10px;
    }

    .rule_btn a {
        padding: 18px 65px 18px 45px;
    }

    /**イベントページ１カラムにしてみる？**/
    .event-page_main {
        grid-template-columns: 1fr;
    }

    .side-contents {
        display: none;
    }

    .event-mv__wrap {
        padding: 0 10px;
    }

    .contents-wrapper {
        max-width: 1200px;
    }

    .venue-list-page .sidebar-section {
        max-width: 480px;
    }

    .venue-card::after {
        width: 48px;
        height: 48px;
    }

    .venue-card__txt {
        max-width: 250px;
    }

    .c_gallery-page .top-filter h2 {
        padding-left: 34px;
        margin-bottom: 20px;
    }

}