@charset "UTF-8";
		.clear {
			clear: both;
		}

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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

		.section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .section-title.white {
            color: white;
        }

/* nav */
        #nav_grouptrips {
			background: rgba(255, 255, 255, 0.7);
			backdrop-filter: blur(10px);
			padding-top: 1em;
			padding-bottom: 1em;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
			position: sticky;
			top: 0;
        }

		#nav_grouptrips .container {
			width: 100%;
			display: flex;
			flex-direction: row; 
		  justify-content: space-between; 
		  align-items: center; 
		}

       .nav-links {
			display: flex;
		   flex-direction: row;
		   flex-wrap: wrap; 
			list-style: none;
			gap: 2rem;        
			justify-content: center;
			align-items: center;    
			padding: 0; 
			margin: 0; 
		}


        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 800;
            transition: color 0.3s ease;
			font-size: 0.8em;
        }

        .nav-links a:hover {
            color: #2196f3;
        }

		.lang-switch a {
		  text-decoration: none;
		  color: #333;
		  font-size: 0.8em;
		  font-weight: 600;
		  transition: color 0.3s ease;
		}

		.lang-switch a:hover {
		  color: #2196f3;
		}

        /* Hero Section */
        .hero {
            height: 60vh;
            background: linear-gradient(
  rgba(140, 95, 60, 0.1),  
  rgba(92, 60, 35, 0.4)    
), 
url('https://www.his-usa.com/destination-japan/info/images/group-japan-top.jpg');
			background-size: cover;
			background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:white;stop-opacity:0.1" /><stop offset="100%" style="stop-color:white;stop-opacity:0" /></radialGradient></defs><circle cx="20" cy="20" r="2" fill="url(%23grad)"/><circle cx="80" cy="40" r="1" fill="url(%23grad)"/><circle cx="40" cy="80" r="1.5" fill="url(%23grad)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-content {
            color: white;
            text-align: center;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.5s;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.7s;
        }

        .network-stats {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.9s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ee5a52);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 10px 30px rgba(238, 90, 82, 0.4);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 1.1s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(238, 90, 82, 0.6);
        }

        /* Stats Section */
        .stats {
            padding: 5rem 0;
            background: #f8f9fa;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #2196f3;
            margin-bottom: 0.5rem;
        }

        .case-studies {
            display: grid;
             grid-template-columns: repeat(2, 1fr); 
            gap: 2rem;
            margin-top: 3rem;
			width: 100%; 
			 margin-left: auto;
    margin-right: auto;
        }

        .case-card {
			position: relative;
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-left: 4px solid #2196f3;
			overflow: hidden;
        }
		.case-card em {
			font-size: 1.2em;
		}
		.case-card p, h4 {
			text-align: right;
			font-size: 0.8em;
		}
		.case-card::before {
			content: "“";
			position: absolute;
			top: 0; 
			left: 1rem;
			font-size: 5rem; 
			color: rgba(0,0,0,0.08);
			pointer-events: none; 
			z-index: 0;
		}
		.case-card::after {
			content: "”";  
			position: absolute;
			bottom: 3rem;
			right: 1rem;
			font-size: 5rem;
			color: rgba(0,0,0,0.08);
			pointer-events: none;
			z-index: 0;
		}


/* Why HIS Section */
        .why-his {
            padding: 5rem 0;
            background: linear-gradient(135deg, #2C55D0 0%, #4876F3 100%);
            color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.2);
        }

        .feature-icon img {
			width: 48px;
            margin-bottom: 1rem;
        }

/* Japan Seasons */
        #japan-seasons {
            padding: 5rem 0;
            background: #f8f9fa;
        }

        .seasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
			margin-top: 2rem;
        }

        .season-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .season-card:hover {
            transform: scale(1.05);
        }

        .season-header img {
            width: 100%;
            background: linear-gradient(45deg, #2C55D0, #4876F3);
        }

        .season-content {
            padding: 1.5rem;
        }
		.other-charms {
			margin-top: 3rem; 
			text-align: center; 
			background: white; 
			padding: 3rem; 
			border-radius: 20px;
		}
		.other-charms strong {
			font-size: 1.2em;
		}
		.icn-mini {
			width: 60px;
			height: auto;
		}


/* Group Category */
		#types {
			padding: 5rem 0;
            background: linear-gradient(135deg, #3B6FF0 0%, #6A97FF 100%);

            color: white;
}

/* Model Plans */
        .model-plans {
            padding: 5rem 0;
        }

        .accordion {
            margin-top: 2rem;
        }

        .accordion-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 1rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .accordion-header {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(45deg, #2C55D0, #4876F3);
            color: white;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: linear-gradient(45deg, #2C55D0, #4876F3);
        }

        .accordion-content {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .accordion-content.active {
            padding: 1.5rem;
            max-height: 200px;
        }

        .price-tag {
            background: #e74c3c;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: bold;
        }

/* Process */
        .process {
            padding: 5rem 0;
            background: #f8f9fa;
        }

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

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #2C55D0, #4876F3);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            margin: 0 auto 1rem;
            box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
        }

        /* Final CTA */
        .final-cta {
            padding: 5rem 0;
            background: linear-gradient(
  135deg,
  rgba(60, 140, 220, 0.8) 0%,
  rgba(0, 180, 220, 0.8) 100%
);

            color: white;
            text-align: center;
        }

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

        .cta-secondary {
			
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cta-secondary:hover {
            background: white;
            color: #4facfe;
        }

		.cta-secondary_dark {
			display: inline-block;
			margin-top: 2em;
            background: transparent;
            border: 2px solid #333;
            color: #333;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cta-secondary_dark:hover {
            background: #6699ff;
            color: #FFF;
			border: 2px solid #EEE;
        }

	


 @media (max-width: 768px) {
	 .container p {
		 font-size: 1.2em;
	 }
	 
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }


        section {
            scroll-margin-top: 100px;
        }

		.section-title {
            font-size: 2rem;
            margin-bottom: 3rem;
        }

		 .case-studies {
        grid-template-columns: 1fr;
    }
		.process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

}