@charset "UTF-8";

/* --- 基本設定 --- */
body {
    font-family: 'Noto Sans JP', 'M PLUS Rounded 1c', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f9f4;
    color: #444;
    line-height: 1.8;
}

/* --- ヘッダー --- */
header {
    background-color: #ffffff;
    padding: 15px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo img {
    height: 50px;
    width: auto;
    display: block;
}

header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #555;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

header nav a:hover {
    color: #2e8b57;
}

/* --- ヒーローセクション --- */
.hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('https://via.placeholder.com/1500x600.png?text=Nature+Background');
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
}

.hero-content {
    background-color: rgba(46, 139, 87, 0.85);
    display: inline-block;
    padding: 40px 60px;
    border-radius: 15px;
    max-width: 800px;
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.5;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.hero p {
    font-size: 18px;
    margin: 0;
}

/* --- 共通コンテナ --- */
.container {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

h2 {
    font-size: 28px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    text-align: center;
    color: #2e8b57;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ffc107;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* --- ユニークな指導法セクション --- */
.concept-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.concept-box ul {
    text-align: left;
    display: inline-block;
    margin-top: 20px;
    padding-left: 20px;
}

.concept-box li {
    margin-bottom: 10px;
    color: #555;
}

/* --- IPDCAセクション --- */
.ipdca-section {
    background-color: #e8f5e9;
    padding: 60px 40px;
    border-radius: 15px;
}

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

.ipdca-list {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.ipdca-item {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 15px;
}

.ipdca-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ipdca-term {
    font-weight: bold;
    color: #2e8b57;
    width: 120px;
    flex-shrink: 0;
}

/* --- 3カラムレイアウト --- */
.three-columns {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .three-columns {
        flex-direction: column;
    }
}

.col-box {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #2e8b57;
}

.col-box h3 {
    color: #2e8b57;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin-top: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    background: #ffc107;
    color: #333;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.col-box p {
    font-size: 15px;
    color: #666;
}

.col-box .example {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 15px;
    color: #555;
}

.col-box .example-title {
    font-weight: bold;
    color: #888;
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}

/* --- QAセクション --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.faq-question {
    background-color: #fafffa;
    padding: 20px;
    font-weight: 700;
    color: #2e8b57;
    display: flex;
    align-items: center;
}

.faq-question::before {
    content: 'Q.';
    font-size: 20px;
    margin-right: 10px;
    color: #ffc107;
}

.faq-answer {
    padding: 20px;
    padding-top: 0;
    background-color: #fafffa;
    color: #555;
    line-height: 1.8;
    display: flex;
}

.faq-answer::before {
    content: 'A.';
    font-size: 20px;
    margin-right: 10px;
    color: #2e8b57;
    font-weight: bold;
}

/* --- CTAセクション --- */
.cta-section {
    background-color: #ffecb3;
    text-align: center;
    padding: 60px 20px;
    border-radius: 15px;
    margin-top: 80px;
}

.cta-button-large {
    background-color: #2e8b57;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.cta-button-large:hover {
    transform: scale(1.05);
    background-color: #257a4a;
}

/* --- フッター --- */
footer {
    background-color: #2e8b57;
    color: #f4f9f4;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
}



/* --- aboutus用 --- */

/* ページタイトルエリア */
.page-header {
    background-color: #e8f5e9;
    /* 薄い緑 */
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    color: #2e8b57;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 32px;
    margin: 0;
}

.page-header p {
    color: #666;
    margin-top: 10px;
}

/* プロフィールセクション（左右レイアウト） */
.profile-wrap {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

/* 写真エリア */
.profile-img {
    flex: 0 0 300px;
    /* 幅300px固定 */
    text-align: center;
}

.profile-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    /* 角丸 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-name {
    margin-top: 15px;
    font-weight: bold;
    font-size: 20px;
    color: #2e8b57;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* 文章エリア */
.profile-content {
    flex: 1;
    /* 残りの幅を埋める */
}

.profile-content h3 {
    font-size: 22px;
    color: #333;
    border-bottom: 2px solid #ffc107;
    /* 黄色の下線 */
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.profile-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 16px;
}

/* スマホ対応（縦並びにする） */
@media (max-width: 768px) {
    .profile-wrap {
        flex-direction: column;
        align-items: center;
    }

    .profile-img {
        flex: auto;
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }
}


/* --- お問い合わせページ独自のスタイル --- */

.page-header {
    background-color: #ffecb3;
    /* お問い合わせは注意を引く黄色系、または緑でもOK */
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    color: #333;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 32px;
    margin: 0;
}

.page-header p {
    color: #555;
    margin-top: 10px;
}

.contact-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    max-width: 800px;
    margin: 0 auto;
    /* 中央寄せ */
}

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

.contact-intro p {
    margin-bottom: 20px;
}

/* Googleフォーム埋め込み用のコンテナ */
.google-form-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 120%;
    /* フォームの縦横比に合わせて調整（長めにとる） */
    overflow: hidden;
}

.google-form-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* --- ブログページ独自のスタイル --- */

/* ページヘッダー（他のページと共通のデザイン） */
.page-header {
    background-color: #e3f2fd;
    /* ブログは知的な青系、または緑系でもOK */
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    color: #333;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 32px;
    margin: 0;
}

.page-header p {
    color: #555;
    margin-top: 10px;
}

/* ブロググリッドレイアウト */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* 幅に合わせて自動折り返し */
    gap: 30px;
    margin-top: 40px;
}

/* 記事カードのデザイン */
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    /* リンクの下線を消す */
    color: #444;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-5px);
    /* ホバー時に少し浮く */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* サムネイル画像エリア */
.blog-thumb {
    width: 100%;
    height: 200px;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像の比率を保ったまま埋める */
    transition: transform 0.3s;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.05);
    /* ホバー時に画像が少し拡大 */
}

/* カテゴリラベル */
.blog-cat {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ffc107;
    color: #333;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 記事テキストエリア */
.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.5;
    color: #2e8b57;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* 下揃えのために伸ばす */
}

.read-more {
    font-size: 14px;
    font-weight: bold;
    color: #2e8b57;
    text-align: right;
}

/* --- ブログ記事詳細ページ独自のスタイル --- */

/* 記事全体のコンテナ */
.article-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #fff;
}

/* パンくずリスト */
.breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #2e8b57;
    text-decoration: none;
}

/* 記事ヘッダー */
.article-header {
    margin-bottom: 40px;
    text-align: left;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
    align-items: center;
}

.article-cat {
    background-color: #ffc107;
    color: #333;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

.article-header h1 {
    font-size: 32px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 24px;
    }
}

/* アイキャッチ画像 */
.article-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* --- 記事本文の装飾 --- */
.article-body {
    line-height: 2;
    font-size: 16px;
    color: #444;
}

/* ▼▼▼ 修正箇所：H2見出しを強制的に左寄せにする ▼▼▼ */
.article-body h2 {
    /* トップページのスタイル（中央寄せ）をリセット */
    text-align: left !important;
    display: block !important;
    left: auto !important;
    transform: none !important;
    margin-left: 0 !important;

    /* ブログ独自のデザイン */
    font-size: 24px;
    color: #2e8b57;
    border-left: 6px solid #2e8b57;
    /* 左の緑線 */
    padding-left: 15px;
    margin-top: 60px;
    margin-bottom: 30px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    background-color: #f9f9f9;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    /* 横幅いっぱいにする */
}

/* トップページの黄色い下線を消す */
.article-body h2::after {
    content: none !important;
}

/* H3見出し（下線） */
.article-body h3 {
    font-size: 20px;
    color: #333;
    border-bottom: 2px dashed #abd6b3;
    padding-bottom: 5px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* 本文中の強調 */
.article-body strong {
    background: linear-gradient(transparent 60%, #ffecb3 60%);
    font-weight: bold;
}

/* 引用ブロック */
.article-body blockquote {
    background: #f0f8f0;
    border-left: 5px solid #abd6b3;
    margin: 30px 0;
    padding: 20px;
    color: #555;
    font-style: italic;
}

/* リスト */
.article-body ul {
    background-color: #fcfcfc;
    border: 1px solid #eee;
    padding: 20px 20px 20px 40px;
    border-radius: 10px;
}

/* 記事下のナビゲーション */
.article-footer {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.btn-back {
    display: inline-block;
    background-color: #eee;
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}

.btn-back:hover {
    background-color: #ddd;
}