@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

img {
  max-width: 100%;
  height: auto;
}

.pc_only {
  display: none;
}

.morifesWrap {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(to bottom, #1567B0 20%, #2191C1);
}

/* Hero Section - Image Container */
.hero-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.hero-image {
  width: auto;
  height: auto;
  display: block;
  max-height: 100vh;
}

/* Content Section */
.content-section {
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.content-section.outlet {
  background: #E93A41;
}

.section-title {
  font-family: "Vibur", cursive,"Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  color: #FBEE1D;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 4px;
  filter: drop-shadow(3px 4px 0 #176095);
}

.section-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

.section-text {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.section-text.bold {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.section-text span {
  font-weight: bold;
  color: #FBEE1D;
}

/* Discount Circles */
.discount-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 60px auto;
  width: 100%;
  max-width: 600px;
}

.discount-circle {
  animation: float 3s ease-in-out infinite;
}

.discount-circle:nth-child(1) { animation-delay: 0s; }
.discount-circle:nth-child(2) { animation-delay: 0.5s; }
.discount-circle:nth-child(3) { animation-delay: 1s; }

.discount-circle img {
  width: 100%;
  max-width: 600px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* CTA Button */
.cta-button {
  background: #000d42;
  color: #FBEE1D;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin: 20px 0;
  width: 100%;
  max-width: 500px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Desktop Styles */
@media (min-width: 768px) {
  .content-section {
    padding: 80px 40px;
  }

  .section-title {
    padding-top: 40px;
    font-size: 4rem;
    letter-spacing: 6px;
  }

  .section-subtitle {
    font-size: 28px;
  }

  .section-text {
    font-size: 1.6rem;
    text-align: center;
  }

  .section-text.bold {
    font-size: 2.5rem;
  }

  .cta-button {
    font-size: 20px;
    padding: 18px 50px;
  }
}

@media (min-width: 1024px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
  .content-section {
    padding: 100px 60px;
  }
  .discount-section {
    gap: 40px;
  }
}

