@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1.top.logo {
  font-size: 100px;
  background: linear-gradient(270deg, #ff0000, #ffa500, #ffff00, #00ff00, #00ffff, #0000ff, #800080, #ff0000);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: gradientFlow 5s linear infinite;
  text-align: left;
  font-family: "Helvetica Neue", sans-serif;
  padding: 30px 0;
  letter-spacing: 2px;
}

@keyframes gradientFlow {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: 0% 0;
  }
}

/* ここから */
.image-stor-halls {
  height: 400px;
  padding: 50px 0px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.stor-hall-img {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 2s ease-out, transform 2s ease-out;
  width: 400px; /* ← ここでサイズ調整 */
  height: 300px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.stor-hall-img.visible {
  opacity: 1;
  transform: translateY(0);
}

.stor-hall-img {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.stor-hall-img.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ナビゲーションのulを横並び＆右寄せに */
.top-menu ul {
  list-style: none;
  display: flex;
  gap: 60px; /* リスト間の間隔 */
  justify-content: flex-end; /* 右寄せ */
  margin-right: 40px; /* 右の余白（調整可能） */
  align-items: center;
}

/* /* メニューリンクのスタイル * */
.menu-list {
  text-decoration: none; /* 下線を消す */
  color: black;
  font-size: 48px; /* 文字サイズ大きく */
  font-family: "Helvetica Neue", sans-serif;
  transition: color 0.3s;
}

.menu-list:hover {
  color: yellowgreen;
}
/* ここに入れた */
video {
  width: 100%;
  height: 800px;
}

.hero-content {
  text-align: center;
}
/* ここから */

form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  box-sizing: border-box;
}

input[type="submit"],
input[type="reset"] {
  padding: 10px 20px;
  margin-right: 10px;
}

footer {
  background-color: lightslategrey;
  color: white;
  text-align: center;
  padding: 20px;
  width: 100%;
}

footer a {
  color: #ffd700;
  text-decoration: underline;
}
.social-links {
  margin-top: 1rem;
}

.social-links a {
  display: inline-block;
  margin: 0 20px;
}

.slider {
  position: relative;
}
.social-links a img {
  width: 60px;
  height: 60px;
}
.logo-qr {
  width: 60px;
  height: 60px;
  margin-left: 20px;
}

.menu-cafe {
  max-width: 1400px;
  margin: 0 auto 20px auto;
  padding: 20px;
}

.img-menu {
  width: 70vw;
  height: 600px;
  object-fit: cover;
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 20px;
}

/* メニュー画像（2枚目）は高さを自動にして切れないように */
.img-menus {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
/* 全体背景＋雪を想定 */
.winter-hero {
  position: relative;
  background: linear-gradient(to bottom, #f0f8ff, #e0f2f1); /* 淡い冬色 */
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}
video {
  width: 1800px;
  height: 800px;
  display: block;
  margin: 0 auto;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
}

.full-video {
  width: 100vw;
  margin: 0;
  padding: 0;
}

video {
  width: 100vw;
  height: auto;
  display: block;
}
.img-menu-wrapper {
  position: relative; /* ←絶対配置の基準にする */
  display: inline-block;
}

/* 右下に大きく重ねる文字 */
.menu-label {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 80px;
  color: white;
  font-weight: bold;
  font-family: "Helvetica Neue", sans-serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

/* ここからスマホ対応 */

/* -----------------------------
   スマホ対応（最大幅768px以下）
----------------------------- */
@media screen and (max-width: 768px) {
  h1.top.logo {
    font-size: 48px;
    text-align: center;
    padding: 20px 10px;
  }

  .top-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-right: 0;
  }

  .menu-list {
    font-size: 24px;
  }

  video {
    width: 100vw;
    height: auto;
  }

  .image-stor-halls {
    flex-direction: column;
    height: auto;
    padding: 20px 10px;
  }

  .stor-hall-img {
    width: 90%;
    height: auto;
    aspect-ratio: auto;
  }

  .img-menu {
    width: 90vw;
    height: auto;
  }

  .menu-label {
    font-size: 40px;
    bottom: 10px;
    right: 10px;
  }

  .img-menus {
    width: 90%;
    margin: 0 auto;
  }

  .menu-cafe {
    padding: 10px;
  }

  .winter-hero {
    padding: 60px 10px;
  }

  footer {
    font-size: 14px;
    padding: 10px;
  }

  .social-links a img,
  .logo-qr {
    width: 40px;
    height: 40px;
  }

  .social-links a {
    margin: 0 10px;
  }

  form {
    padding: 10px;
  }
}
