/* ------------------------------------全体------------------------------------- */
/* 全体 */
#LP .wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

#LP * {
  margin: 0;
  padding: 0;
}

#LP .clear {
  clear: both;
}

#LP img {
  display: block; 
  width: 100%;
  height: auto;
}


/* ------------------------------------button部分------------------------------------- */

/* button */
#LP .image-button-container {
  position: relative; /* 親にrelativeを付けるのがポイント！ */
  width: 100%;
  max-width: 900px;
 /*  aspect-ratio: 900 / 1090;/* 画像の比率に合わせて自動的に高さ調整 */
  margin: 0 auto;
}

#LP .button-background {
  object-fit: cover;
  display: block;
  width: 100%; /* ←追加してください */
}

#LP .btn {
  position: absolute; /* ボタンを重ねる */
  width: 50%;
  height: 50%;
  bottom: 10%; /* 下から20px */
  left: 50%; /* 横方向の中央基準 */
  transform: translateX(-50%); /* 横方向中央揃え */
  border: none; /* ボタンの枠を消す */
  background: none; /* 背景色を消す */
  cursor: pointer; /* マウスを乗せたら手マークに */
  overflow: visible; /* ボタン本体では切らない！ */
}

/* ボタンエフェクト共通 */

#LP .btn-inner {
  position: relative; /* ここをrelativeにする！ */
  overflow: hidden; /* ボタン画像の上だけに光を制限！ */
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;    /* ← ここを画像の角に合わせて調整！ */
}

/* キラキラ用の光ラインを作る */
#LP .btn-inner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 70%);
  transform: rotate(30deg);
  animation: shine 2s infinite;
  border-radius: inherit; /* ←丸くする */
}


/* 光の動き */
@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}




/* ------------------------------------コメント------------------------------------- */


.comment-wrapper {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #ffffff;
  padding: 30px;
  text-align: center;
}

/* コメントボックス全体を中央＆固定幅に */
.comment-box {
  display: inline-block; /* text-align:centerの中で中央寄せ */
  text-align: left; /* 中身は左寄せに戻す */
  max-width: 600px;
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

/* タイトル */
.comment-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

/* 入力エリア */
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.comment-form button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.comment-form button:hover {
  background-color: #45a049;
}

/* コメント一覧 */
.comment-list {
  margin-top: 25px;
}

/* コメント1つ1つの見た目 */
.comment-item {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

.comment-item:last-child {
  border-bottom: none; /* 最後のコメントは下線なし */
}

.comment-item strong {
  display: block;
  color: #2c3e50;
  font-weight: bold;
  margin-bottom: 5px;
}

.comment-item p {
  margin: 0;
  line-height: 1.5;
  color: #333;
}

.comment-meta {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

