/* 基本設定 */
body {
  font-family:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  color: #333;
  letter-spacing: 0.05em;
}

/* ヒーローセクション */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* パララックス効果 */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* タイトル周りの装飾 */
.main-copy {
  font-weight: 300;
  line-height: 1.4;
  color: #1a1a1a;
}

.sub-copy {
  color: #555;
  line-height: 1.8;
}

/* セクション共通 */
.section-title {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1rem;
  display: block;
}

.section-heading {
  font-weight: bold;
  margin-bottom: 3rem;
  color: #222;
}

/* 特徴カード */
.feature-card {
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 12px;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

/* フローティングボタン */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-line {
  background-color: #06c755;
  color: white;
}

.btn-line:hover {
  background-color: #05a044;
  color: white;
}

.gsap-fade-up {
  will-change: transform, opacity;
}

/* 洗練されたすりガラス風ボタン */
.btn-elegant {
  background: rgba(26, 26, 26, 0.85); /* 少し透ける黒 */
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px); /* すりガラス効果 */
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-elegant:hover {
  background: #fff;
  color: #1a1a1a;
  transform: translateY(-4px); /* フワッと浮く */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* 影が広がる */
  border: 1px solid #fff;
}

/* アニメーションの処理を軽くして滑らかにするおまじない */
.gsap-card,
.gsap-fade-up {
  will-change: transform, opacity;
}
