/* ベース設定 */
body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  background-color: #f0f8f5;
  color: #333;
}

h1, h2 {
  color: #2f855a;
  margin-bottom: 0.5em;
}

/* Heroセクション */
.hero {
  background-image: url('images/image01.png');
  background-size: cover;
  background-position: center;
  padding: 120px 0px 100px;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #fff;
  position: relative;
  overflow: hidden;
	font-size:32px;
}


.hero .subtitle{	font-size:18px;width:90%;margin-left:auto;margin-right:auto;}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(47, 133, 90, 0.3);
  z-index: 1;
}

.hero h1,
.hero .subtitle,
.hero .logo,
.hero .opening-date,
.ribbon {
  position: relative;
  z-index: 2;
}



.hero .logo {
  width: 100%;
  margin: 0 auto 20px;
  display: block;
	text-align:center;
  background: linear-gradient(to bottom, white 90%, #76DE30 10%);
}

.logomark { width: 40%; min-width:300px;}

.icon {
  width: 100%;
  margin: 0 auto 20px;
  display: block;
	text-align:center;
}

.topicon { width:80%;}

/* 装飾リボン */
.ribbon {
  position: absolute;
  top: 20px;
  right: -40px;
  transform: rotate(45deg);
  background-color: #f56565;
  color: white;
  padding: 10px 40px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* セクション共通 */
.section {
  padding: 20px 20px;
  max-width: 800px;
  margin-left:auto;
  margin-right:auto;
  margin-top:20px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.features ul {
  list-style: disc;
  padding-left: 1.5em;
}

/* 地図 */
.map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
  margin-top: 15px;
}

/* お問い合わせ */
.contact {
  background-color: #a7f3d0;
  text-align: center;
  padding: 50px 20px;
  font-size: 1.2rem;
}

.contact .btn {
  display: inline-block;
  background-color: #2f855a;
  color: #fff;
  padding: 14px 28px;
  font-size: 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background 0.3s;
}

.contact .btn:hover {
  background-color: #276749;
}


/* アニメーション（フェードイン） */
.fade-in {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* フッター */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
  background-color: #f0f8f5;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
