/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }
  
  /* スワイパーコンテナのスタイル */
  .swiper {
    width: 100%;
    height: 100vh; /* ビューポート全体の高さ */
    position: relative;
  }
  
  /* 各スライドのスタイル */
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #f8f8f8;
    overflow: hidden;
  }
  
  /* スライドコンテンツのスタイル */
  .slide-content {
    width: 90%;
    max-width: 500px;
    padding: 20px;
  }
  
  .slide-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .slide-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #666;
  }
  
  .slide-content img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* CTAボタンのスタイル */
  .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .cta-button:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* 固定CTAのスタイル */
  .fixed-cta {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
  
  /* スワイプガイドのスタイル */
  .swipe-guide {
    position: absolute;
    bottom: 100px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    z-index: 10;
    animation: bounce 2s infinite;
  }
  
  .swipe-guide .arrow {
    margin-top: 10px;
    width: 30px;
    height: 30px;
    border-top: 3px solid #666;
    border-right: 3px solid #666;
    transform: rotate(45deg);
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  /* ページネーションのカスタマイズ */
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    opacity: 0.6;
  }
  
  .swiper-pagination-bullet-active {
    background-color: #ff6b6b;
    opacity: 1;
  }
  
  /* 各スライドの背景色 */
  #slide1 {
    background-color: #f9f9ff;
  }
  
  #slide2 {
    background-color: #f0f8ff;
  }
  
  #slide3 {
    background-color: #fff8f0;
  }
  
  #slide4 {
    background-color: #f0fff8;
  }
  
  /* レスポンシブスタイル */
  @media (max-width: 768px) {
    .slide-content h1 {
      font-size: 1.8rem;
    }
    
    .slide-content h2 {
      font-size: 1.5rem;
    }
    
    .slide-content p {
      font-size: 1rem;
    }
    
    .cta-button {
      padding: 12px 24px;
      font-size: 1rem;
    }
  }
  