@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
*/

/* Google Fonts読み込み */
@import url("https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&display=swap");

/************************************
** iTeen経堂駅前校カスタムデザイン
************************************/

/* カラーシステム（70:25:5配色比率） */
:root {
  /* ベースカラー（70%）- 清潔感のある白とライトグレー */
  --base-primary: #ffffff;
  --base-secondary: #f8fafc;
  --base-tertiary: #f1f5f9;
  --base-quaternary: #e2e8f0;
  
  /* メインカラー（25%）- 親しみやすいブルー系 */
  --main-primary: #3b82f6;
  --main-secondary: #1d4ed8;
  --main-tertiary: #dbeafe;
  --main-quaternary: #eff6ff;
  
  /* アクセントカラー（5%）- 活気のあるオレンジ系 */
  --accent-primary: #f97316;
  --accent-secondary: #ea580c;
  --accent-tertiary: #fed7aa;
  
  /* テキストカラー */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --text-inverse: #ffffff;
  
  /* フォントサイズ */
  --font-size: 16px;
}

/* 基本フォント設定 */
body {
  font-family: 'Klee One', cursive, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  color: var(--text-primary);
  background-color: var(--base-primary);
}

/* ヘッダーカスタマイズ */
.header-container {
  background: var(--base-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* メインコンテンツエリア */
.main {
  background: var(--base-secondary);
}

/* アニメーション効果 */
@keyframes bounce-subtle {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-1px);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ボタンスタイル */
.iteen-btn-primary {
  background: linear-gradient(to right, var(--main-primary), var(--main-secondary));
  color: var(--text-inverse);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-family: 'Klee One', cursive, sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.iteen-btn-primary:hover {
  background: linear-gradient(to right, var(--main-secondary), var(--main-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  color: var(--text-inverse);
  text-decoration: none;
}

.iteen-btn-accent {
  background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
  color: var(--text-inverse);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-family: 'Klee One', cursive, sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.iteen-btn-accent:hover {
  background: linear-gradient(to right, var(--accent-secondary), var(--accent-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  color: var(--text-inverse);
  text-decoration: none;
}

/* セクション共通スタイル */
.iteen-section {
  padding: 4rem 0;
  background: var(--base-secondary);
}

.iteen-section:nth-child(even) {
  background: var(--base-primary);
}

.iteen-section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--main-primary);
  text-align: center;
  margin-bottom: 3rem;
  font-family: 'Klee One', cursive, sans-serif;
}

/* ヒーローセクション */
.iteen-hero {
  background: linear-gradient(135deg, var(--base-secondary) 0%, var(--main-quaternary) 100%);
  padding: 6rem 0;
  text-align: center;
}

.iteen-hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--main-primary);
  margin-bottom: 2rem;
  line-height: 1.2;
  font-family: 'Klee One', cursive, sans-serif;
  animation: fade-in-up 1s ease-out;
}

.iteen-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  animation: fade-in-up 1s ease-out 0.2s both;
}

.iteen-hero-cta {
  animation: fade-in-up 1s ease-out 0.4s both;
}

/* カード系コンポーネント */
.iteen-card {
  background: var(--base-primary);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--base-quaternary);
}

.iteen-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* FAQ スタイル */
.iteen-faq-item {
  background: var(--base-primary);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--base-quaternary);
}

.iteen-faq-question {
  background: var(--main-tertiary);
  color: var(--main-primary);
  padding: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0.5rem 0.5rem 0 0;
  transition: all 0.3s ease;
}

.iteen-faq-question:hover {
  background: var(--main-secondary);
  color: var(--text-inverse);
}

.iteen-faq-answer {
  padding: 1rem;
  color: var(--text-primary);
}

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

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

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