@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  background: #fffdf5;
  color: #3d3128;
  overflow-x: hidden;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(110vw);
  }
}
.grass, .grass-white {
  width: 100%;
  height: 40px;
  transform: translateY(-30px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40'%3E%3Cpath d='M0 40 Q5 10 10 20 Q15 5 20 25 Q25 8 30 20 Q35 2 40 22 Q45 10 50 25 Q55 5 60 18 Q65 3 70 22 Q75 10 80 25 Q85 2 90 20 Q95 8 100 22 Q105 5 110 18 Q115 2 120 22 Q125 10 130 25 Q135 3 140 20 Q145 8 150 22 Q155 5 160 18 Q165 2 170 22 Q175 10 180 25 Q185 3 190 20 Q195 8 200 25 L200 40Z' fill='%235baa5e'/%3E%3C/svg%3E") repeat-x bottom;
  background-size: 200px 40px;
}
.grass-white {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40'%3E%3Cpath d='M0 40 Q5 10 10 20 Q15 5 20 25 Q25 8 30 20 Q35 2 40 22 Q45 10 50 25 Q55 5 60 18 Q65 3 70 22 Q75 10 80 25 Q85 2 90 20 Q95 8 100 22 Q105 5 110 18 Q115 2 120 22 Q125 10 130 25 Q135 3 140 20 Q145 8 150 22 Q155 5 160 18 Q165 2 170 22 Q175 10 180 25 Q185 3 190 20 Q195 8 200 25 L200 40Z' fill='%23fffdf5'/%3E%3C/svg%3E") repeat-x bottom;
}

header {
  background: linear-gradient(135deg, #e8f5e2 0%, #d6effa 100%);
  padding: 0;
  position: relative;
}
header .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 600px) {
  header .header-top {
    padding: 14px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}
header .logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .logo-area .logo-icon {
  width: 72px;
  height: 72px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  box-shadow: 0 4px 12px rgba(91, 170, 94, 0.25);
  flex-shrink: 0;
}
header .logo-area .logo-text h1 {
  font-family: "Kaisei Decol", serif;
  font-size: 2rem;
  color: #5baa5e;
  line-height: 1.1;
}
header .logo-area .logo-text p {
  font-size: 0.78rem;
  color: #888;
  margin-top: 2px;
  letter-spacing: 0.05em;
}
header .header-contact {
  text-align: right;
}
@media (max-width: 600px) {
  header .header-contact {
    text-align: left;
  }
}
header .header-contact .tel {
  font-family: "Kaisei Decol", serif;
  font-size: 1.6rem;
  color: #f4824a;
  font-weight: 700;
}
header .header-contact .tel span {
  font-size: 0.85rem;
  color: #3d3128;
  font-family: "Zen Maru Gothic", sans-serif;
}
header .header-contact p {
  font-size: 0.75rem;
  color: #888;
}

nav {
  background: #5baa5e;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
nav ul li a {
  display: block;
  padding: 14px 24px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s;
  position: relative;
}
@media (max-width: 600px) {
  nav ul li a {
    padding: 12px 14px;
    font-size: 0.8rem;
  }
}
nav ul li a:hover {
  background: rgba(255, 255, 255, 0.15);
}
nav ul li a::before {
  content: "🌿";
  margin-right: 5px;
  font-size: 0.85rem;
}

.hero {
  padding: 0;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .hero {
    height: 500px;
  }
}
.hero-inner {
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  max-width: 860px;
  padding: 0 40px;
  margin: auto;
}
.hero .slider-content {
  background-color: #e8f5e2;
}
.hero .slider-content .top-slider {
  opacity: 0.4;
}
.hero .slider-content .top-slider-image {
  overflow: hidden;
}
.hero .slider-content .top-slider-image img {
  height: 400px;
}
@media (max-width: 768px) {
  .hero .slider-content .top-slider-image img {
    height: 500px;
  }
}
.hero h2 {
  font-family: "Kaisei Decol", serif;
  font-size: 2.6rem;
  color: #5baa5e;
  line-height: 1.4;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease both;
}
@media (max-width: 600px) {
  .hero h2 {
    font-size: 1.8rem;
  }
}
.hero h2 em {
  color: #f4824a;
  font-style: normal;
}
.hero p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.9;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-emoji-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 0;
  font-size: 3.2rem;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-emoji-row span {
  display: inline-block;
  animation: bounce 2s infinite;
}
.hero-emoji-row span:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-emoji-row span:nth-child(3) {
  animation-delay: 0.4s;
}
.hero-emoji-row span:nth-child(4) {
  animation-delay: 0.6s;
}
.hero-emoji-row span:nth-child(5) {
  animation-delay: 0.8s;
}

.section {
  padding: 60px 20px;
}
@media (max-width: 600px) {
  .section {
    padding: 40px 16px;
  }
}
.section-inner {
  max-width: 960px;
  margin: 0 auto;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Kaisei Decol", serif;
  font-size: 1.7rem;
  color: #5baa5e;
  margin-bottom: 28px;
}
.section-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 36px;
  background: linear-gradient(180deg, #f7c948, #f4824a);
  border-radius: 4px;
}

.news-list {
  list-style: none;
}
.news-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 2px dashed #d8e8d0;
}
.news-list li a {
  color: #3d3128;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.6;
}
.news-list li a:hover {
  color: #5baa5e;
  text-decoration: underline;
}
.news-list .news-date,
.news-list .news-tag {
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-list .news-date {
  background: #5baa5e;
}
.news-list .news-tag {
  background: #f7c948;
  color: #7a5230;
  font-size: 0.75rem;
}

.features-bg {
  background: #e8f5e2;
  padding: 60px 20px;
}
@media (max-width: 600px) {
  .features-bg {
    padding: 40px 16px;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(91, 170, 94, 0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(91, 170, 94, 0.22);
}
.card-icon {
  font-size: 3.2rem;
  margin-bottom: 14px;
}
.card h3 {
  font-family: "Kaisei Decol", serif;
  font-size: 1.15rem;
  color: #5baa5e;
  margin-bottom: 10px;
}
.card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
}

.day-bg {
  background: #e8f7fd;
  padding: 60px 20px;
}
@media (max-width: 600px) {
  .day-bg {
    padding: 40px 16px;
  }
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 68px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(180deg, #6dc6e8 0 8px, transparent 8px 14px);
}
.timeline .tl-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 14px 0;
}
.timeline .tl-time {
  width: 60px;
  text-align: right;
  font-family: "Kaisei Decol", serif;
  font-size: 1rem;
  color: #6dc6e8;
  font-weight: 700;
  flex-shrink: 0;
}
.timeline .tl-dot {
  width: 18px;
  height: 18px;
  background: #6dc6e8;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  z-index: 1;
}
.timeline .tl-body h4 {
  font-size: 1rem;
  color: #3d3128;
  font-weight: 700;
}
.timeline .tl-body p {
  font-size: 0.85rem;
  color: #777;
  margin-top: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #e0f0dd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.gallery-item:hover {
  transform: scale(1.04);
}
.gallery-item:nth-child(2n) {
  background: #fef4e0;
}
.gallery-item:nth-child(3n) {
  background: #e0f4fa;
}

.inquiry-banner {
  background: linear-gradient(135deg, #5baa5e 0%, #3a8c3d 100%);
  padding: 56px 20px;
  text-align: center;
  color: white;
}
.inquiry-banner h2 {
  font-family: "Kaisei Decol", serif;
  font-size: 1.9rem;
  margin-bottom: 10px;
}
.inquiry-banner p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 28px;
}

.btn-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.btn-primary {
  background: #f7c948;
  color: #7a5230;
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 640px) {
  .access-grid {
    grid-template-columns: 1fr;
  }
}

.map-placeholder {
  background: #d8ead6;
  border-radius: 20px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #5baa5e;
  gap: 10px;
}
.map-placeholder p {
  font-size: 0.85rem;
  color: #666;
}

.access-info dt {
  font-weight: 700;
  color: #5baa5e;
  margin-top: 14px;
  font-size: 0.9rem;
}
.access-info dd {
  margin-left: 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}

footer {
  background: #7a5230;
  color: rgba(255, 255, 255, 0.85);
  padding: 40px 20px 24px;
  text-align: center;
}
footer .footer-logo {
  font-family: "Kaisei Decol", serif;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 8px;
}
footer p {
  font-size: 0.8rem;
  opacity: 0.7;
}
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 16px 0;
}
footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  text-decoration: none;
}
footer .footer-links a:hover {
  color: white;
}

.cloud {
  position: absolute;
  background: white;
  border-radius: 50px;
  opacity: 0.5;
  animation: drift linear infinite;
}
.cloud::before, .cloud::after {
  content: "";
  position: absolute;
  background: white;
  border-radius: 50%;
}
.cloud-1 {
  width: 100px;
  height: 36px;
  top: 30px;
  left: -120px;
  animation-duration: 30s;
}
.cloud-1::before {
  width: 52px;
  height: 52px;
  top: -26px;
  left: 12px;
}
.cloud-1::after {
  width: 36px;
  height: 36px;
  top: -18px;
  left: 48px;
}
.cloud-2 {
  width: 70px;
  height: 26px;
  top: 60px;
  left: -90px;
  animation-duration: 40s;
  animation-delay: -15s;
}
.cloud-2::before {
  width: 36px;
  height: 36px;
  top: -18px;
  left: 8px;
}
.cloud-2::after {
  width: 28px;
  height: 28px;
  top: -14px;
  left: 34px;
}/*# sourceMappingURL=style.css.map */