/* ===== 新規追加セクションのスタイル ===== */

/* 関西北摂エリアセクションの上部余白 */
.fv .comment1 {
  margin-top: 60px;
}

/* 店舗一覧セクション */
.shop-list-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1em 0 4em;
}

.shop-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.shop-detail-btn {
  display: block;
  text-align: center;
  margin: 20px auto 0;
  padding: 12px 30px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-detail-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.shop-detail-btn--red {
  background: #c0392b;
}

.shop-detail-btn--yellow {
  background: #f0c030;
  color: #333;
}

.shop-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.shop-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.shop-item:hover .shop-image img {
  transform: scale(1.05);
}

.shop-info {
  padding: 25px 20px;
  background: #fff;
}

.shop-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 15px 0;
  text-align: center;
}

.shop-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-features li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  text-decoration: none;
}

.shop-features li i {
  color: #00C300;
  margin-right: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .shop-list-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .shop-image {
    height: 200px;
  }

  .shop-title {
    font-size: 1.3rem;
  }

  .shop-features li {
    font-size: 0.9rem;
  }
}

/* マップセクション */
.map-section {
  padding: 60px 20px;
  background: transparent;
}

.map-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.map-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

@media (max-width: 768px) {
  .map-container {
    grid-template-columns: 1fr;
  }
}

/* 予約方法セクション */
.reservation-guide {
  padding: 60px 20px;
  background: transparent;
}

.reservation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.step {
  text-align: center;
  padding: 30px 20px;
  background: #f8f8f8;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  color: #000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: -45px auto 40px;
  span {
    font-size: .8em;
    text-transform: uppercase;
  }
}

.step .fas {
  font-size: 3rem;
  color: #000;
  margin: 0 auto 20px;
  display: block;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
}

.reservation-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-reserve-large {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-reserve-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 195, 0, 0.3);
}

@media (max-width: 768px) {
  .reservation-steps {
    grid-template-columns: 1fr;
  }
}

/* フェードインアニメーション */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* hero-caption-inner内の要素に遅延を追加 */
.hero-caption-inner h2 {
  transition-delay: 0.2s;
}

.hero-caption-inner p {
  transition-delay: 0.4s;
}

/* shop-itemに遅延を追加 */
.shop-item:nth-child(1) {
  transition-delay: 0.1s;
}

.shop-item:nth-child(2) {
  transition-delay: 0.3s;
}

/* 特長セクションのdlに遅延を追加 */
.img-text-btn-left dl {
  transition-delay: 0.2s;
}

/* 大阪北摂のダンススタジオセクション */
.studio-intro {
  padding: 60px 20px;
  background: #fff;
}

.intro-lead {
  font-size: 1.1rem;
  line-height: 2;
  text-align: center;
  margin: 30px auto;
  max-width: 800px;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8f8f8;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 3rem;
  color: #ffa500;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #333;
}

.feature-item p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* LINEで予約セクション */
.line-reservation {
  padding: 60px 20px;
  background: #00C300;
  color: #fff;
}

.line-reservation .headline-large01 span {
  color: #fff;
}

.line-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: center;
}

.line-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.line-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.line-benefits li {
  padding: 12px 0;
  font-size: 1rem;
}

.line-benefits li i {
  margin-right: 10px;
  color: #fff;
}

.btn-line-add {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #00C300;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-line-add:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.line-icon-btn {
  width: 24px;
  height: 24px;
}

.line-qr {
  text-align: center;
}

.qr-text {
  font-size: 1rem;
  margin-bottom: 20px;
}

.qr-placeholder {
  width: 200px;
  height: 200px;
  background: #fff;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #00C300;
  font-weight: bold;
}

@media (max-width: 768px) {
  .line-content {
    grid-template-columns: 1fr;
  }
}

/* FAQセクション */
.faq-section {
  padding: 60px 20px;
  background: transparent;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: #333;
  transition: background 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: #f8f8f8;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #00C300;
}

.faq-item[open] .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px 20px;
  color: #666;
  line-height: 1.8;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  margin: 0;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 0.95rem;
    padding: 15px 20px;
  }

  .faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }
}
