/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 23 2026 | 19:45:53 */
/* --- Google Fonts 読み込み --- */
@import url('https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&family=Zen+Kaku+Gothic+New:wght@400;700;900&display=swap');

/* --- Elementorデフォルトスタイルの干渉防止 --- */
.vt-wrapper button,
.vt-wrapper [type="button"],
.vt-wrapper [type="submit"] {
    outline: none !important;
}

.vt-wrapper button:focus,
.vt-wrapper button:active,
.vt-wrapper [type="button"]:focus,
.vt-wrapper [type="button"]:active,
.vt-wrapper [type="submit"]:focus,
.vt-wrapper [type="submit"]:active {
    outline: none !important;
}

/* --- 変数定義 --- */
:root {
    --color-main: #7AAEDA;
    --color-sub1: #9ECBF4;
    --color-sub2: #CDE0F0;
    --color-text: #333333;
    --color-border: #333333;
   --font-en: 'Rowdies', 'Zen Kaku Gothic New', sans-serif;
    --font-jp: 'Zen Kaku Gothic New', sans-serif;
}

/* --- 全体・背景設定 --- */
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-jp);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
    
    background-color: var(--color-main);
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.4) 3px, transparent 3px),
        linear-gradient(135deg, var(--color-main) 0%, var(--color-sub1) 50%, var(--color-sub2) 100%);
    background-size: 30px 30px, 100% 100%;
    background-attachment: fixed;
    background-blend-mode: overlay;
    position: relative;
}

/* ノイズ背景 */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://dobest1-a.com/wp-content/uploads/2026/02/3n-scaled.webp');
    background-size: 400px; 
    background-repeat: repeat;
    opacity: 0.15; 
    z-index: -10;
    pointer-events: none;
}

* { box-sizing: border-box; }
a { color: var(--color-text); text-decoration: none; }





/* =============================================
   装飾ブラッシュアップ CSS
   - 既存の .deco 系CSSはそのまま残してもOK（新クラス名で上書き）
   - 追記推奨
   ============================================= */
 /* =============================================
   装飾ブラッシュアップ v2 CSS
   カラー: #CDE0F0 / #9ECBF4
   ============================================= */
 
/* --- 共通：FV装飾パーツ --- */
.deco-geo {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    will-change: transform;
}
 
/* リング（細線の円） */
.deco-ring {
    width: 90px;
    height: 90px;
    border: 1.5px solid #9ECBF4;
    border-radius: 50%;
    opacity: 0.5;
    animation: deco-float 7s ease-in-out infinite alternate;
}
.deco-ring--lg {
    width: 140px;
    height: 140px;
    border: 1.5px solid #CDE0F0;
    opacity: 0.4;
    animation-duration: 9s;
    animation-delay: -2s;
}
 
/* ドットクラスター（3×3グリッド） */
.deco-dot-cluster {
    display: grid;
    grid-template-columns: repeat(3, 14px);
    gap: 10px;
    opacity: 0.35;
    animation: deco-float 8s ease-in-out infinite alternate;
    animation-delay: -1s;
}
.deco-dot-cluster span {
    width: 14px;
    height: 14px;
    background: #9ECBF4;
    border-radius: 50%;
}
.deco-dot-cluster--sm {
    grid-template-columns: repeat(2, 10px);
    gap: 8px;
    opacity: 0.28;
    animation-duration: 6s;
}
.deco-dot-cluster--sm span {
    width: 10px;
    height: 10px;
    background: #CDE0F0;
}
 
/* グリッドブロック（枠線なし） */
.deco-grid-block {
    width: 80px;
    height: 80px;
    opacity: 0.18;
    background-image:
        linear-gradient(#9ECBF4 1px, transparent 1px),
        linear-gradient(90deg, #9ECBF4 1px, transparent 1px);
    background-size: 16px 16px;
    border: none;
    border-radius: 12px;
    animation: deco-float 10s ease-in-out infinite alternate;
    animation-delay: -4s;
}
.deco-grid-block--sm {
    width: 55px;
    height: 55px;
    background-image:
        linear-gradient(#CDE0F0 1px, transparent 1px),
        linear-gradient(90deg, #CDE0F0 1px, transparent 1px);
    background-size: 11px 11px;
    border: none;
    border-radius: 8px;
    opacity: 0.15;
    animation-duration: 7s;
}
 
/* ソリッド円 */
.deco-circle-solid {
    width: 50px;
    height: 50px;
    background: #9ECBF4;
    border: none;
    border-radius: 50%;
    opacity: 0.35;
    animation: deco-float 6s ease-in-out infinite alternate;
    animation-delay: -3s;
}
.deco-circle-solid--sub {
    width: 35px;
    height: 35px;
    background: #CDE0F0;
    opacity: 0.45;
    animation-duration: 8s;
}
 
/* 中抜き円（ダッシュボーダー） */
.deco-circle-hollow {
    width: 100px;
    height: 100px;
    border: 1.5px dashed #9ECBF4;
    border-radius: 50%;
    opacity: 0.2;
    animation: deco-spin-slow 40s linear infinite;
}
.deco-circle-hollow--sm {
    width: 60px;
    height: 60px;
    border: 1px dashed #CDE0F0;
    opacity: 0.18;
    animation-duration: 30s;
    animation-direction: reverse;
}
 
/* ===========================
   菱形キラリ（光の粒）
   4つの菱形を十字に配置して
   キラッとした光の装飾を作る
   =========================== */
.deco-sparkle {
    width: 40px;
    height: 40px;
    opacity: 0.5;
    animation: deco-sparkle-pulse 3s ease-in-out infinite;
}
.deco-sparkle::before,
.deco-sparkle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #9ECBF4;
}
/* 縦長の菱形 */
.deco-sparkle::before {
    width: 6px;
    height: 40px;
    transform: translate(-50%, -50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
/* 横長の菱形 */
.deco-sparkle::after {
    width: 40px;
    height: 6px;
    transform: translate(-50%, -50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
 
.deco-sparkle--sm {
    width: 28px;
    height: 28px;
    opacity: 0.4;
    animation-delay: -1.5s;
    animation-duration: 4s;
}
.deco-sparkle--sm::before {
    width: 4px;
    height: 28px;
    background: #CDE0F0;
}
.deco-sparkle--sm::after {
    width: 28px;
    height: 4px;
    background: #CDE0F0;
}
 
.deco-sparkle--xs {
    width: 18px;
    height: 18px;
    opacity: 0.35;
    animation-delay: -0.8s;
    animation-duration: 2.5s;
}
.deco-sparkle--xs::before {
    width: 3px;
    height: 18px;
    background: #9ECBF4;
}
.deco-sparkle--xs::after {
    width: 18px;
    height: 3px;
    background: #9ECBF4;
}
 
/* --- アニメーション定義 --- */
@keyframes deco-float {
    0%   { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-18px) rotate(3deg); }
}
 
@keyframes deco-spin-slow {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
 
@keyframes deco-sparkle-pulse {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50%      { opacity: 0.6; transform: scale(1.1); }
}
 
/* --- セクション内装飾パーツ --- */
.deco-sec {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}
 
/* セクション内リング */
.deco-sec-ring {
    width: 80px;
    height: 80px;
    border: 1.5px solid #9ECBF4;
    border-radius: 50%;
    opacity: 0.35;
}
.deco-sec-ring--sm {
    width: 50px;
    height: 50px;
    border: 1px solid #CDE0F0;
    opacity: 0.3;
}
 
/* セクション内ドット列 */
.deco-sec-dots {
    display: flex;
    gap: 8px;
    opacity: 0.3;
}
.deco-sec-dots span {
    width: 10px;
    height: 10px;
    background: #9ECBF4;
    border-radius: 50%;
}
 
/* セクション内グリッド */
.deco-sec-grid {
    width: 60px;
    height: 60px;
    opacity: 0.15;
    background-image:
        linear-gradient(#9ECBF4 1px, transparent 1px),
        linear-gradient(90deg, #9ECBF4 1px, transparent 1px);
    background-size: 12px 12px;
    border-radius: 10px;
}
 
/* セクション内ソリッド円 */
.deco-sec-circle {
    width: 40px;
    height: 40px;
    background: #CDE0F0;
    border: none;
    border-radius: 50%;
    opacity: 0.35;
}
 
/* セクション内キラリ */
.deco-sec-sparkle {
    width: 22px;
    height: 22px;
    opacity: 0.35;
    animation: deco-sparkle-pulse 3s ease-in-out infinite;
}
.deco-sec-sparkle::before,
.deco-sec-sparkle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #9ECBF4;
}
.deco-sec-sparkle::before {
    width: 4px;
    height: 22px;
    transform: translate(-50%, -50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.deco-sec-sparkle::after {
    width: 22px;
    height: 4px;
    transform: translate(-50%, -50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
 
/* --- pop-box 背景パターンのアップグレード --- */
.pop-box {
    background-image:
        radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}
 
/* --- スクロール連動フェードイン --- */
.pop-box {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pop-box.is-visible {
    opacity: 1;
    transform: translateY(0);
}
 
/* === Elementor デフォルトCSS上書き防止 === */
.live-section .acc-trigger,
.live-section .acc-trigger:hover,
.live-section .acc-trigger:focus,
.live-section .acc-trigger:active,
.live-section .btn-pop,
.live-section .btn-pop:hover,
.live-section .btn-pop:focus,
.live-section .btn-pop:active,
.live-ticket-float,
.live-ticket-float:hover,
.live-ticket-float:focus,
.live-ticket-float:active {
    background-color: unset;
    color: unset;
    text-decoration: none;
}
.live-section .acc-trigger,
.live-section .acc-trigger:hover,
.live-section .acc-trigger:focus,
.live-section .acc-trigger:active {
    background: none !important;
    color: var(--color-text) !important;
    outline: none !important;
    box-shadow: none !important;
}
.live-section .btn-pop,
.live-section .btn-pop:hover {
    background-color: var(--color-main) !important;
    color: #fff !important;
}
.live-section .btn-pop:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 var(--color-border) !important;
}
.live-section .btn-youtube,
.live-section .btn-youtube:hover {
    background-color: #ff0000 !important;
}
.live-ticket-float,
.live-ticket-float:hover,
.live-ticket-float:focus {
    background: var(--color-main) !important;
    color: #fff !important;
    outline: none !important;
}