@charset "utf-8";


/* ベーススタイル */
.hero {
  width: 100%;
  height: 100vh; /* 画面全体の高さを指定 */
  background-size: cover; /* 背景画像をコンテナいっぱいに表示 */
  background-position: center; /* 中央に配置 */
  background-repeat: no-repeat; /* 繰り返さない */
  display: flex;
  justify-content: center;
  align-items: center;
}





body {
  font-family: "Yu Gothic", sans-serif;
  margin: 0;
  padding: 0;
  background: #F4DEC1;
  color: #333;
}

/* ヒーローセクション */
.full-screen {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  text-align: center;
  opacity: 0;
  animation: fadeUp 3s ease forwards;
  animation-delay: 0.5s;
}

/* アニメーション：ヒーローテキスト */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* ナビゲーション */
.nav-area {
  text-align: center;
  padding: 20px;
  background: #F4DEC1;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  width: 200px;
  margin-bottom: 10px;
}
.menu-buttons a {
  background: #eee;
  padding: 10px 20px;
  margin: 0 8px;
  display: inline-block;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.menu-buttons a:hover {
  background-color: #ddd;
  transform: translateY(-3px);
}

/* メニュースライダー */
.menu-slider {
  overflow-x: auto;
  white-space: nowrap;
  background: #F4DEC1;
  padding: 20px 0;
}
.slider img {
  width: 300px;
  height: auto;
  margin: 0 10px;
  display: inline-block;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s ease;
}
.slider img.visible {
  opacity: 1;
  transform: scale(1);
}

/* フッター */
footer {
  background: #F4DEC1;
  padding: 20px;
  font-size: 14px;
}

.info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.map, .contact {
  width: 45%;
}
.sns {
  text-align: center;
  margin-top: 10px;
}
.sns img {
  width: 24px;
  margin: 0 5px;
}
footer p {
  text-align: center;
  margin-top: 10px;
}

 .social-icons {
      display: flex;
      gap: 15px;
      align-items: center;
	 text-align: right;
    }

    .social-icons a svg {
      transition: transform 0.2s ease;
    }

    .social-icons a:hover svg {
      transform: scale(1.2);
    }
a svg {
    margin: 0 10px;
    transition: transform 0.2s ease;
  }

  a:hover svg {
    transform: scale(1.2);
  }

