@charset "UTF-8";
/*
Theme Name: Emanon Premium child
Theme URI: https://wp-emanon.jp/emanon-premium/
Author: 株式会社イノ・コード
Author URI: https://innocord.co.jp/
Description: Emanon Premiumnの子テーマです。
Template: emanon-premium
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:one-column, two-columns, three-columns, left-sidebar, right-sidebar, theme-options
*/

/* === Unix Tokyo Inspired Taste of the Wild JAPAN === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0b0b0b;
  color: #f0f0f0;
  font-family: 'Helvetica Neue', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.full-height {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Hero Section */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
}

.hero-text {
  text-align: center;
  z-index: 2;
}
.hero-text h1.headline {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
}
.hero-text p.subline {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #ddd;
}

/* Section */
.section {
  padding: 120px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 600;
  color: #f7f7f7;
}

.philosophy p,
.ingredients p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
}

.product-gallery {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.product-gallery img {
  max-width: 300px;
  border-radius: 12px;
  transition: transform 0.5s ease;
}
.product-gallery img:hover {
  transform: scale(1.05);
}

/* Review Carousel */
.review-slider {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
}
.review {
  flex: 0 0 auto;
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  scroll-snap-align: center;
  min-width: 280px;
  color: #eee;
  font-size: 1rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  font-size: 1rem;
  color: #0b0b0b;
  background-color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: #eaeaea;
}

/* Footer */
.footer {
  background-color: #0a0a0a;
  padding: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}

/* Custom Cursor */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 10000;
}
