/* ページ全体の背景に神社画像を設定 */
body {
  background: url("assets/shrine_background.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
  margin: 0;
  padding: 20px;
}

/* 中央の白いボックス（フォームや結果表示部分） */
.container {
  background: rgba(255, 255, 255, 0.92);  /* 半透明白 */
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* キャンバスの余白と枠線 */
canvas {
  border: 1px solid #ccc;
  margin: 20px 0;
}

/* 入力フィールドの余白調整 */
input, select {
  margin: 8px 0;
  padding: 6px;
  font-size: 16px;
}

/* ボタンのデザイン */
button {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  background-color: #cc0000;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}
button:hover {
  background-color: #aa0000;
}

.section-box {
  background: #f5f5f0;
  border: 2px solid #d9cba5;
  border-radius: 12px;
  padding: 20px;
  margin: 30px auto;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  color: #7a4b00;
  margin-bottom: 10px;
}

.section-text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

.section-note {
  font-size: 14px;
  color: #666;
  margin-top: 12px;
  font-style: italic;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* 動画をレスポンシブ対応に */
#videoContainer {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9のアスペクト比 */
  height: 0;
}

#videoContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}



.sns-links ul {
  list-style: none;     /* ← これで「•」を消します */
  padding: 0;
  margin: 0;            /* ← お好みで余白調整も可能 */
}
.sns-links li {
  margin: 6px 0;
  text-align: center;
}

.tsukimi-box {
  background: #fef9f5;
  border: 2px solid #dcb;
  border-radius: 12px;
  padding: 20px;
  margin: 30px auto;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.tsukimi-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #964b00; /* 神社のような茶色 */
}

.tsukimi-button {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 15px;
  background-color: #cc0000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.tsukimi-button:hover {
  background-color: #990000;
}

.tsukimi-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

