body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.thumbnail {
    width: 80%;
    max-width: 600px;
    cursor: pointer;
}

.lp {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}


.lp2 {
  position: absolute;
  top: 500px;
  left: 0;
  width: 100%;
  object-fit: cover; /* 画像を親要素に合わせて調整 */
}


.hidden-content {
  display: none;
  margin-top: 10px;
}

.image-container {
  display: block;
  cursor: pointer;
}



.content {
    display: none; /* ボタンクリックまでは非表示 */
    margin-top: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* 以下ラジオボタン */

.radio-group {
    display: flex;
    justify-content: center;

}


.radio-label {
    display: block;
    width: 90%;
    padding: 15px;
    margin-bottom: 5px;
    background-color: #f9f9f9;
    border: 2px solid #383838;
    border-radius: 5px;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.radio-label:hover {
    border-color: #888;
}
input[type="radio"] {
    display: none;
}
input[type="radio"]:checked + .radio-label {
    background-color: #a7daff;
    border-color: #000000;
}


.marker {
    background-color: yellow;
  }


.cta-button {
    margin: 10px;
    width: 90%;
    cursor: pointer;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

h1 {
    text-align: center;
}
  
  .animated-h1 {
    font-size: 1.5em;
    animation: slideLeftRight 2s infinite;
  }
  
  @keyframes slideLeftRight {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(20px);
    }
    100% {
      transform: translateX(0);
    }
  }

  .animated-h2 {
    font-size:26px;
    color: #000;
    animation: colorChange 3s infinite;
  }
  
  @keyframes colorChange {
    0% {
      color: #000;
    }
    50% {
      color: #ff0000;
    }
    100% {
      color: #000;
    }
  }

  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .popup-content {
    background: rgb(228, 228, 228);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
  }
  
  .popup-overlay.show {
    display: flex;
  }
  
  .popup-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
  }
  
  button {
    padding: 10px 20px;
    background-color: #ff9900;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #ff6600;
  }
  
        
        .cta-banner {
          position: fixed;
          bottom: -200px; /* 初期は画面外に隠す（画像の高さに応じて調整） */
          left: 0;
          right: 0;
          text-align: center;
          transition: bottom 0.3s ease-in-out; /* アニメーションで表示 */
          z-index: 999;
        }
        
        .cta-banner img {
          max-width: 800px;
          height: auto;
          border: none;
        }
        
        .cta-banner.show {
          bottom: 0; /* 表示時は下部に固定 */
        }
        
        .image-btn {
          position: relative;
          display: inline-block;
          width: 100%; /* 親要素に応じたサイズ */
          max-width: 800px; /* 最大幅を指定（任意） */
      }

      /* 背景画像 */
      .image-btn img {
          height: auto;
      }

      /* 重ねる画像 */
      .lp-btn {
          position: absolute;
          top: 68%; /* 上から50%の位置に */
          left: 50%; /* 左から50%の位置に */
          transform: translate(-50%, -50%); /* 画像の中央に配置 */
          width: 80%; /* ボタンのサイズを調整 */
          cursor: pointer; /* カーソルをポインタに変更 */
      }

      /* レスポンシブ対応 */
      @media (max-width: 768px) {
          .lp-btn {
              width: 80%; /* スマホではボタンを大きめに */
          }
      }
