/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 12 2025 | 02:32:21 */
/* 固定リンクボタン(棚田・滝) */
.quarter-circle-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #f2bc52; /* ←ここを変更 */
  color: #111;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  animation: pulse 1.8s infinite;
  transition: background-color 0.3s, transform 0.2s;
}

.quarter-circle-button:hover {
  background-color: #e0a63e; /* ←ホバー時の濃いめゴールド */
  transform: scale(1.05);
}

.quarter-circle-button2 {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #19a9a9; /* ←ここを変更 */
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  animation: pulse 1.8s infinite;
  transition: background-color 0.3s, transform 0.2s;
}

.quarter-circle-button2:hover {
  background-color: #2ababa; /* ←ホバー時の濃いめゴールド */
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(242, 188, 82, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(242, 188, 82, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(242, 188, 82, 0.6);
  }
}


/* 固定リンクボタン(TOP) */
.fixed-button-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px; /* ボタン間のすき間 */
  padding: 0 5px 5px; /* 左右と下に余白 */
  background: transparent;
  backdrop-filter: blur(8px);
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);

}

.fixed-button-bar a {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 14px 0;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: transform 0.2s, background-color 0.3s;
}

/* ボタンごとの色設定 */
.btn-tanada {
  background-color: #f2bc52; /* 黄色系 */
  animation: pulse1 1.8s infinite;
  transition: background-color 0.3s, transform 0.2s;
	
}

.btn-water-fall {
  background-color: #19a9a9;
  animation: pulse2 1.8s infinite;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-ecopark {
  background-color: #bfd834;
  animation: pulse3 1.8s infinite;
  transition: background-color 0.3s, transform 0.2s;
}

@keyframes pulse1 {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(242, 188, 82, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(242, 188, 82, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(242, 188, 82, 0.6);
  }
}

@keyframes pulse2 {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(242, 188, 82, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(242, 188, 82, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(242, 188, 82, 0.6);
  }
}

@keyframes pulse3 {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(242, 188, 82, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(242, 188, 82, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(242, 188, 82, 0.6);
  }
}

/* ホバー時の色を少し濃く */
.btn-tanada:hover {
  background-color: #f3cd63;
}

.btn-water-fall:hover {
  background-color: #2ababa;
}

.btn-ecopark:hover {
  background-color: #cde945;
}
