/* ============================================================
   LIVE EVENT DESIGN — BLACK × YELLOW
   Inspired by the atmosphere of NUMBER SHOT / live festival sites
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --yellow:       #FFE000;
    --yellow-dim:   #D4B800;
    --yellow-glow:  rgba(255, 224, 0, 0.35);
    --yellow-soft:  rgba(255, 224, 0, 0.12);
    --black:        #0A0A0A;
    --black-mid:    #111111;
    --black-card:   #161616;
    --black-border: #2A2A2A;
    --white:        #FFFFFF;
    --white-muted:  #AAAAAA;
    --red-accent:   #FF3B30;
    --font-en:      'Barlow Condensed', 'Impact', sans-serif;
    --font-jp:      'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
}

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow+Condensed:wght@400;600;700;800&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* ---------- Reset ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- Body ---------- */
body {
    background: var(--black);
    background-image:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,224,0,0.06) 0%, transparent 70%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(255,255,255,0.015) 60px,
            rgba(255,255,255,0.015) 61px
        );
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    font-family: var(--font-jp);
    color: var(--white);
}

/* ---------- Stars (background particles) ---------- */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star1 {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.4;
    animation: twinkle 2s infinite alternate;
    box-shadow: 0 0 4px var(--yellow);
}

.star2 {
    position: absolute;
    width: 1.5px;
    height: 1.5px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.2;
    animation: twinkle 3s infinite alternate;
}

.star3 {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.25;
    animation: twinkle 2.5s infinite alternate;
    filter: blur(0.5px);
    box-shadow: 0 0 6px var(--yellow-glow);
}

.star1 { animation-delay: 0s; }
.star2 { animation-delay: 1s; }
.star3 { animation-delay: 2s; }

@keyframes twinkle {
    from { opacity: 0.1; transform: scale(1); }
    to   { opacity: 0.6; transform: scale(1.5); }
}

/* ---------- Utility ---------- */
.fwb { font-weight: 700; }

/* ---------- Wrapper ---------- */
#wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--black-mid);
    border-left:  1px solid var(--black-border);
    border-right: 1px solid var(--black-border);
    box-shadow:
        0 0 0 1px rgba(255,224,0,0.08),
        0 0 80px rgba(255,224,0,0.04),
        0 40px 120px rgba(0,0,0,0.8);
    overflow: hidden;
    min-height: 100vh;
}

/* ---------- Hero Image ---------- */
.post.featured {
    margin-bottom: 0;
    position: relative;
}

.for_pc, .for_sp {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Post Content Area ---------- */
.post2 {
    padding: 50px 48px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

.post2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    opacity: 0.8;
}

/* ---------- Section Headings (h7) ---------- */
h7 {
    display: block;
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin: 56px 0 20px 0;
    padding: 10px 18px;
    background: var(--black);
    color: var(--yellow);
    border-radius: 0;
    position: relative;
    z-index: 1;
    box-shadow: none;
    text-shadow: 0 0 20px var(--yellow-glow);
    border-left: 3px solid var(--yellow);
}

h7::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--yellow-dim), transparent);
    opacity: 0.3;
}

/* Override alternating colors — all headings follow the same rule */
h7:nth-of-type(even),
h7:nth-of-type(3n),
h7:nth-of-type(4n) {
    background: var(--black);
    color: var(--yellow);
    box-shadow: none;
    border-left: 3px solid var(--yellow);
}

/* ---------- Paragraph ---------- */
p {
    margin: 16px 0;
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    font-family: var(--font-jp);
}

p strong {
    background: var(--yellow);
    padding: 2px 8px;
    border-radius: 2px;
    color: var(--black);
    font-weight: 700;
}

/* ---------- Lists ---------- */
ul, ol {
    margin: 16px 0 16px 24px;
    position: relative;
    z-index: 1;
}

li {
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.7;
    padding-left: 8px;
    color: #333333;
    font-family: var(--font-jp);
}

li::marker {
    color: var(--yellow-dim);
    font-weight: 700;
}

/* ---------- Tables ---------- */
.sch, .table2 {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    z-index: 1;
    border: 1px solid #E5E5E5;
}

.sch th, .table2 th {
    background: var(--yellow);
    color: var(--black);
    border: 1px solid rgba(255,224,0,0.3) !important;
    padding: 14px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-jp);
    letter-spacing: 0.05em;
}

.sch td, .table2 td {
    padding: 12px 16px;
    border: 1px solid #E5E5E5 !important;
    text-align: center;
    background: #FFFFFF;
    color: #333333;
    font-family: var(--font-jp);
    font-size: 14px;
    transition: background 0.2s;
}

.sch tr:hover td,
.table2 tr:hover td {
    background: #FFFBEA;
}

.table2 td:nth-child(5) {
    text-align: left !important;
}

.td_l {
    text-align: left !important;
}

.fcr {
    color: var(--red-accent);
    font-weight: 700;
}

/* ---------- CTA Button (.moko) ---------- */
.moko {
    display: inline-block;
    padding: 16px 44px;
    background: var(--yellow);
    color: var(--black);
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 0 30px var(--yellow-glow), 4px 4px 0 var(--yellow-dim);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    animation: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.moko::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.moko:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--yellow-glow), 4px 4px 0 #AA9A00;
    color: var(--black);
    background: #FFE824;
}

.moko:hover::before {
    left: 150%;
}

/* ---------- Step Sections ---------- */
#stepnum {
    background: var(--yellow);
	font-weight: bold;
    color: var(--black);
    padding: 12px 24px;
    border-radius: 0;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 30px 0 16px 0;
    box-shadow: 4px 4px 0 var(--yellow-dim);
    position: relative;
    z-index: 1;
    text-align: center;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

#step {
    background: #F9F9F9;
    border-left: 3px solid var(--yellow);
    padding: 20px 24px;
    margin: 16px 0;
    border-radius: 0;
    box-shadow: inset 0 0 0 1px #E5E5E5;
    position: relative;
    z-index: 1;
}

/* ---------- Arrow ---------- */
.arrow {
    width: 0;
    height: 0;
    border-top: 18px solid var(--yellow);
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    margin: 20px auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 6px var(--yellow-glow));
}

/* ---------- Bank / Info Box ---------- */
#bank {
    background: #FFFBEA;
    border: 1px solid var(--yellow-dim);
    border-left: 4px solid var(--yellow);
    padding: 20px 24px;
    border-radius: 0;
    color: #333333;
    font-weight: 700;
    margin: 20px 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.bank_box {
    border: 1px solid #E5E5E5;
    padding: 20px 24px;
    margin: 20px 0;
    position: relative;
    z-index: 1;
    background: #F9F9F9;
    color: #333333;
}

/* ---------- Strong2 / Accent text ---------- */
strong2 {
    background: var(--yellow);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 0;
    font-weight: 700;
    display: inline-block;
    margin: 8px 0;
    box-shadow: 3px 3px 0 var(--yellow-dim);
    clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}

.fontcolor {
    color: var(--red-accent);
    font-weight: 700;
}

/* ---------- Logo / Misc ---------- */
.knt {
    max-width: 320px;
    margin: 20px 0;
}

.align-center {
    text-align: center;
    margin: 24px 0;
}

.f_right {
    float: right;
    width: 45%;
}

.f_left {
    float: left;
    width: 45%;
}

/* ---------- Tour Title Section ---------- */
.tour-title-section {
    background: var(--black);
    background-image:
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255,224,0,0.12) 0%, transparent 70%);
    padding: 70px 48px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

/* Diagonal stripe decoration */
.tour-title-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--yellow);
    box-shadow: 0 0 20px var(--yellow-glow);
}

.tour-title-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -55deg,
            transparent,
            transparent 30px,
            rgba(255,224,0,0.02) 30px,
            rgba(255,224,0,0.02) 31px
        );
    pointer-events: none;
}

.tour-main-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.tour-title-line1 {
    font-family: var(--font-en);
    font-size: 52px;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow:
        0 0 30px var(--yellow-glow),
        0 0 60px rgba(255,224,0,0.15);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background: none;
    background-clip: unset;
    line-height: 1.1;
}

.tour-title-line2 {
    font-family: var(--font-jp);
    font-size: 18px;
    font-weight: 500;
    color: var(--white-muted);
    letter-spacing: 0.15em;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background: none;
    background-clip: unset;
}

/* ---------- Tour Points ---------- */
.tour-points {
    position: relative;
    padding: 56px 0;
    background: #FFFFFF;
    z-index: 1;
}

.tour-points::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--yellow-dim), transparent);
    opacity: 0.5;
}

.tour-points-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2;
}

.tour-points-title {
    font-family: var(--font-en);
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 48px;
    color: #111111;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background: none;
    background-clip: unset;
    position: relative;
}

.tour-points-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background: var(--yellow);
    border-radius: 0;
    box-shadow: 0 0 10px var(--yellow-glow);
}

/* ---------- Points Grid ---------- */
.points-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Point Cards ---------- */
.point-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 0;
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: all 0.25s ease;
    height: auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #E8E8E8;
    overflow: hidden;
}

.point-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    border-radius: 0;
    background: var(--yellow);
    box-shadow: 0 0 12px var(--yellow-glow);
    transition: width 0.25s ease;
}

/* remove top bar — use left bar instead for all */
.point-1::before,
.point-2::before,
.point-3::before,
.point-4::before {
    background: var(--yellow);
    height: 100%;
    width: 3px;
    top: 0;
    left: 0;
    right: auto;
    border-radius: 0;
}

.point-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--yellow-soft), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.point-card:hover {
    transform: translateX(4px);
    border-color: var(--yellow-dim);
    box-shadow: 0 4px 20px rgba(255,224,0,0.15);
}

.point-card:hover::before {
    width: 5px;
}

.point-card:hover::after {
    opacity: 1;
}

/* Point Numbers */
.point-number {
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    width: 44px;
    height: 44px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    box-shadow: none;
    flex-shrink: 0;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.point-1 .point-number,
.point-2 .point-number,
.point-3 .point-number,
.point-4 .point-number {
    background: var(--yellow);
    box-shadow: 0 0 16px var(--yellow-glow);
}

/* Point Content */
.point-content {
    flex-grow: 1;
    margin: 0 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.point-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #111111;
    line-height: 1.5;
    font-family: var(--font-jp);
    letter-spacing: 0.02em;
}

.point-1 .point-content h3,
.point-2 .point-content h3,
.point-3 .point-content h3,
.point-4 .point-content h3 {
    color: #111111;
}

/* Point Icon */
.point-icon {
    font-size: 28px;
    opacity: 0.3;
    transition: all 0.25s ease;
    flex-shrink: 0;
    filter: grayscale(1);
}

.point-card:hover .point-icon {
    opacity: 0.7;
    transform: scale(1.15);
    filter: grayscale(0);
}

/* ---------- Point 2/3 variants ---------- */
.point-card.point-3 {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 24px 28px;
}

.point-3-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.point-card.point-2 {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 24px 28px;
}

.point-2-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.point-photos_2 {
    display: flex;
    gap: 14px;
    margin-top: 16px;
    width: 100%;
}

.point-photos {
    display: flex;
    gap: 14px;
    margin-top: 16px;
    width: 100%;
}

.point-photos_2 img {
    width: calc(50% - 7px);
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 1px solid var(--black-border);
}

.point-photos img {
    width: calc(50% - 7px);
    max-width: 500px;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 1px solid var(--black-border);
}

/* ---------- Notice Section ---------- */
.notice-section {
    background: #FFFBEA;
    margin: 40px 0;
    padding: 32px 36px;
    border-radius: 0;
    position: relative;
    box-shadow: none;
    border: 1px solid #F0E68C;
    border-left: 4px solid var(--yellow);
	max-width: 1200px;
}

.notice-arrow {
    text-align: center;
    font-size: 28px;
    color: var(--yellow-dim);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
    filter: none;
}

@keyframes bounce {
    0%, 100%  { transform: translateY(0); }
    40%       { transform: translateY(-10px); }
    60%       { transform: translateY(-5px); }
}

.notice-content {
    color: #333333;
    font-size: 15px;
    line-height: 1.8;
    font-family: var(--font-jp);
}

.notice-content p {
    margin: 14px 0;
    color: #333333;
}

.notice-content .highlight {
    background: var(--yellow);
    padding: 2px 8px;
    border-radius: 0;
    font-weight: 700;
    color: var(--black);
}

.notice-content .star-point {
    color: var(--yellow-dim);
    font-weight: 700;
}

.notice-content .option-title {
    background: var(--yellow);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 0;
    font-weight: 700;
    display: inline-block;
    margin: 10px 0;
    box-shadow: 3px 3px 0 var(--yellow-dim);
    clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}

.notice-content .important-note {
    background: rgba(255,224,0,0.12);
    border-left: 2px solid var(--yellow-dim);
    padding: 14px 18px;
    border-radius: 0;
    margin: 14px 0;
}

/* ---------- YES / NO Buttons (.mokofo) ---------- */
.btn-group {
    display: inline-flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mokofo.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 0;
    padding: 14px 40px;
    font-weight: 700;
    font-size: 22px;
    font-family: var(--font-en);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    transition: transform .2s cubic-bezier(.2,.9,.2,1), box-shadow .2s;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 3;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-yes {
    color: var(--black);
    background: var(--yellow);
    box-shadow: 0 0 30px var(--yellow-glow), 4px 4px 0 var(--yellow-dim);
    border: none;
    animation: none;
}

.btn-yes::after {
    content: "→";
    display: inline-block;
    margin-left: 12px;
    font-weight: 800;
    transform: translateX(0);
    transition: transform .2s ease;
}

.btn-yes:hover,
.btn-yes:focus {
    transform: translateY(-4px);
    box-shadow: 0 0 50px var(--yellow-glow), 4px 4px 0 #AA9A00;
    background: #FFE824;
    outline: none;
}

.btn-yes:hover::after {
    transform: translateX(4px);
}

.btn-no {
    color: #666666;
    background: transparent;
    border: 1px solid #CCCCCC;
    box-shadow: none;
    padding: 13px 38px;
}

.btn-no::after {
    content: "✕";
    display: inline-block;
    margin-left: 10px;
    opacity: 0.5;
    transform: translateX(0);
    transition: transform .18s ease;
}

.btn-no:hover,
.btn-no:focus {
    transform: translateY(-3px);
    border-color: #888888;
    color: #111111;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-note {
    font-size: 12px;
    color: #888888;
    font-family: var(--font-jp);
    letter-spacing: 0.03em;
}

/* ---------- Scroll Box ---------- */
.scroll_box {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
}

.scroll_box::-webkit-scrollbar {
    height: 4px;
}
.scroll_box::-webkit-scrollbar-track {
    background: #F0F0F0;
}
.scroll_box::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 0;
}

/* ---------- Responsive: Tablet ---------- */
@media screen and (max-width: 1024px) {
    .f_right, .f_left {
        float: none;
        width: 100%;
    }

    #wrapper {
        margin: 0;
        border-left: none;
        border-right: none;
    }

    .tour-title-section {
        border-radius: 0;
    }
}

/* ---------- Responsive: Mobile (768px) ---------- */
@media screen and (max-width: 768px) {
    .post2 {
        padding: 28px 20px;
    }

    h7 {
        font-size: 11px;
        padding: 9px 14px;
        margin: 40px 0 16px 0;
    }

    .moko {
        padding: 14px 30px;
        font-size: 14px;
    }

    .sch th, .table2 th,
    .sch td, .table2 td {
        padding: 8px 10px;
        font-size: 13px;
    }

    .tour-title-section {
        padding: 50px 24px 44px;
    }

    .tour-title-line1 {
        font-size: 36px;
    }

    .tour-title-line2 {
        font-size: 15px;
    }

    .tour-points {
        padding: 36px 0;
    }

    .tour-points-container {
        padding: 0 20px;
    }

    .tour-points-title {
        font-size: 11px;
        margin-bottom: 32px;
    }

    .points-grid {
        gap: 12px;
        margin-top: 36px;
    }

    .point-card {
        padding: 20px 22px;
        min-height: 64px;
    }

    .point-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .point-content h3 {
        font-size: 15px;
    }

    .point-icon {
        font-size: 24px;
    }

    .notice-section {
        margin: 28px 0;
        padding: 24px 20px;
    }

    .notice-arrow {
        font-size: 24px;
    }

    .notice-content {
        font-size: 14px;
    }

    .point-photos,
    .point-photos_2 {
        gap: 8px;
    }

    .point-photos img,
    .point-photos_2 img {
        border-radius: 0;
    }

    .mokofo.btn {
        font-size: 18px;
        padding: 12px 28px;
    }
}

/* ---------- Responsive: Small Mobile (480px) ---------- */
@media screen and (max-width: 480px) {
    .post2 {
        padding: 20px 16px;
    }

    h7 {
        font-size: 10px;
        padding: 8px 12px;
    }

    .tour-title-section {
        padding: 40px 16px 36px;
    }

    .tour-title-line1 {
        font-size: 28px;
    }

    .tour-title-line2 {
        font-size: 13px;
        letter-spacing: 0.1em;
    }

    .tour-points-container {
        padding: 0 16px;
    }

    .tour-points-title {
        margin-bottom: 28px;
    }

    .points-grid {
        max-width: 100%;
        gap: 10px;
    }

    .point-card {
        padding: 16px 18px;
        min-height: 58px;
    }

    .point-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .point-content {
        margin: 0 12px;
    }

    .point-content h3 {
        font-size: 14px;
    }

    .point-icon {
        font-size: 20px;
    }

    .btn-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }

    .mokofo.btn {
        width: calc(100% - 32px);
        padding: 14px 18px;
        font-size: 16px;
    }

    .notice-section {
        padding: 18px 14px;
    }

    .point-photos,
    .point-photos_2 {
        flex-direction: column;
        gap: 10px;
    }

    .point-photos img,
    .point-photos_2 img {
        width: 100%;
    }

    .sch th, .table2 th,
    .sch td, .table2 td {
        font-size: 12px;
        padding: 7px 8px;
    }
}

/* ---------- Pulse animation for yellow accents ---------- */
@keyframes yellowPulse {
    0%, 100% { box-shadow: 0 0 20px var(--yellow-glow); }
    50%       { box-shadow: 0 0 40px rgba(255,224,0,0.5); }
}

/* ---------- Entrance animation ---------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

#wrapper {
    animation: fadeUp 0.6s ease both;
}

.tour-title-section .tour-main-title {
    animation: fadeUp 0.7s 0.1s ease both;
}

.point-card {
    animation: fadeUp 0.5s ease both;
}

.point-card:nth-child(1) { animation-delay: 0.05s; }
.point-card:nth-child(2) { animation-delay: 0.1s; }
.point-card:nth-child(3) { animation-delay: 0.15s; }
.point-card:nth-child(4) { animation-delay: 0.2s; }

/* ---------- Scrollbar global ---------- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--yellow);
}
@media (max-width:1024px) {
	.table_outer{
		display: block;overflow-x: scroll;white-space: nowrap;-webkit-overflow-scrolling: touch;
	}	}