/* ==========================================
   Base Styles & Variables
   ========================================== */
:root {
  --bg-color: #FFFFFA;
  --card-bg: rgba(255, 255, 255, 0.03);
  --accent-color: #19CC00;
  --accent-hover: #19CC0a;
  --text-main: #403F3C;
  --text-sub: #86868b;
  --border-color: rgba(255, 255, 255, 0.1);
  --header-bg: rgba(255, 255, 250, 0.8);
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ・社名 */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
}

.logo {
  width: 24px;
  height: 24px;
  stroke: #19CC00;
}

.company-name {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* ナビゲーションメニュー */
.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--text-main);
}

/* ボタン */
.btn-primary-sm {
  background-color: var(--accent-color);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.btn-primary-sm:hover {
  background-color: var(--accent-hover);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  padding-top: 70px;
  padding-bottom: 40px;
  text-align: center;
  overflow: hidden;
}

/* 左右2列を中央寄せで管理するコンテナ */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-content {
  flex: 1;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.badge {
  display: inline-block;
  color: #1DF000;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  background: #a1a1a6;
  /*background: linear-gradient(180deg, #ffffff 0%, #a1a1a6 100%);*/
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-sub);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.btn-secondary {
  color: #1DF000;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.btn-secondary:hover {
  text-decoration: underline;
}

/* 商品イメージのダミーエリア */
.hero-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-height: 1000px;
}

/*
.product-image-placeholder {
  position: relative;
  width: 100%;
  height: 450px;
  background: radial-gradient(circle at center, #FFFFFA 0%, #FFFFFA 70%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
*/

/*
.placeholder-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--accent-color);
  filter: blur(100px);
  opacity: 0.3;
}
*/

/* 右側へ大きく迫り出す画像 */
.product-image {
  /* 幅をコンテナより大きく設定（130%〜150%程度）して右側に突き出させる */
  width: 150%;
  max-width: none; /* 親要素の幅制限を解除 */
  height: auto;
  display: block;
  /* 必要に応じて少し右にオフセットさせたり、ドロップシャドウを足したりできます */
  /*filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));*/
  /*transform: translateX(10px); */
}

.placeholder-text {
  position: relative;
  color: var(--text-sub);
  font-size: 1.2rem;
  letter-spacing: 4px;
  font-weight: 600;
}

/* ==========================================
   Features Section
   ========================================== */
/*
.features {
  padding: 100px 24px;
  border-top: 1px solid var(--border-color);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}
*/

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-sub);
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.05rem;
}

/*
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-sub);
  font-size: 0.95rem;
  line-height: 1.6;
}
*/

/* ==========================================
   Highlights Horizontal Slider
   ========================================== */

.features-section {
  padding: 80px 0px 40px 40px;
  background-color: var(--bg-color);
  overflow: hidden; /* 横スクロールバーのハミ出し防止 */
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 32px auto;
  padding: 0 24px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
}

/* スライドの親コンテナ */
.slider-container {
  display: flex;
  gap: 24px;
  /* 左側の余白はコンテナに合わせ、右側は画面端までスクロールできるように設定 */
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px)) 40px max(24px, calc((100vw - 1200px) / 2 + 24px));
  
  /* 横スクロールの設定 */
  overflow-x: auto;
  scroll-snap-type: x mandatory; /* ピタッとカードの位置で止まる設定 */
  scroll-behavior: smooth;
  
  /* スクロールバーを非表示にする（Mac/Windows/iOS） */
  -ms-overflow-style: none;  /* IE / Edge */
  scrollbar-width: none;  /* Firefox */
}

.slider-container::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}

/* 各スライドカード */
.slide-card {
  /* 画面幅に応じてカードの横幅を決定（右側のカードがチラ見えする絶妙な幅） */
  flex: 0 0 clamp(300px, 80vw, 880px);
  height: 500px;
  background-color: #f5f5f7; /* Apple風の薄いグレー背景（ダークモード時は #1c1c1e など） */
  border-radius: 28px; /* 角丸 */
  padding: 48px;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  
  /* スクロール停止位置の設定 */
  scroll-snap-align: start;
}

/* カード左側のテキスト */
.card-text {
  max-width: 320px;
  z-index: 2;
}

.card-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #1d1d1f;
}

.card-text p {
  font-size: 1rem;
  color: #86868b;
  line-height: 1.5;
}

/* カード右側の画像エリア */
.card-image-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  
  display: grid;
  place-items: center;
}

.card-image {
  max-width: 100%;
}

.card-image-offset {
  max-width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-53%);
}

/* レスポンシブ対応（スマホ時） */
@media (max-width: 768px) {
  .slide-card {
    flex-direction: column;
    justify-content: flex-start;
    height: 480px;
    padding: 32px 24px;
  }
  
  .card-text {
    max-width: 100%;
    margin-bottom: 24px;
  }
  
  .card-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
  }
  
  .card-image {
    max-height: 100%;
    width: auto;
    object-fit: contain;
  }
  
  .card-image-offset {
    max-width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-25%);
  }
}
*/

/* ==========================================
   Footer
   ========================================== */
.footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--border-color);
  color: var(--text-sub);
  font-size: 0.85rem;
}

/* レスポンシブ対応 (スマホ向け) */
@media (max-width: 768px) {
  .nav-menu {
    display: none; /* シンプルにするためスマホではナビを非表示 */
  }
  
  .product-image-placeholder {
    height: 280px;
  }
}