@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');

/* ===========================================
   VARIABLES
   =========================================== */
:root {
    --primary: #FFB703;
    --primary-light: #FFE8A1;
    --primary-dark: #E6A500;
    --secondary: #8ECAE6;
    --secondary-light: #C3E4F5;
    --accent: #FB8500;
    --accent-dark: #E07700;
    --line-color: #06C755;
    --text-main: #5C4B51;
    --text-light: #8C7B81;
    --bg-color: #FFFDF7;
    --bg-warm: #FFF8E8;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.08);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
}

/* ===========================================
   RESET & BASE
   =========================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: var(--text-main);
    background: var(--bg-color);
    line-height: 1.8;
    overflow-x: hidden;
    padding-bottom: 70px;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ===========================================
   UTILITIES
   =========================================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-title {
    text-align: center; font-size: 2rem; color: var(--text-main);
    margin-bottom: 2rem; font-weight: 900; letter-spacing: 0.5px;
}
.section-title small {
    display: block; font-size: 0.75rem; font-weight: 700;
    color: var(--accent); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px;
}
.section-title::after {
    content: ''; display: block; width: 50px; height: 4px;
    background: var(--primary); border-radius: 4px;
    margin: 16px auto 0;
}
.section-title.light { color: var(--white); }
.section-title.light::after { background: var(--primary-light); }
.section-desc {
    text-align: center; max-width: 680px; margin: 0 auto 3rem;
    font-size: 1rem; color: var(--text-light); font-weight: 500;
}
.section-desc.light { color: rgba(255,255,255,0.9); }
.sub-heading {
    font-size: 1.3rem; color: var(--primary); margin-bottom: 1.2rem;
    padding-bottom: 10px; border-bottom: 3px dashed var(--primary-light);
    display: inline-block;
}

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.appear { opacity: 1; transform: translateY(0); }

/* ===========================================
   HEADER
   =========================================== */
header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(255, 253, 247, 0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    z-index: 1000; padding: 0 24px; height: 64px;
    display: flex; justify-content: space-between; align-items: center;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); background: rgba(255, 255, 255, 0.98); }

.logo { display: flex; align-items: center; text-decoration: none; gap: 10px; }
.logo-icon {
    width: 38px; height: 38px; background: var(--primary); border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 18px; box-shadow: 0 3px 8px rgba(255,183,3,0.35);
    transition: transform 0.3s ease;
}
.logo:hover .logo-icon { transform: rotate(15deg) scale(1.1); }
.logo-text { font-size: 1.35rem; font-weight: 900; color: var(--text-main); letter-spacing: 1px; }
.logo-text span { color: var(--primary); }

/* ===========================================
   HEADER LOGO TEXT GROUP
   =========================================== */
.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
    text-align: left;
}
.logo-sub {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    display: block;
}
.logo-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: 0.5px;
    display: block;
}

@media (max-width: 768px) {
    .logo-sub {
        display: none !important;
    }
    .logo-title {
        font-size: 0.95rem !important;
    }
    .logo-img {
        height: 38px !important;
    }
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}
.logo:hover .logo-img {
    transform: scale(1.03);
}

/* Desktop nav */
nav ul { list-style: none; display: flex; gap: 22px; align-items: center; }
nav ul li a {
    text-decoration: none; color: var(--text-main); font-weight: 700;
    font-size: 0.88rem; transition: color 0.2s; position: relative;
}
nav ul li a:hover { color: var(--accent); }
nav ul li a.nav-cta {
    background: var(--accent); color: #fff; padding: 8px 18px;
    border-radius: 50px; font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(251,133,0,0.25);
    transition: background 0.2s, transform 0.2s;
}
nav ul li a.nav-cta:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; justify-content: space-between;
    width: 26px; height: 18px; cursor: pointer; z-index: 1010;
}
.hamburger span {
    display: block; width: 100%; height: 2.5px;
    background: var(--text-main); border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.75px) rotate(45deg); background: var(--accent); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); background: var(--accent); }

/* ===========================================
   HERO
   =========================================== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 64px;
}
/* Hero Swiper */
.hero-swiper {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}
.hero-swiper .swiper-slide .slide-bg {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
}
.hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6); width: 12px; height: 12px; margin: 0 6px !important;
}
.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary); opacity: 1;
}
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    color: #fff;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(105deg,
        rgba(255,253,247,0.8) 0%,
        rgba(255,253,247,0.5) 45%,
        rgba(255,253,247,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-deco {
    position: absolute; z-index: 2; opacity: 0.3; pointer-events: none;
    animation: floatDeco 18s ease-in-out infinite;
}
.deco-1 { top: 18%; right: 15%; font-size: 32px; animation-delay: 0s; }
.deco-2 { top: 55%; right: 8%; font-size: 28px; animation-delay: 3s; }
.deco-3 { bottom: 22%; right: 25%; font-size: 24px; animation-delay: 6s; }

@keyframes floatDeco {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-8px, -12px) rotate(5deg); }
    50% { transform: translate(5px, 8px) rotate(-3deg); }
    75% { transform: translate(-3px, 5px) rotate(7deg); }
}

.hero-content {
    position: relative; z-index: 3; max-width: 1100px;
    width: 100%; margin: 0 auto; padding: 0 40px;
    pointer-events: none;
}
.hero-btn-group, .news-ticker {
    pointer-events: auto;
}
.hero-badge {
    display: inline-block; background: var(--accent); color: #fff;
    padding: 6px 18px; border-radius: 50px; font-weight: 800;
    font-size: 0.85rem; margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(251,133,0,0.25);
}
.hero-catch {
    font-size: 3.2rem; line-height: 1.25; margin-bottom: 20px;
    color: var(--text-main); font-weight: 900; letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.8), 0 0 4px rgba(255, 255, 255, 0.5);
}
.hero-catch span {
    color: var(--primary); position: relative;
}
.hero-catch span::after {
    content: ''; position: absolute; bottom: 4px; left: 0;
    width: 100%; height: 8px; background: var(--primary-light);
    z-index: -1; border-radius: 4px;
}
.hero-sub {
    font-size: 1.05rem; font-weight: 800; color: var(--text-main);
    margin-bottom: 32px; line-height: 2; max-width: 520px;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.9), 0 0 2px rgba(255, 255, 255, 0.7);
}
.hero-btn-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-primary {
    background: var(--primary); color: #fff; padding: 16px 32px;
    border-radius: 50px; font-size: 1.05rem; font-weight: 800;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 20px rgba(255,183,3,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(255,183,3,0.4); }
.btn-primary.btn-line { background: var(--line-color); box-shadow: 0 8px 20px rgba(6,199,85,0.3); }
.btn-secondary {
    background: var(--white); color: var(--text-main); padding: 16px 32px;
    border-radius: 50px; font-size: 1.05rem; font-weight: 800;
    text-decoration: none; border: 2px solid #e8e4e0;
    transition: transform 0.2s, border-color 0.2s;
}
.btn-secondary:hover { transform: translateY(-3px); border-color: var(--primary); }

/* News ticker */
.news-ticker {
    display: flex; align-items: flex-start; gap: 10px;
    background: rgba(255,255,255,0.92); padding: 14px 20px;
    border-radius: var(--radius-sm); border-left: 5px solid var(--accent);
    box-shadow: 0 6px 16px rgba(251,133,0,0.1);
    font-weight: 700; max-width: 520px;
}
.news-label {
    color: var(--accent); white-space: nowrap; font-size: 0.95rem;
}
.news-text {
    line-height: 1.6; word-break: break-word; font-size: 0.92rem;
}

/* ===========================================
   PORTAL NAV
   =========================================== */
.portal { padding: 80px 0 60px; background: var(--white); }
.portal-grid {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: 16px; margin-top: 2rem;
}
.portal-card {
    text-decoration: none; background: var(--bg-color);
    padding: 28px 12px 20px; border-radius: var(--radius-md);
    text-align: center; transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}
.portal-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.portal-icon { font-size: 2.2rem; margin-bottom: 10px; }
.portal-card h3 { font-size: 0.95rem; font-weight: 800; color: var(--text-main); margin-bottom: 6px; }
.portal-card p { font-size: 0.78rem; color: var(--text-light); font-weight: 500; }

/* ===========================================
   ABOUT
   =========================================== */
.about { padding: 80px 0; background: var(--bg-color); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 50px; align-items: center;
}
.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}
.about-text h3 {
    font-size: 1.6rem; color: var(--primary); margin-bottom: 20px; line-height: 1.5;
}
.about-text p { margin-bottom: 14px; font-weight: 500; }

/* ===========================================
   ABOUT PHILOSOPHY CARDS
   =========================================== */
.about-philosophy-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 15px;
    text-align: left;
}

.philosophy-card {
    background: #FFFFFF;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.04);
    border-left: 6px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.philosophy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.philosophy-card.concept-card {
    border-left-color: var(--accent);
}

.philosophy-card.target-card {
    border-left-color: var(--primary);
}

.philosophy-card.policy-card {
    border-left-color: var(--secondary);
}

.card-badge {
    display: inline-block;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 30px;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.concept-card .card-badge {
    background: var(--accent);
}

.target-card .card-badge {
    background: var(--primary);
    color: var(--text-main);
}

.policy-card .card-badge {
    background: var(--secondary);
    color: var(--text-main);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.7;
}

.card-list {
    list-style: none;
    padding-left: 0;
}

.card-list li {
    font-size: 0.92rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    padding-left: 22px;
    line-height: 1.6;
}

.card-list li:last-child {
    margin-bottom: 0;
}

.card-list li::before {
    content: '✿';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.85rem;
    top: 1px;
}

.concept-card .card-list li::before {
    color: var(--accent);
}

.target-card .card-list li::before {
    color: var(--primary);
}

.policy-card .card-list li::before {
    color: var(--secondary);
}

/* Overview box */
.overview-box {
    margin-top: 60px; background: var(--white);
    padding: 40px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.overview-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.overview-item {
    display: flex; padding: 14px 0;
    border-bottom: 1px solid #f0ece8;
}
.overview-item:last-child { border-bottom: none; }
.ov-label {
    min-width: 120px; font-weight: 800; color: var(--accent);
    font-size: 0.92rem;
}
.ov-value { font-weight: 500; font-size: 0.95rem; }

/* ===========================================
   FEATURES
   =========================================== */
.features { padding: 80px 0; background: var(--white); }
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-color); padding: 36px 24px;
    border-radius: var(--radius-md); text-align: center;
    border: 2px solid transparent;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-6px); border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}
.feature-icon { font-size: 2.8rem; margin-bottom: 16px; }
.feature-card h4 {
    font-size: 1.15rem; color: var(--text-main); margin-bottom: 12px;
}
.feature-card p {
    font-size: 0.9rem; color: var(--text-light); text-align: left;
    line-height: 1.8; font-weight: 500;
}

/* ===========================================
   DAILY
   =========================================== */
.daily { padding: 80px 0; background: var(--bg-color); }

.scroll-hint-mobile {
    display: none; text-align: right; font-size: 0.85rem;
    color: var(--accent); margin-bottom: 12px; font-weight: 700;
}
.scroll-hint-mobile .icon {
    display: inline-block; animation: slideH 1s infinite alternate ease-in-out;
}
@keyframes slideH {
    0% { transform: translateX(-3px); }
    100% { transform: translateX(3px); }
}

.schedule-wrapper {
    background: var(--white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); overflow: hidden;
}
.schedule-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.schedule-table {
    width: 100%; min-width: 700px; border-collapse: collapse;
}
.schedule-table thead tr { background: var(--primary); }
.schedule-table th {
    padding: 14px 12px; color: #fff; font-weight: 800;
    font-size: 0.9rem; text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.schedule-table th:last-child { border-right: none; }
.schedule-table th.th-time { width: 80px; }
.schedule-table td {
    padding: 12px; text-align: center; font-size: 0.88rem;
    font-weight: 600; border-bottom: 1px solid #f0ece8;
}
.schedule-table tr:last-child td { border-bottom: none; }
.td-center { text-align: center; }
.tr-ext td { background: #FFF8E1; }
.tr-close td { background: #F0F0F0; }

/* Gallery */
.gallery-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px; margin-top: 40px;
}
.gallery-item {
    position: relative; border-radius: var(--radius-md);
    overflow: hidden; height: 240px; cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.g-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 24px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff; font-weight: 700; font-size: 0.9rem;
    transform: translateY(100%); transition: transform 0.35s ease;
}
.gallery-item:hover .g-overlay { transform: translateY(0); }

/* ===========================================
   EVENTS
   =========================================== */
.events {
    padding: 80px 0; background: var(--secondary);
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    padding-top: 100px; padding-bottom: 100px;
}
.events-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.event-card {
    background: rgba(255,255,255,0.95); border-radius: var(--radius-md);
    padding: 28px 24px; position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.event-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.event-season {
    font-size: 1.4rem; font-weight: 900; margin-bottom: 2px;
}
.event-month {
    font-size: 1.1rem; font-weight: 800; color: var(--accent);
    margin-bottom: 14px; padding-bottom: 10px;
    border-bottom: 2px dashed var(--primary-light);
}
.event-list { list-style: none; }
.event-list li {
    margin-bottom: 8px; font-size: 0.9rem; font-weight: 600;
    display: flex; align-items: flex-start; gap: 8px;
}
.event-list li::before { content: '✿'; color: var(--accent); font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }
.event-list li strong { color: var(--accent); font-weight: 800; white-space: nowrap; }

/* ===========================================
   PRICE & ADMISSION
   =========================================== */
.price { padding: 80px 0; background: var(--white); }

/* Simulator */
.sim-box {
    max-width: 620px; margin: 0 auto 60px; background: var(--bg-warm);
    padding: 40px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); border: 2px solid var(--primary-light);
}
.sim-heading {
    font-size: 1.3rem; color: var(--accent); text-align: center; margin-bottom: 8px;
}
.sim-desc {
    text-align: center; font-size: 0.92rem; color: var(--text-light);
    margin-bottom: 28px; font-weight: 500;
}
.sim-step { margin-bottom: 22px; }
.sim-step label {
    display: block; font-weight: 800; margin-bottom: 8px;
    color: var(--primary); font-size: 1.02rem;
}
.sim-select {
    width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
    border: 2px solid #e8e4e0; font-size: 0.95rem;
    font-family: inherit; font-weight: 700; color: var(--text-main);
    background: var(--white); cursor: pointer; transition: border-color 0.2s;
    -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238C7B81' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat; background-position: right 12px center; background-size: 18px;
}
.sim-select:focus { outline: none; border-color: var(--primary); }
.btn-sim {
    width: 100%; padding: 16px; border: none; border-radius: 50px;
    background: var(--accent); color: #fff; font-size: 1.1rem;
    font-weight: 800; font-family: inherit; cursor: pointer;
    box-shadow: 0 6px 16px rgba(251,133,0,0.3);
    transition: background 0.2s, transform 0.2s;
}
.btn-sim:hover { background: var(--accent-dark); transform: translateY(-2px); }

.sim-result {
    margin-top: 24px; padding: 24px; background: var(--white);
    border-radius: var(--radius-md); text-align: center;
    border: 3px dashed var(--primary);
    animation: popIn 0.4s ease;
}
.hidden { display: none; }
.result-title { font-size: 1.25rem; color: var(--accent); margin-bottom: 10px; font-weight: 900; }
.result-desc { font-weight: 600; line-height: 1.7; font-size: 0.95rem; }

@keyframes popIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Price tables */
.price-section { margin-bottom: 50px; }
.price-highlight {
    background: var(--bg-warm); padding: 24px; border-radius: var(--radius-md);
    text-align: center; border: 2px solid var(--primary-light);
    margin-bottom: 30px;
}
.price-highlight p { font-size: 1.05rem; margin-bottom: 4px; }
.price-highlight strong { color: var(--accent); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table {
    width: 100%; border-collapse: collapse; background: var(--white);
    border-radius: var(--radius-sm); overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.price-table thead th {
    background: var(--primary-light); color: var(--text-main);
    padding: 14px; font-weight: 800; font-size: 0.92rem;
    text-align: center; border-right: 1px solid var(--white);
}
.price-table thead th:last-child { border-right: none; }
.price-table td {
    padding: 14px; text-align: center; font-weight: 600;
    border-bottom: 1px solid #f0ece8; font-size: 0.92rem;
}
.price-table tr:last-child td { border-bottom: none; }
.price-accent { color: var(--accent); font-weight: 800; }
.tr-total td { background: var(--bg-warm); font-weight: 800; }
.table-note {
    text-align: right; margin-top: 10px; font-size: 0.85rem;
    color: var(--text-light); font-weight: 500;
}

/* Capacity */
.capacity-section { margin-bottom: 50px; }

/* Flow steps */
.flow-section { margin-bottom: 20px; }
.flow-steps { display: flex; flex-direction: column; gap: 16px; max-width: 700px; margin: 0 auto; }
.step {
    display: flex; align-items: flex-start; gap: 20px;
    background: var(--bg-color); padding: 24px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--secondary);
    transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.step-num {
    font-size: 1.4rem; font-weight: 900; color: var(--white);
    background: var(--secondary); width: 44px; height: 44px;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%; flex-shrink: 0;
}
.step-body h4 { font-size: 1.05rem; color: var(--text-main); margin-bottom: 6px; }
.step-body p { font-size: 0.9rem; color: var(--text-light); font-weight: 500; }

/* ===========================================
   FAQ
   =========================================== */
.faq { padding: 80px 0; background: var(--bg-color); }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
    background: var(--white); border-radius: var(--radius-md);
    margin-bottom: 12px; overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item summary {
    font-weight: 800; padding: 20px 50px 20px 24px;
    cursor: pointer; list-style: none; font-size: 1rem;
    position: relative; line-height: 1.5;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '＋'; position: absolute; right: 20px; top: 50%;
    transform: translateY(-50%); color: var(--primary);
    font-size: 1.3rem; font-weight: 900; transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-light); font-weight: 500; line-height: 1.8;
}

/* ===========================================
   ACCESS
   =========================================== */
.access { padding: 80px 0; background: var(--white); }
.access-content {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 30px; align-items: stretch;
}
.access-info {
    display: flex; flex-direction: column; justify-content: center;
}
.access-detail { margin-bottom: 16px; }
.access-detail p { margin-bottom: 10px; font-weight: 600; font-size: 0.95rem; }
.access-detail a { color: var(--accent); text-decoration: none; font-weight: 700; }
.access-addr { font-size: 1.05rem !important; font-weight: 800 !important; }
.access-note {
    margin-top: 12px; color: var(--primary);
    font-weight: 800; font-size: 0.92rem;
}
.access-map {
    border-radius: var(--radius-md); overflow: hidden;
    min-height: 320px; box-shadow: var(--shadow-sm);
    border: 2px solid var(--primary-light);
}
.access-map iframe { width: 100%; height: 100%; min-height: 320px; }

/* ===========================================
   CONTACT
   =========================================== */
.contact { padding: 80px 0; background: var(--secondary-light); }
.contact-box {
    background: var(--white); max-width: 780px; margin: 0 auto;
    padding: 50px 40px; border-radius: var(--radius-lg);
    text-align: center; box-shadow: var(--shadow-lg);
}
.contact-box h2 {
    color: var(--text-main); font-size: 1.6rem; margin-bottom: 16px;
}
.contact-box > p { color: var(--text-light); font-weight: 500; margin-bottom: 32px; }
.contact-actions {
    display: flex; flex-direction: column; gap: 12px;
    align-items: center;
}
.contact-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; padding: 18px 32px; border-radius: 50px;
    font-weight: 800; font-size: 1.08rem; text-decoration: none;
    width: 100%; max-width: 380px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-btn:hover { transform: translateY(-3px); }
.contact-btn.btn-line { background: var(--line-color); color: #fff; box-shadow: 0 8px 20px rgba(6,199,85,0.25); }
.contact-btn.btn-tel { background: var(--bg-color); color: var(--text-main); border: 2px solid #ddd; }
.contact-btn.btn-fax {
    background: #f5f5f5; color: var(--text-light); border: 1px dashed #ccc;
    pointer-events: none; font-size: 0.95rem; padding: 14px;
}

/* ===========================================
   NEWS & BLOG ARCHIVE (news.html)
   =========================================== */
.news-list { display: flex; flex-direction: column; gap: 20px; }
.news-card {
    background: var(--white); border-radius: var(--radius-md);
    padding: 24px; box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}
.news-card:hover {
    transform: translateY(-3px); box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.news-link { text-decoration: none; color: inherit; display: block; }
.news-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.news-date { font-weight: 800; color: var(--text-light); font-size: 0.95rem; }
.news-tag {
    font-size: 0.75rem; font-weight: 800; padding: 4px 12px;
    border-radius: 50px; color: #fff;
}
.news-tag.info { background: var(--accent); }
.news-tag.diary { background: var(--line-color); }
.news-title { font-size: 1.2rem; color: var(--primary); margin-bottom: 10px; font-weight: 800; line-height: 1.4; }
.news-excerpt { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }

/* ===========================================
   INSTAGRAM SECTION
   =========================================== */
.instagram { padding: 80px 0; background: var(--white); }
.ig-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; margin-top: 40px;
}
.ig-grid.ig-reels-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 840px;
    margin: 40px auto 0;
}
@media (max-width: 600px) {
    .ig-grid.ig-reels-2 {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}
.ig-item {
    position: relative; border-radius: var(--radius-sm);
    overflow: hidden; aspect-ratio: 1;
    box-shadow: var(--shadow-sm); transition: transform 0.3s;
}
.ig-item:hover { transform: scale(1.05); z-index: 2; box-shadow: var(--shadow-lg); }
.ig-item img { width: 100%; height: 100%; object-fit: cover; }
.ig-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(135deg, rgba(240,148,51,0.9) 0%, rgba(230,104,60,0.9) 25%, rgba(220,39,67,0.9) 50%, rgba(204,35,102,0.9) 75%, rgba(188,24,136,0.9) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
    text-align: center;
}
.ig-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: transform 0.35s ease;
}
.ig-caption {
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.5;
    margin: 0;
    transform: translateY(15px);
    transition: transform 0.35s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ig-item:hover .ig-overlay {
    opacity: 1;
}
.ig-item:hover .ig-icon,
.ig-item:hover .ig-caption {
    transform: translateY(0);
}
.ig-btn-wrap { text-align: center; margin-top: 40px; }
.btn-ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff; padding: 18px 40px; border-radius: 50px;
    font-size: 1.1rem; font-weight: 800; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 20px rgba(220,39,67,0.3); transition: transform 0.2s;
}
.btn-ig:hover { transform: translateY(-3px); }

/* ===========================================
   FOOTER
   =========================================== */
footer {
    background: var(--text-main); color: #fff;
    text-align: center; padding: 50px 20px 100px;
}
.footer-corp { font-size: 0.92rem; font-weight: 700; opacity: 0.85; margin-bottom: 4px; }
.footer-name { font-size: 1.6rem; font-weight: 900; color: var(--primary); margin-bottom: 16px; }
.footer-addr { font-size: 0.88rem; opacity: 0.75; margin-bottom: 24px; line-height: 1.6; }
.footer-links {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 16px; margin-bottom: 24px;
}
.footer-links a {
    color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: 0.82rem; font-weight: 600;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-copy { font-size: 0.8rem; opacity: 0.5; }

/* ===========================================
   FLOATING CTA
   =========================================== */
.floating-cta {
    position: fixed; bottom: 0; left: 0; width: 100%;
    display: flex; z-index: 999; box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.float-btn {
    flex: 1; text-align: center; color: #fff; text-decoration: none;
    padding: 12px 8px; font-size: 0.78rem; font-weight: 700;
    transition: filter 0.2s;
}
.float-btn:hover { filter: brightness(0.92); }
.float-btn b { display: block; font-size: 1rem; font-weight: 900; margin-top: 2px; }
.line-float { background: var(--line-color); }
.phone-float { background: var(--accent); }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
    .portal-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Header & Nav */
    .hamburger { display: flex; }
    nav {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(255,253,247,0.98);
        backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
        display: flex; align-items: center; justify-content: center;
        opacity: 0; visibility: hidden; transform: translateY(-12px);
        transition: all 0.35s ease; z-index: 1005;
    }
    nav.active { opacity: 1; visibility: visible; transform: translateY(0); }
    nav ul {
        flex-direction: column; align-items: center; gap: 0;
    }
    nav ul li { width: 100%; text-align: center; }
    nav ul li a {
        display: block; padding: 18px 20px; font-size: 1.15rem;
        border-bottom: 1px dashed rgba(92,75,81,0.1);
    }
    nav ul li:last-child a { border-bottom: none; }
    nav ul li a.nav-cta {
        margin-top: 12px; display: inline-block; padding: 14px 40px;
    }

    /* Hero */
    .hero { min-height: 100vh; padding-top: 80px; padding-bottom: 40px; align-items: flex-end; }
    .hero-content { padding: 0 20px; }
    .hero-catch { font-size: 2.1rem; margin-bottom: 12px; }
    .hero-sub { font-size: 0.88rem; margin-bottom: 20px; line-height: 1.8; }
    .hero-overlay {
        background: linear-gradient(180deg,
            rgba(255,253,247,0) 0%,
            rgba(255,253,247,0.1) 30%,
            rgba(255,253,247,0.85) 60%,
            rgba(255,253,247,0.95) 100%);
    }
    .hero-badge { margin-bottom: 12px; }
    .hero-btn-group { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 15px 24px; font-size: 0.98rem; }
    .news-ticker { max-width: 100%; }

    /* Portal */
    .portal-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .portal-card { padding: 18px 8px 14px; }
    .portal-icon { font-size: 1.8rem; }
    .portal-card h3 { font-size: 0.82rem; }
    .portal-card p { font-size: 0.72rem; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-text h3 { font-size: 1.3rem; }
    .overview-box { padding: 24px; }
    .overview-item { flex-direction: column; gap: 4px; }
    .ov-label { min-width: auto; }

    /* Daily */
    .scroll-hint-mobile { display: block; }
    
    /* Features */
    .features-grid { grid-template-columns: 1fr; }

    /* Events */
    .events { clip-path: polygon(0 1.5%, 100% 0, 100% 98.5%, 0 100%); padding: 70px 0 80px; }
    .events-grid { grid-template-columns: 1fr; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr; }

    /* Price */
    .sim-box { padding: 24px; }
    .contact-box { padding: 30px 20px; }

    /* Access */
    .access-content { grid-template-columns: 1fr; }
    .access-map { min-height: 260px; }
    .access-map iframe { min-height: 260px; }

    /* Instagram */
    .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .btn-ig { width: 100%; justify-content: center; }

    /* Section spacing */
    .portal, .about, .features, .daily, .price, .faq, .access, .contact { padding: 60px 0; }
    .section-title { font-size: 1.6rem; }

    /* Contact */
    .contact-btn { max-width: 100%; font-size: 0.98rem; padding: 16px; }
}

@media (max-width: 480px) {
    .portal-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-catch { font-size: 1.9rem; }
}

/* ===========================================
   TEMPORARY PRICING
   =========================================== */
.temporary-pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.temporary-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 183, 3, 0.12) !important;
}
@media (max-width: 500px) {
    .temporary-pricing-card .price-divider {
        display: none !important;
    }
    .temporary-pricing-card {
        padding: 20px 15px !important;
    }
}
