@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /* 瞑想ページ専用スタイル */
.meditation-page {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
}

.hero-section {
  background: linear-gradient(135deg, #f8f4f0 0%, #e8ddd4 100%);
  padding: 80px 20px;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1810;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #6b4423;
  margin-bottom: 2rem;
}

.cta-button {
  background: #8b4513;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #a0522d;
  transform: translateY(-2px);
}

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.pricing-card {
  background: white;
  border: 2px solid #8b4513;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #8b4513;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
}
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}


