        /* --- 基本設定 & リセット --- */
        :root {
            --primary: #ff6ea7; /* 王道カワイイ桃色 */
            --primary-light: #fff0f5;
            --secondary: #6ee7b7; /* パステルミント */
            --sky: #7dd3fc; /* パステルスカイブルー */
            --purple: #c084fc; /* ラベンダーパープル */
            --yellow: #fde047; /* レモンイエロー */
            --text-dark: #4c3543; /* 柔らかいベリーブラウン（黒の代わり） */
            --card-bg: rgba(255, 255, 255, 0.92); /* ミルクガラス風の白 */
            --font-family: 'Zen Maru Gothic', sans-serif; /* 丸ゴシック体を指定 */
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-family);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            
            /* 明るくカワイイ、パステルマカロングラデーション背景（固定） */
            /*background: linear-gradient(135deg, #fff0f6 0%, #e0f2fe 35%, #fefce8 70%, #f3e8ff 100%) no-repeat center center fixed;*/
            background: url("../img/title_logo.jpg") no-repeat center center fixed;
            background-size: cover;
        }
        
        .back {
            background: linear-gradient(135deg, #fff0f6cc 0%, #e0f2fecc 35%, #fefce8cc 70%, #f3e8ffcc 100%) no-repeat center center fixed;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px); /* Safari用のお守り */
            padding-top: 50px;
        }
        @media screen and (min-width: 960px) {
            .back {padding-top: 100px;}
        }

        /* 画面全体に散りばめる、カワイイきらきらハートエフェクト */
        /*body::before {
            content: "";
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: 
                radial-gradient(rgba(255, 110, 167, 0.2) 3px, transparent 0),
                radial-gradient(rgba(255, 255, 255, 0.8) 2px, transparent 0);
            background-size: 60px 60px, 100px 100px;
            background-position: 0 0, 30px 30px;
            z-index: -1;
            opacity: 0.8;
        }*/

        a {
            color: inherit;
            text-decoration: none;
        }
        
        #schedule, #ticket, #timeline, #attention {
            position: relative;
            top: -60px;
        }
        @media screen and (min-width: 960px) {
            #schedule, #ticket, #timeline, #attention {top: -100px;}
        }

        /* --- ナビゲーションバー（タイトル無し・メニューをセンター配置） --- */
        .navbar {
            position: fixed;
            top: 0; left: 0; width: 100%;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 2px solid rgba(255, 110, 167, 0.15);
        }
        .navbar-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center; /* メニューを完全に中央揃え */
            align-items: center;
            padding: 18px 20px;
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-dark);
            transition: all 0.2s;
            letter-spacing: 0.05em;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--primary);
            transform: scale(1.05);
        }
        /* ホバー時に下に小さなハートが出るカワイイ演出 */
        .nav-links a:hover::after {
            content: '❤';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.7rem;
            color: var(--primary);
        }

        /* --- メインビジュアル --- */
        .hero {
            position: relative;
            padding-top: 160px;
            padding-bottom: 90px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            /*min-height: 85vh;*/
            min-height: 110vh !important;
        }
        @media screen and (min-width: 960px) {
            .hero {min-height: 100vh;}
        }
        .hero-logo {
            max-width: 440px;
            width: 85%;
            height: auto;
            margin-bottom: 35px;
            filter: drop-shadow(0 10px 20px rgba(255, 110, 167, 0.25));
            animation: float 4s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-12px) scale(1.02); }
        }
        .hero-title {
            font-size: 2.2rem;
            color: var(--primary);
            font-weight: 900;
            margin-bottom: 15px;
            padding: 0 15px;
            letter-spacing: 0.02em;
            text-shadow: 2px 2px 0px #ffffff, 4px 4px 0px rgba(255, 110, 167, 0.15);
        }
        .hero-sub {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 40px;
            background: rgba(255,255,255,0.6);
            padding: 5px 20px;
            border-radius: 20px;
            display: inline-block;
        }
        .hero-info {
            background: #ffffff;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 15px 45px;
            border-radius: 50px;
            box-shadow: 0 10px 25px rgba(255, 110, 167, 0.15);
            font-size: 1.3rem;
            font-weight: 900;
        }
        .hero-info span {
            background: linear-gradient(90deg, var(--primary), var(--purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-right: 12px;
        }

        /* --- コンテンツセクション（ミルクガラス風のふんわり浮いたカード） --- */
        .section-container {
            max-width: 950px;
            margin: 0 auto 60px auto; 
            padding: 60px 45px;
            background: var(--card-bg);
            
            /* すりガラス＋甘く柔らかいピンクのシャドウでカワイイ浮遊感 */
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 36px;
            border: 3px solid #ffffff;
            box-shadow: 0 20px 45px rgba(255, 110, 167, 0.12);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 900;
            margin-bottom: 45px;
            position: relative;
            color: var(--primary);
            letter-spacing: 0.05em;
        }
        /* タイトルの下にカワイイハートのアクセント */
        /*.section-title::after {
            content: '❤❤❤';
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 1.1rem;
            color: var(--sky);
            letter-spacing: 5px;
        }*/

        /* --- SCHEDULE --- */
        .schedule-box {
            text-align: center;
        }
        .schedule-date {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .schedule-time {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--text-dark);
            background: rgba(125, 211, 252, 0.15);
            display: inline-block;
            padding: 4px 20px;
            border-radius: 30px;
        }
        .schedule-venue {
            font-size: 1.9rem;
            font-weight: 900;
            color: var(--text-dark);
        }

        /* --- TICKET --- */
        .ticket-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin-bottom: 35px;
        }
        .ticket-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 28px;
            border: 2px solid #f3e8ff;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 5px 15px rgba(0,0,0,0.01);
            transition: all 0.3s ease;
        }
        .family {
            border: 2px solid #f8d2ad;
        }
        .ticket-card:hover {
            transform: translateY(-6px);
            border-color: var(--sky);
            box-shadow: 0 15px 30px rgba(125, 211, 252, 0.2);
        }
        .family:hover {
            transform: translateY(-6px);
            border-color: #fba857;
            box-shadow: 0 15px 30px rgba(251, 115, 15, 0.2);
        }
        .ticket-card.premium {
            border: 3px solid var(--primary);
            background: #fffbfd;
        }
        .ticket-grid.family_all {
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            border: 3px solid #fba857;
            border-radius: 24px;
            padding: 15px;
        }
        .badge {
            position: absolute;
            top: 0; right: 0;
            background: linear-gradient(135deg, var(--primary), #ff9ebe);
            color: white;
            padding: 6px 16px;
            font-size: 0.75rem;
            font-weight: bold;
            border-bottom-left-radius: 16px;
        }
        .ticket-name {
            font-size: 1.2rem;
            font-weight: 900;
            margin-bottom: 12px;
            color: var(--text-dark);
            line-height: 1.4;
        }
        .ticket-price {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .ticket-benefit {
            background: #fff0f5;
            padding: 14px;
            border-radius: 16px;
            font-size: 0.85rem;
            margin-bottom: 15px;
            border: 1.5px dashed var(--primary);
            color: var(--text-dark);
        }
        .ticket-notes {
            font-size: 0.8rem;
            color: #7c6875;
            margin-top: auto;
            border-top: 1px dotted #e5e5e5;
            padding-top: 12px;
        }
        .attention-sub-box {
            background: #faf5ff;
            padding: 25px;
            border-radius: 24px;
            font-size: 0.85rem;
            border: 2px solid #eedffc;
            color: var(--text-dark);
            line-height: 1.7;
        }

        /* --- TICKET SCHEDULE (TIMELINE) --- */
        .timeline {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            padding-left: 40px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 12px; top: 0; height: 100%; width: 4px;
            background: linear-gradient(to bottom, var(--primary), var(--sky), var(--purple));
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 45px;
        }
        /* タイムラインの点をカワイイ「❤」に変更 */
        .timeline-item::before {
            content: '❤';
            position: absolute;
            left: -37px; top: 0;
            width: 24px; height: 24px;
            background: #ffffff;
            color: var(--primary);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 2px solid var(--primary);
            box-shadow: 0 4px 10px rgba(255, 110, 167, 0.2);
        }
        .timeline-title {
            font-size: 1.25rem;
            font-weight: 900;
            margin-bottom: 6px;
            color: var(--text-dark);
        }
        .timeline-date {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--purple);
            margin-bottom: 15px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, var(--primary) 0%, #ff8ebb 100%);
            color: white;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 900;
            font-size: 0.9rem;
            box-shadow: 0 6px 18px rgba(255, 110, 167, 0.25);
            transition: all 0.3s ease;
        }
        input[type="submit"] {
            border: none;
            font-family: 'Zen Maru Gothic', sans-serif;
        }
        input[type="submit"]:hover {
            cursor: pointer;
        }
        .btn:hover {
            transform: scale(1.05) rotate(1deg);
            box-shadow: 0 10px 22px rgba(255, 110, 167, 0.4);
        }
        .btn.disabled {
            background: #e2e8f0;
            color: #94a3b8;
            box-shadow: none;
            cursor: not-allowed;
            transform: none !important;
        }

        /* --- ATTENTION --- */
        .attention-list li {
            position: relative;
            /*padding-left: 24px;*/
            padding-left: 14px;
            margin-bottom: 14px;
            font-size: 0.95rem;
            color: var(--text-dark);
        }
        /* 注意事項の文頭を「❤」に変更 */
        .attention-list li.answer {
            list-style: none;
            padding-left: 35px;
            font-weight: bold;
            margin-bottom: 40px;
        }
        .attention-list li.answer:last-child {
            margin-bottom: 14px;
        }
        .attention-list li.answer::before {
            content: "❤";
            position: absolute;
            left: 10px;
            font-size: 0.85rem;
            color: var(--primary);
        }
        .attention-list div {
            font-size: 0.95rem;
        }

        /* --- FOOTER --- */
        /*.footer {
            background: #ffffff;
            color: var(--text-dark);
            padding: 20px 20px 0 20px;
            font-size: 0.85rem;
            border-top: 3px solid var(--primary);
        }
        .footer-inner {
            max-width: 950px;
            margin: 0 auto;
            padding: 50px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 40px;
        }
        .footer-brand h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.3rem;
            font-weight: 900;
        }
        .footer-info p {
            margin-bottom: 10px;
        }
        .footer-info a {
            color: var(--primary);
            font-weight: bold;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #f3e8ff;
            padding: 25px 0;
            margin-top: 20px;
            font-size: 0.8rem;
            color: #9c8a96;
        }*/

        /* --- スマホ対応 --- */
        @media (max-width: 768px) {
            body {
                position: relative;
                background-image: none;
                background-attachment: scroll;
            }
            body::before {
                content: "";
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-image: url("../img/title_logo-sp.jpg");
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
                z-index: -10;
            }
            .navbar-inner { padding: 12px 20px; }
            .nav-links { gap: 15px; }
            .nav-links a { font-size: 0.8rem; }
            .hero { padding-top: 130px; padding-bottom: 50px; min-height: auto; }
            .hero-title { font-size: 1.5rem; text-shadow: 1px 1px 0px #fff; }
            .hero-sub { font-size: 0.95rem; margin-bottom: 25px; }
            .hero-info { font-size: 1rem; padding: 12px 25px; }
            
            .section-container { margin: 0 12px 40px 12px; padding: 40px 20px; border-radius: 28px; }
            .section-title { font-size: 1.7rem; margin-bottom: 35px; }
            .schedule-date { font-size: 1.6rem; }
            .schedule-venue { font-size: 1.4rem; }
            .timeline { padding-left: 30px; }
            .timeline-item::before { left: -30px; }
        }

/*===================================================
  anim
====================================================*/
.anim.fadeX,
.anim.fadeY {
    opacity: 0;
    transition: all .5s ease-out;
}
.anim.fadeX {
    transform: translateX(20px);
}
.anim.fadeY {
    transform: translateY(20px);
}
.anim.fadeX.on,
.anim.fadeY.on {
    opacity: 1;
}
.anim.fadeX.on {
    transform: translateX(0px);
}
.anim.fadeY.on {
    transform: translateY(0px);
}


/*=============
footer  area
=============*/
footer {
	width: 100%;
	background: #e7d2f7;
	margin: 100px 0 0;
	padding: 0 0 50px;
	text-align: center;
}

.footer-logo {
	width: 50%;
	display: block;
	position: relative;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
}

footer ul li {
	display: inline-block;
	width: fit-content;
}

.footer-sns {
	position: relative;
	top: -10px;
}

.footer-menu {
	position: relative;
	top: 15px;
}

.footer-sns li.fc a {
    font-size: 20px;
    font-family: "Cherry Bomb One", system-ui;
}

.footer-sns i {
	font-size: 25px;
	margin: 0 0 0 20px;
}

/*.footer-sns i.fa-x-twitter {
	margin-left: 0;
}*/

.footer-menu li {
	font-size: 10px;
	margin: 0 0 0 15px;
}

.footer-menu li:first-child {
	margin-left: 0;
}

.copyright {
	font-size: 10px;
	position: relative;
	top: 30px;
	font-family: "Cherry Bomb One", system-ui;
}

@media screen and (min-width: 960px) {
	footer {
		margin: 200px 0 0;
	}
	footer a {
  		transition : all 0.5s ease 0s;
  	}
	footer a:hover {
		color: #8d5cbc;
	}
	.footer-logo {
		width: 300px !important;
		top: -85px;
	}
	.footer-sns {
		top: -25px;
	}
	.footer-menu {
		top: 12px;
	}
	.footer-sns li.fc a {
	    font-size: 35px;
	}
	.footer-sns i {
		font-size: 35px;
		margin: 0 0 0 30px;
	}
	.footer-menu li {
		font-size: 12px;
		margin: 0 0 0 40px;
	}
	.copyright {
		top: 35px;
	}
}