/* =============================================
   グローバルライン - 明るいナチュラルテーマCSS
   テンプレート画像: 明るいクリーム/白基調 + 端に控えめな緑の葉
   ============================================= */

/* Google Fonts: @import を削除し HTML 側で <link rel="preconnect"> + <link rel="stylesheet"> に移行
   → CSS パース前の render-blocking を解消、TTFB・FCP を大幅改善 */

/* CSS Variables */
:root {
    --green-deep: #1e5e1a;
    --green-main: #2a7a24;
    --green-mid: #3a8a33;
    --green-light: #5aae52;
    --green-pale: #e8f5e3;
    --green-bg: #f0f7ed;
    --brown-dark: #3d2e1e;
    --brown-text: #4a3728;
    --cream: #fdfaf4;
    --cream-mid: #f8f2e8;
    --cream-dark: #f2ebe0;
    --gold: #c9a84c;
    --gold-bright: #e8c84a;
    --gold-bg: #fdf8e8;
    --orange-accent: #e67e22;
    --white: #ffffff;
    --text-main: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', sans-serif;
    color: var(--text-main);
    line-height: 1.8;
    background: var(--cream);
    overflow-x: hidden;
    position: relative;
}

/* =============================================
   GLOBAL BACKGROUND: 明るいクリーム
   ============================================= */

/* 非表示（旧レガシー用ダミー） */
.jungle-leaves-overlay { display: none; }

/* =============================================
   葉っぱコーナーフレーム装飾
   4つのコーナーに固定配置、pointer-events: none
   ============================================= */
.leaf-corner {
    position: fixed;
    z-index: 100;
    pointer-events: none;
    width: 180px;
    height: 180px;
    opacity: 0.85;
}

.leaf-corner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 左上（元画像そのまま） */
.leaf-corner-tl {
    top: 0;
    left: 0;
}

/* 右上（左右反転） */
.leaf-corner-tr {
    top: 0;
    right: 0;
    transform: scaleX(-1);
}

/* 左下（上下反転） */
.leaf-corner-bl {
    bottom: 0;
    left: 0;
    transform: scaleY(-1);
}

/* 右下（左右＋上下反転） */
.leaf-corner-br {
    bottom: 0;
    right: 0;
    transform: scale(-1, -1);
}

/* 旧 leaf-decor 互換（非表示） */
.leaf-decor { display: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

/* =============================================
   HEADER / NAVIGATION
   明るいグリーンヘッダー
   ============================================= */
.jt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(42,122,36,0.1);
    transition: all 0.3s ease;
}

.jt-header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.jt-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jt-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--green-deep);
}

.jt-logo-icon {
    font-size: 1.5rem;
}

.jt-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.jt-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.jt-nav a:hover {
    color: var(--green-main);
}

.jt-nav-cta {
    background: var(--green-main) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    box-shadow: 0 2px 8px rgba(42,122,36,0.25);
    transition: all 0.3s ease;
}

.jt-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42,122,36,0.35);
    background: var(--green-mid) !important;
}

/* =============================================
   DROPDOWN MENU (体験型イベント一覧)
   ============================================= */
.jt-nav-dropdown {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.jt-nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.jt-nav-dropdown > a::after {
    content: '▾';
    font-size: 0.65rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.jt-nav-dropdown:hover > a::after,
.jt-nav-dropdown.open > a::after {
    transform: rotate(180deg);
}

.jt-dropdown-menu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #fff;
    backdrop-filter: blur(15px);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(42,122,36,0.12);
    padding: 0.5rem 0;
    padding-top: 0.8rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
}

.jt-nav-dropdown:hover .jt-dropdown-menu,
.jt-nav-dropdown.open .jt-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%);
}

.jt-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: var(--text-main) !important;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.jt-dropdown-menu a:hover {
    background: var(--green-pale);
    color: var(--green-main) !important;
}

.jt-dropdown-menu .jt-dd-icon {
    font-size: 1.1rem;
    width: 1.4rem;
    text-align: center;
    flex-shrink: 0;
}

.jt-dropdown-menu .jt-dd-divider {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 0.3rem 0;
}

/* Mobile Menu */
.jt-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.jt-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-deep);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* =============================================
   PAGE HERO SECTION (for subpages)
   明るいグリーングラデーション
   ============================================= */
.jt-page-hero {
    position: relative;
    padding: 120px 0 60px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2a7a24 0%, #3a9a33 40%, #4aaa44 100%);
}

.jt-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 40%);
    pointer-events: none;
}

/* Decorative leaves at edges of page hero */
.jt-page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='150' height='200' viewBox='0 0 150 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-20 20 Q30 50 20 100 Q10 150 -20 190' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='25'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='150' height='200' viewBox='0 0 150 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M170 10 Q120 40 130 100 Q140 160 170 200' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='25'/%3E%3C/svg%3E");
    background-position: left top, right top;
    background-repeat: no-repeat;
    background-size: 120px 100%, 120px 100%;
    pointer-events: none;
}

.jt-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jt-page-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.jt-page-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.8;
}

/* =============================================
   MAIN HERO SECTION (Homepage)
   明るい写真ベース
   ============================================= */
.jt-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
    overflow: hidden;
}

.jt-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.jt-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    /* 明るくする */
    filter: brightness(1.1);
    /* ケンバーンズ効果（ズーム＋パン） */
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.08) translate(-1.5%, -1%);
    }
    100% {
        transform: scale(1.12) translate(1%, -2%);
    }
}

.jt-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* 軽い半透明 - 明るさを維持 */
    background:
        linear-gradient(180deg,
            rgba(20,60,18,0.45) 0%,
            rgba(30,70,28,0.3) 30%,
            rgba(30,70,28,0.25) 50%,
            rgba(30,70,28,0.35) 75%,
            rgba(20,60,18,0.55) 100%
        );
}

.jt-hero-overlay::before {
    content: none;
}

.jt-hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.jt-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    text-align: center;
    color: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jt-hero-label {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    opacity: 0.95;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.jt-hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    letter-spacing: 0.05em;
}

.jt-hero-title span {
    display: block;
    font-size: 4.2rem;
}

.jt-hero-company {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* レポートギャラリー */
.jt-report-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.jt-report-photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.jt-report-photo:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.jt-report-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.jt-report-photo:hover img {
    transform: scale(1.05);
}

.jt-report-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2.5rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.jt-report-photo-tag {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.jt-report-photo-caption {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .jt-report-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .jt-report-photo {
        aspect-ratio: 16/10;
    }
}

/* レポートカード（記事連動） */
.jt-report-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.jt-report-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.jt-report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.jt-report-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #e8f5e3;
}

.jt-report-card-img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #e8f5e3, #c8e6c0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.jt-report-card-body {
    padding: 1.2rem;
}

.jt-report-card-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.4rem;
}

.jt-report-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-brown, #3d2e1e);
    line-height: 1.5;
    margin: 0;
}

.jt-solution-bridge {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-main, #2a7a24);
    padding: 0.5rem 1rem 0;
    margin: 0 auto;
    max-width: 700px;
    position: relative;
}

.jt-solution-bridge::before {
    content: '▼';
    display: block;
    font-size: 1.5rem;
    color: var(--green-main, #2a7a24);
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.jt-hero-desc {
    font-size: 1.05rem;
    line-height: 2;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.jt-hero-clients {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.jt-hero-client-tag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.82rem;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}

/* Stats Bar */
.jt-hero-stats {
    position: relative;
    z-index: 3;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.2);
}

.jt-hero-stats-inner {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.jt-hero-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.3rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
}

.jt-hero-stat:last-child {
    border-right: none;
}

.jt-hero-stat-icon {
    font-size: 1.8rem;
    opacity: 0.9;
}

.jt-hero-stat-text {
    display: flex;
    flex-direction: column;
}

.jt-hero-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.85;
    letter-spacing: 0.05em;
}

.jt-hero-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold-bright);
    line-height: 1.1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.jt-hero-stat-number small {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-left: 0.1rem;
}

/* =============================================
   CONTENT SECTIONS
   白〜クリーム基調のセクション
   ============================================= */
.jt-section {
    position: relative;
    padding: 4rem 1.5rem;
    background: var(--cream);
}

/* 交互にほんの少し色を変えて区別 */
.jt-section:nth-child(even) {
    background: var(--white);
}

.jt-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.jt-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brown-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.jt-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-main), var(--green-light));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.jt-section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Section with container */
.jt-glass-section {
    position: relative;
    padding: 4rem 1.5rem;
    background: var(--cream);
}

.jt-glass-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(42,122,36,0.08);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
}

/* =============================================
   CARDS
   ============================================= */
.jt-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.jt-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.jt-card-body {
    padding: 1.5rem;
}

.jt-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.8rem;
}

.jt-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Glass Card → 明るいグリーンカード */
.jt-glass-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(42,122,36,0.1);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.jt-glass-card:hover {
    background: var(--green-bg);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.jt-glass-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.jt-glass-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.jt-glass-card .jt-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
}

/* White content card (used inside sections) */
.jt-white-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.jt-white-card h3 {
    color: var(--green-main);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.jt-white-card h4 {
    color: var(--green-mid);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.jt-white-card p {
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.jt-white-card ul {
    list-style: disc;
    margin-left: 1.5rem;
    line-height: 2;
    color: var(--text-main);
}

/* =============================================
   GRIDS
   ============================================= */
.jt-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.jt-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.jt-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* =============================================
   EVENT CARDS (with images)
   ============================================= */
.jt-event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.jt-event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.jt-event-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.jt-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.jt-event-card:hover .jt-event-img img {
    transform: scale(1.08);
}

.jt-event-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.jt-event-tag.popular { background: #e74c3c; color: var(--white); }
.jt-event-tag.impact { background: #3498db; color: var(--white); }
.jt-event-tag.food { background: #e67e22; color: var(--white); }
.jt-event-tag.relax { background: #9b59b6; color: var(--white); }
.jt-event-tag.education { background: #1abc9c; color: var(--white); }
.jt-event-tag.budget { background: #27ae60; color: var(--white); }
.jt-event-tag.coming-soon { background: rgba(0,0,0,0.5); color: var(--white); }
.jt-event-tag.recommended { background: var(--orange-accent); color: var(--white); }

.jt-event-body {
    padding: 1.5rem;
}

.jt-event-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.6rem;
}

.jt-event-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.jt-event-link {
    display: inline-block;
    color: var(--green-main);
    font-weight: 600;
    font-size: 0.9rem;
}

.jt-event-link:hover {
    color: var(--green-deep);
}

/* Event detail info box */
.jt-event-info {
    background: var(--green-pale);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.jt-event-info div {
    margin-bottom: 0.3rem;
}

.jt-event-info div:last-child {
    margin-bottom: 0;
}

.jt-stars {
    color: var(--gold-bright);
}

/* =============================================
   REASON CARDS (with images)
   ============================================= */
.jt-reason-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.jt-reason-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.jt-reason-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.jt-reason-img img,
.jt-reason-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jt-reason-img img {
    animation: kenburns-card 8s ease-in-out infinite alternate;
}

@keyframes kenburns-card {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.15) translate(-3%, -2%);
    }
    100% {
        transform: scale(1.25) translate(2%, -4%);
    }
}

.jt-reason-img iframe {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.jt-reason-card:hover .jt-reason-img img,
.jt-reason-card:hover .jt-reason-img video {
    transform: scale(1.08);
}

.jt-reason-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green-main);
    color: var(--white);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.jt-reason-body {
    padding: 1.5rem;
}

.jt-reason-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.8rem;
}

.jt-reason-body ul {
    list-style: none;
    padding: 0;
}

.jt-reason-body li {
    position: relative;
    padding-left: 1.3rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.jt-reason-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-main);
    font-weight: 700;
}

/* =============================================
   STAT BOXES
   明るいグリーンカード
   ============================================= */
.jt-stat-box {
    background: var(--white);
    border: 1px solid rgba(42,122,36,0.12);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.jt-stat-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.jt-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--green-main);
    display: block;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.jt-stat-number small {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.jt-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* =============================================
   CTA SECTION
   グリーン背景で統一感
   ============================================= */
.jt-cta {
    position: relative;
    padding: 5rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #2a7a24 0%, #3a9a33 50%, #4aaa44 100%);
}

.jt-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='150' height='200' viewBox='0 0 150 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-20 20 Q30 50 20 100 Q10 150 -20 190' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='25'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='150' height='200' viewBox='0 0 150 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M170 10 Q120 40 130 100 Q140 160 170 200' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='25'/%3E%3C/svg%3E");
    background-position: left top, right top;
    background-repeat: no-repeat;
    background-size: 120px 100%, 120px 100%;
    pointer-events: none;
}

.jt-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 3.5rem 2.5rem;
}

.jt-cta h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.jt-cta p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.jt-cta-btn {
    display: inline-block;
    background: var(--gold-bright);
    color: var(--brown-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(200,168,76,0.4);
    transition: all 0.3s ease;
}

.jt-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(200,168,76,0.5);
    background: #f0d54e;
}

.jt-cta-btn-secondary {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.jt-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.jt-cta-sub {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.jt-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ダークグリーンフッター
   ============================================= */
.jt-footer {
    position: relative;
    background: #1a3a18;
    padding-top: 3rem;
}

.jt-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.jt-footer h4 {
    color: var(--gold-bright);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.jt-footer p {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    line-height: 1.7;
}

.jt-footer ul {
    list-style: none;
}

.jt-footer li {
    margin-bottom: 0.5rem;
}

.jt-footer li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
}

.jt-footer li a:hover {
    color: var(--gold-bright);
}

.jt-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.2rem 2rem;
    text-align: center;
}

.jt-footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* =============================================
   ACCORDION (FAQ)
   ============================================= */
/* details/summary ベースのアコーディオン（JS不要） */
details.jt-accordion-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    margin-bottom: 0.8rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

summary.jt-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
    list-style: none; /* デフォルトの▶マーカーを非表示 */
}

/* Safari/WebKit のデフォルトマーカー削除 */
summary.jt-accordion-header::-webkit-details-marker {
    display: none;
}

summary.jt-accordion-header:hover {
    background: var(--green-bg);
}

.jt-accordion-icon {
    font-size: 0.8rem;
    color: var(--green-main);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

details.jt-accordion-item[open] .jt-accordion-icon {
    transform: rotate(180deg);
}

/* 開閉アニメーション */
details.jt-accordion-item .jt-accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    animation: faq-slide-down 0.3s ease;
}

@keyframes faq-slide-down {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   TABLE (Company Info)
   ============================================= */
.jt-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.jt-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
    color: var(--text-main);
    vertical-align: top;
}

.jt-table tr:last-child td {
    border-bottom: none;
}

.jt-table td:first-child {
    width: 30%;
    font-weight: 600;
    color: var(--green-main);
    background: var(--green-pale);
}

/* =============================================
   FORM SECTION
   ============================================= */
.jt-form-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.04);
}

.jt-info-box {
    background: var(--green-pale);
    border: 1px solid rgba(42,122,36,0.12);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.jt-info-box h3 {
    color: var(--green-deep);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.jt-info-box p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.jt-info-box a {
    color: var(--green-main);
    font-weight: 700;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.jt-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jt-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jt-text-center { text-align: center; }
.jt-text-white { color: var(--white); }

.jt-mb-1 { margin-bottom: 0.5rem; }
.jt-mb-2 { margin-bottom: 1rem; }
.jt-mb-3 { margin-bottom: 1.5rem; }
.jt-mb-4 { margin-bottom: 2rem; }
.jt-mb-5 { margin-bottom: 3rem; }
.jt-mt-3 { margin-top: 1.5rem; }
.jt-mt-4 { margin-top: 2rem; }
.jt-mt-5 { margin-top: 3rem; }

.jt-badge {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.3rem;
}

.jt-badge-primary { background: var(--green-main); color: var(--white); }
.jt-badge-accent { background: var(--orange-accent); color: var(--white); }
.jt-badge-secondary { background: rgba(42,122,36,0.1); color: var(--green-deep); }
.jt-badge-gold { background: var(--gold-bright); color: var(--brown-dark); }

/* FAQ category title */
.jt-faq-category {
    text-align: center;
    color: var(--green-deep);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.jt-back-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-main);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(42,122,36,0.3);
}

.jt-back-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.jt-back-top:hover {
    background: var(--green-mid);
    transform: translateY(-3px);
}

/* =============================================
   FLOATING CTA (Mobile)
   ============================================= */
.jt-floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--green-main);
    padding: 0.8rem;
    text-align: center;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}

.jt-floating-cta a {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

/* =============================================
   FADE IN ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
.fade-in-delay-6 { transition-delay: 0.6s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .leaf-corner {
        width: 100px;
        height: 100px;
        opacity: 0.65;
    }

    .jt-mobile-toggle {
        display: flex;
    }

    .jt-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        border-top: 1px solid rgba(42,122,36,0.1);
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .jt-nav.active {
        display: flex;
    }

    .jt-nav a {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        width: 100%;
        text-align: center;
        color: var(--text-main);
    }

    .jt-nav-cta {
        margin: 0.5rem 1rem;
        text-align: center;
    }

    /* Dropdown mobile */
    .jt-nav-dropdown > a::after {
        content: '▾';
        margin-left: 0.3rem;
    }

    .jt-dropdown-menu {
        position: static;
        transform: none;
        min-width: auto;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--green-pale);
        padding: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
    }

    .jt-nav-dropdown.open .jt-dropdown-menu {
        display: block;
        transform: none;
    }

    .jt-dropdown-menu a {
        padding: 0.6rem 1.5rem;
        font-size: 0.82rem !important;
        justify-content: center;
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }

    .jt-dropdown-menu .jt-dd-divider {
        display: none;
    }

    .jt-hero-title {
        font-size: 2.2rem;
    }

    .jt-hero-title span {
        font-size: 2.5rem;
    }

    .jt-hero-stats-inner {
        grid-template-columns: 1fr;
    }

    .jt-hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1rem;
    }

    .jt-hero-stat:last-child {
        border-bottom: none;
    }

    .jt-grid-2,
    .jt-grid-3,
    .jt-grid-4 {
        grid-template-columns: 1fr;
    }

    .jt-section-title {
        font-size: 1.6rem;
    }

    .jt-page-hero h1 {
        font-size: 2rem;
    }

    .jt-cta h2 {
        font-size: 1.5rem;
    }

    .jt-glass-container {
        padding: 2rem 1.5rem;
    }

    .jt-footer-inner {
        grid-template-columns: 1fr;
    }

    .jt-floating-cta {
        display: block;
    }

    .jt-back-top {
        bottom: 70px;
    }

    .jt-white-card {
        padding: 1.5rem;
    }

    .jt-table td:first-child {
        width: 35%;
    }
}

@media (max-width: 480px) {
    .jt-hero-title {
        font-size: 1.8rem;
    }

    .jt-hero-title span {
        font-size: 2rem;
    }

    .jt-hero-label {
        font-size: 0.9rem;
    }

    .jt-section {
        padding: 3rem 1rem;
    }

    .jt-cta-inner {
        padding: 2rem 1.5rem;
    }
}
