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

body {
  font-family: "Hachi Maru Pop", cursive;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* キャンバスコンテナ */
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 1000;
  background: transparent;
}

/* ナビゲーションメニュー（デスクトップ） */
.nav-menu {
  display: none;
  justify-content: center;
}

.menu-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.menu-item a {
  text-decoration: none;
  color: #ff6b9d;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: block;
  border: 2px solid transparent;
}

.menu-item a:hover {
  background: #feca57;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(254, 202, 87, 0.4);
  border-color: #ff6b9d;
}

/* モバイルメニューボタン */
.mobile-menu-btn {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: #ff6b9d;
  margin: 5px auto;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: #feca57;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #feca57 0%, #feca57 100%);
  padding: 80px 30px;
  transition: right 0.3s ease;
  z-index: 999;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-list {
  list-style: none;
}

.mobile-menu-item {
  margin-bottom: 20px;
  animation: slideInRight 0.5s ease forwards;
  opacity: 0;
}

.mobile-menu.active .mobile-menu-item {
  opacity: 1;
}

.mobile-menu-item:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-menu-item:nth-child(2) {
  animation-delay: 0.2s;
}
.mobile-menu-item:nth-child(3) {
  animation-delay: 0.3s;
}
.mobile-menu-item:nth-child(4) {
  animation-delay: 0.4s;
}

.mobile-menu-item a {
  color: #ff6b9d;
  text-decoration: none;
  font-size: 22px;
  display: block;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-menu-item a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-10px);
}

/* お問い合わせコンテンツ */
.contact-container {
  position: relative;
  z-index: 100;
  padding: 100px 20px 50px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.page-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fffb01;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8), -2px -2px 0 rgba(0, 0, 0, 0.9),
    2px -2px 0 rgba(0, 0, 0, 0.9), -2px 2px 0 rgba(0, 0, 0, 0.9),
    2px 2px 0 rgba(0, 0, 0, 0.9);
  -webkit-text-stroke: 3px #ff7bde;
  font-weight: 700;
  margin-bottom: 40px;
  animation: float 4s ease-in-out infinite;
}

.contact-card {
  /* background: rgba(255, 255, 255, 0.95); */
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease;
}

.contact-intro {
  text-align: center;
  margin-bottom: 40px;
}

.intro-text {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.decoration-stars {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #feca57;
  font-size: 1.5rem;
  animation: twinkle 2s ease-in-out infinite;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 251, 1, 0.05)
  );
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon-wrapper {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
}

.contact-info {
  flex: 1;
}

.contact-title {
  font-size: 1.5rem;
  color: #ff6b9d;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #1da1f2, #0088cc);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.contact-button.instagram {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}

.contact-button:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.5);
}

.contact-button.instagram:hover {
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.5);
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.contact-button:hover .arrow-icon {
  transform: translateX(3px);
}

.contact-note {
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.1),
    rgba(254, 202, 87, 0.1)
  );
  border-radius: 15px;
  border-left: 4px solid #ff6b9d;
}

.note-content h4 {
  color: #ff6b9d;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.note-content ul {
  list-style: none;
  margin-bottom: 15px;
}

.note-content li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: #666;
  line-height: 1.6;
}

.note-content li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #feca57;
}

.response-time {
  color: #999;
  font-size: 0.9rem;
  margin-top: 10px;
  font-style: italic;
}

/* フッター */
.footer {
  position: relative;
  z-index: 100;
  margin-top: 50px;
  padding: 20px;
  text-align: center;
}

.copyright {
  color: #666;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  display: inline-block;
}

/* アニメーション */
@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes twinkle {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* レスポンシブデザイン */
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

/* タブレット対応 */
@media (max-width: 768px) {
  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-button {
    width: 100%;
    justify-content: center;
  }

  .mobile-menu {
    width: 320px;
  }

  .mobile-menu-item a {
    font-size: 20px;
  }
}

/* スマートフォン対応 */
@media (max-width: 480px) {
  .header {
    padding: 15px;
  }

  .mobile-menu-btn {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }

  .mobile-menu {
    width: 250px;
    padding: 70px 20px;
  }

  .mobile-menu-item a {
    font-size: 18px;
    padding: 12px;
  }

  .contact-container {
    padding: 80px 15px 30px;
  }

  .page-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .contact-card {
    padding: 25px;
    border-radius: 20px;
  }

  .intro-text {
    font-size: 1rem;
  }

  .contact-item {
    padding: 20px;
  }

  .contact-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-title {
    font-size: 1.2rem;
  }

  .contact-description {
    font-size: 0.9rem;
  }

  .contact-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .note-content h4 {
    font-size: 1.1rem;
  }

  .note-content li {
    font-size: 0.9rem;
  }

  .copyright {
    font-size: 0.8rem;
    padding: 10px 15px;
  }
}
