/* index.css */
body {
  color: #ffffff; /* 全体の文字色を白に */
}
/* スライダー */
.carousel-item img {
  width: 100%;
  height: auto;
}

/* 紹介セクション */
.section-title {
  text-align: center;
  font-size: 2em;
  margin: 40px 0 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.intro-text {
  text-align: center;
  margin-bottom: 30px;
}

/* ご案内セクション */
.btn-cf-link {
  background-color: #FFD700; /* ゴールド */
  color: #000;               /* 黒文字でコントラスト */
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-cf-link:hover {
  background-color: #e6c200;
  color: #000;
}

/* お問い合わせフォーム  */
.contact-method {
  border: 1px solid #FFD700;
  padding: 20px;
  border-radius: 8px;
  background-color: #1a1a1a;
  font-size: 16px;
  text-align: center;
}

.contact-method a {
  text-decoration: underline;
}
.no-bullets {
  list-style: none; /* リストのマーカー（点など）を非表示にする */
  padding-left: 0;  /* リストの左側の余白を削除する */
}

/* SNSリンク */
.sns-icons img {
  height: 40px;
  margin: 0 10px;
}

/* アクセスマップ */
.access-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* SNSアイコン */
.sns-section {
  padding: 30px;
  background-color: #111;
  color: #f0f0f0;
  text-align: center;
}

.sns-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.sns-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFD700;
  text-decoration: none;
  font-size: 18px;
  transition: transform 0.2s;
}

.sns-icon img {
  height: 30px;
  width: 30px;
}

.sns-icon:hover {
  transform: scale(1.1);
}

/* SNS QRアイコン */
.qr-area {
  margin-top: 20px;
}

.qr-code {
  height: 150px;
  width: auto;
  margin-top: 10px;
  border: 1px solid #444;
  background-color: #fff;
  padding: 5px;
}
