@charset "UTF-8";
/*
Theme Name: Emanon Premium child
Theme URI: https://wp-emanon.jp/emanon-premium/
Author: 株式会社イノ・コード
Author URI: https://innocord.co.jp/
Description: Emanon Premiumnの子テーマです。
Template: emanon-premium
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:one-column, two-columns, three-columns, left-sidebar, right-sidebar, theme-options
*/

/* =========================
  勉強会告知用投稿ページCSS
========================= */

/* セクション全体の幅制限 */
section{
  width: 98%;
  max-width: 860px;
  margin: 0 auto 50px;
  padding: 0;
}

/* リンク色 */
.seminar-link{
  color: #e05c03!important; /* オレンジ系の色 */
  font-weight: bold;
  text-decoration: none;
}

/* 左側に青い棒がついた見出しh2 */
.seminar-info {
  font-size: 1.5rem;
  border-left: 6px solid #0c6aaf; /* 左の青い線 */
  padding: 0 0 0 15px;
  margin-bottom: 30px;
  display: flex;
	color: #000;
  align-items: center;
  line-height: 1.2;
}

html {
  scroll-padding-top: 100px !important;
  scroll-behavior: smooth !important;
}

/* スマホ対応 */
@media (max-width: 600px) {
html {
  scroll-padding-top: 70px !important;
}}

/* リード文 */
.intro-text {
font-size: 1.1rem;
font-weight: 600;
margin-top: 50px;
margin-bottom: 50px;
}

/* 目次テスト */
/* 外枠のコンテナ */
.toc-container {
  background-color: #f0f8ff; /* 薄い水色の背景 */
  border: 1px solid #333;    /* 濃いグレーの枠線 */
  border-radius: 15px;       /* 角丸 */
  padding: 15px 20px;        /* 内側の余白 */
  max-width: 500px;          /* 横幅（必要に応じて調整） */
  font-family: sans-serif;   /* フォント */
  color: #333;               /* 文字色 */
  margin: 0 auto;
}

/* 「■目次」のタイトル部分 */
.toc-title {
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* リスト全体 */
.toc-list {
  list-style: none; /* デフォルトのポレットを消す */
  padding: 0;
  margin: 0;
}

/* 各リスト項目 */
.toc-list li {
  padding: 6px 0; /* 上下の余白 */
  border-bottom: 1px dotted #333; /* 下側の点線 */
  font-size: 0.9rem;
}

.toc-list li:last-child {
  border-bottom: none;
}

/* カードを並べるFlexbox */
.schedule-card-container {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px !important; 
  width: calc(100% + 15px) !important; /* 引っ張った分だけ幅を広げる */
  padding: 0 !important;
  justify-content: flex-start !important;
}

/* 角丸カード本体 */
.schedule-card {
  flex: 0 1 calc(25% - 15px); /* 4個並びを基本としつつ伸縮 */
  min-width: 158px;            /* 最少幅 */
  min-height: 150px;           /* 高さを揃える */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 12px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* ドロップシャドウ */
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;    /* アニメーション用 */
  box-sizing: border-box;
  margin-left: 15px; 
  margin-right: 0;
  margin-bottom: 30px;
}


/* スマホ対応 */
@media (max-width: 600px) {
.schedule-card {
  min-width: 160px;            /* 最少幅 */
  min-height: 100px;           /* 高さを揃える */
	margin-bottom: 20px;
}}

/* ホバー（マウスを乗せた時）の挙動 */
.schedule-card:hover {
  transform: translateY(-5px); /* 少し上に浮く */
  box-shadow: 0 8px 15px rgba(0,0,0,0.15); /* 影を強く */
  border-color: #0c6aaf;       /* 枠線の色を変える */
}

/* クリックした時の挙動 */
.schedule-card:active {
  transform: translateY(0);    /* 沈む */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 黒いバッジ（第1部など） */
.schedule-badge,
.schedule-badge02 {
  display: inline-block;
  font-size: 0.75rem;
	font-weight: 600;
  padding: 2px 12px;
  width: fit-content;
  margin-bottom: 10px;
}

.schedule-badge {
  background: #000;
  color: #fff;
}

.schedule-badge02 {
  background: #9ec2e1;
  color: #333;
}

/* カード内のタイトル */
.schedule-card-title {
  font-size: 16px;
	font-weight: bold;
  color: #0c6aaf;
  margin: 0 0 5px 0;
  line-height: 1.2!important;
  flex-grow: 1; /* タイトルが短くても下の要素の位置を揃える */
}

/* 講師名 */
.schedule-instructor {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.1!important;
  margin-bottom: 10px;
}

/* 詳細を見る >> */
.schedule-detail-link {
  font-size: 14px;
  color: #e05c03; /* オレンジ系の色 */
  font-weight: bold;
  text-align: center;
}

.schedule-detail-link span {
  letter-spacing: -2px;
  margin-left: 5px;
}


/* 外側の枠：下線を横幅いっぱいに引く */
.lecture-heading-wrapper {
  border-bottom: 2px solid #c7c7c7; /* 下線の色と太さ */
  width: 100%;
  margin-bottom: 20px;
}

/* 見出し本体：右側を傾斜させる */
.lecture-heading,
.lecture-heading02 {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  margin: 0;
  /* 右側の傾斜の分、右のpaddingを少し多めにとるのがコツです */
  padding: 10px 40px 10px 24px; 
  font-family: sans-serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  
  /* clip-pathで右側を斜めにカット */
  /* 左上(0,0)、右上(85%,0)、右下(100%,100%)、左下(0,100%)の順 */
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.lecture-heading {
  background-color: #000000;
  color: #ffffff;
}

.lecture-heading02 {
  background: #9ec2e1;
  color: #333;
}

@media (max-width: 768px) {
  .lecture-heading,
  .lecture-heading02{
    font-size: 16px;
    padding: 8px 32px 8px 16px;
  }
}

/* 全体のレイアウト */
.lecture-detail {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #333;
  line-height: 1.6;
  font-family: sans-serif;
}

/* テーマ・タイトル */
.lecture-title {
  color: #0c6aaf;
  font-size: 1.4rem;
	line-height: 1.4!important;;
  margin-bottom: 20px;
}

/* スマホ対応 */
@media (max-width: 600px) {
.lecture-title {
  font-size: 1.2rem;
	line-height: 1.2!important;;
  }
}

/* 講師バッジ部分 */
.lecture-presenter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.instructor-badge {
  background-color: #009b4f;
  color: #fff;
  padding: 2px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
	font-weight: 600;
}
.presenter-name {
  font-weight: bold;
  font-size: 1.1rem;
}
.presenter-title {
  font-size: 0.9rem;
}

/* 説明文 */
.lecture-description {
  margin-bottom: 40px;
  font-size: 1rem;
  text-align: justify;
}

/* プロフィール外枠 */
.profile-container {
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 20px 30px;
  position: relative;
  margin-top: 30px;
}

/* 「講師プロフィール」のラベル位置 */
.profile-header {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #fff;
  padding: 0 10px;
  font-weight: bold;
  font-size: 1rem;
}
.profile-icon {
  color: #009b4f;
}

/* プロフィールの中身（横並び） */
.profile-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 10px;
}

/* 講師プロフィール画像 */
.profile-image {
  flex-shrink: 0;
  width: 180px;
  position: relative;
}
.profile-image img {
  width: 100%;
  display: block;
}

/* プロフィールテキスト */
.profile-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.profile-company {
  font-size: 0.9rem;
	font-weight: bold;
	color: #666;
  margin-bottom: 15px;
}
.profile-description {
  font-size: 0.9rem;
	line-height: 1.4;
	color: #333;
  margin-bottom: 15px;
}
.history-label {
  font-weight: bold;
  border-bottom: 1px solid #333;
  display: inline-block;
  margin-bottom: 10px;
}
.history-list {
  list-style: none;
  padding: 0;
  font-size: 0.85rem;
  margin: 0;
}
.history-list li {
  margin-bottom: 5px;
  display: flex;
}
.history-list li span {
  font-weight: bold;
  flex-shrink: 0;
  width: 70px;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .profile-container {
    padding: 20px 15px;
  }
  .profile-content {
    flex-direction: column;
    align-items: center;
  }
  .lecture-presenter {
    flex-wrap: wrap;
  }
}


/* 懇親会 */
.lecture-meetup{
	width:80%;
	margin:0 auto;
	padding: 20px;
	text-align: center;
}

.lecture-meetup img{
	width:100%;
	display: block;
}

/* スマホ対応 */
@media (max-width: 600px) {
.lecture-meetup{
	width:100%;
	padding: 10px;
}}

.apply-box{
width:80%;
margin: 30px auto;
border: 1px solid #CCC;
text-align: center;
padding:20px 30px;
}

/* 上部の特典テキスト */
.benefit-text {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

/* お申し込みボタン */
.apply-button {
  display: inline-block;
	width:80%;
  background-color: #e05c03; /* オレンジ色 */
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 15px;
	text-align: center;
  border-radius: 50px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 0 #b3562a; /* ボタンの厚み */
}

/* スマホ対応 */
@media (max-width: 600px) {
  .apply-box{
    width:100%;
    padding:20px 15px;
}
  .apply-button {
	  width:90%;
    font-size: 1.2rem;
    padding: 6px 10px;
  }
  .benefit-text {
    font-size: 0.9rem;
    letter-spacing: 0;
  }
}

/* ボタンホバー時 */
.apply-button:hover {
  background-color: #e67e4a;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #b3562a;
}

/* ボタンクリック時 */
.apply-button:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #b3562a;
}

/* 注意事項ボックス */
.apply-note-box {
  background-color: #fdf2f5; /* 薄いピンク背景 */
  border: 1px solid #d46a8a; /* ピンクの枠線 */
  border-radius: 10px;
  padding: 20px;
  text-align: left;
	width:100%;
	margin: 10px auto 50px;
}

.apply-note-content {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* 「！」アイコン */
.apply-note-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: #d46a8a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 3px;
}

/* 注意事項のテキスト */
.apply-note-text {
  font-size: 0.85rem;
  line-height: 1.3!important;
  color: #333;
}

.apply-note-text p {
  margin: 0 0 10px 0;
}

.apply-note-text p:last-child {
  margin-bottom: 0;
}


/* =============================================
   ジャンル別 関連記事フィード
============================================= */

/* セクション全体 */
.genre-related-feed {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 50px;
  padding: 30px 0 0;
  border-top: 2px solid #0c6aaf;
}

/* ヘッダー（バッジ＋タイトル横並び） */
.genre-related-feed__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

/* ジャンルバッジ */
.genre-related-feed__badge {
  display: inline-block;
  background-color: #0c6aaf;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 3px 14px;
  border-radius: 10px;
  white-space: nowrap;
}

/* フィードセクションのタイトル */
.genre-related-feed__title {
  font-size: 1.1rem !important;
  font-weight: bold;
  color: #333;
  margin: 0 !important;
  border: none !important;
  padding: 0 !important;
  line-height: 1.3;
}

/* リストリセット */
.genre-related-feed__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各記事アイテム */
.genre-related-feed__item {
  border-bottom: 1px dotted #ccc;
}

.genre-related-feed__item:last-child {
  border-bottom: none;
}

/* リンク（横並びレイアウト） */
.genre-related-feed__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  text-decoration: none;
  color: #333;
  transition: opacity 0.2s ease;
}

.genre-related-feed__link:hover {
  opacity: 0.75;
}

/* サムネイル */
.genre-related-feed__thumb {
  flex-shrink: 0;
  width: 106px;
  height: 60px;
  overflow: hidden;
  border-radius: 6px;
  background-color: #eee;
}

.genre-related-feed__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 画像なしのときのプレースホルダー */
.genre-related-feed__no-thumb {
  width: 100%;
  height: 100%;
  background-color: #dce8f3;
}

/* テキスト部分 */
.genre-related-feed__meta {
  flex: 1;
  min-width: 0;
}

/* 日付 */
.genre-related-feed__date {
  display: block;
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 4px;
}

/* 記事タイトル */
.genre-related-feed__post-title {
  font-size: 0.95rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  /* 2行で省略 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .genre-related-feed {
    padding-top: 20px;
  }
  .genre-related-feed__thumb {
    width: 85px;
    height: 48px;
  }
  .genre-related-feed__post-title {
    font-size: 0.88rem;
  }
}

/* =========================
  新規固定ページ用共通CSS（26/06/03）
========================= */

/* ===== common.css ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@400;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  --blue-dark:    #013462;
  --blue-medium:  #387eb2;
  --blue-btn:     #005898;
  --blue-light:   #e6f7ff;
  --gold:          #c8a030;
  --text-dark:     #2c2c2c;
  --text-medium:   #555555;
  --text-light:    #888888;
  --bg-white:      #ffffff;
  --bg-light:      #f7f7f4;
  --bg-sidebar:    #fafaf8;
  --border-color:  #e0dcd0;
  --border-light:  #eeeae2;
  --font-jp:       'Noto Sans JP', sans-serif;
  --font-serif:    'Noto Serif JP', serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* html font-size: 62.5% → 削除済み。新規ページCSSはpx指定に統一 */
body {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== Top Announcement Bar ===== */
.announce-bar {
  background: var(--blue-dark);
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 6px 16px;
  letter-spacing: 0.05em;
}

/* ===== Site Header ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

/* Logo */
.site-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo-img {
  height: 48px;   /* 画像の高さを調整 */
  width: auto;
  display: block;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  font-size: 16px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-jp {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.03em;
}
.logo-en {
  font-size: 9px;
  color: var(--blue-medium);
  margin-bottom: 3px;
}

/* Navigation */
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}
.site-nav ul li a {
  display: block;
  padding: 6px 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}

/* ホバー下線 */
.site-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--blue-medium);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav ul li a:hover {
  font-weight: 600;
  color: var(--blue-medium);
}

.site-nav ul li a:hover::after {
  transform: scaleX(1);
  color: var(--blue-medium);
}

/* メニュー間の区切り線 */
.site-nav ul li {
  position: relative;
}
.site-nav ul li + li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px; /* ← ここを調整 */
  background: #d0ccc0;
}

/* ===== Section Heading Style ===== */
.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-heading::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--green-medium);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== Common Button ===== */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-btn);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.btn-green:hover { 
  background-color: var(--blue-dark);
  color: #fff;
}
.btn-green .arrow { font-size: 12px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--blue-btn);
  color: var(--blue-btn);
  background: transparent;
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background-color: var(--blue-btn); color: #fff; }

/* ===== Site Footer ===== */
.site-footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  padding: 38px 20px 0;
  width: 100%;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  border : 0;
}
.footer-brand p {
  font-size: 12px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 14px;
}

.footer-nav h4, .footer-contact h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-color);
}
.footer-nav ul li, .footer-contact ul li {
  margin-bottom: 4px;
}
.footer-nav ul li a, .footer-contact ul li a {
  font-size: 12px;
  color: var(--text-medium);
  transition: color 0.2s;
}
.footer-nav ul li a:hover, .footer-contact ul li a:hover {
 color: var(--blue-medium); 
 font-weight: 600;
 text-decoration: underline;
}

.footer-contact-wrap p {
  font-size: 12px;
  color: var(--text-medium);
  margin-bottom: 14px;
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 14px 20px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-light);
}
.footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-bottom-inner a:hover {
  text-decoration: underline;
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-color);
  text-align: center;
}
.footer-bottom-bar .footer-bottom-inner {
  font-size: 11px;
  margin: 18px auto;
  color: var(--text-medium);
}

/* メルマガ登録 */

  .merumaga-container {
    width: auto;
    max-width: 260px;
    background-color: var(--blue-light);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    padding: 18px 12px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
  }

  .merumaga-header {
    text-align: center;
    margin-bottom: 14px;
    width: 100%;
  }

  .merumaga-title {
    line-height: 1.2;
    padding-bottom: 8px;
    position: relative; /* For the line */
	font-size: 14px;
	font-weight: 600;
    display: inline-block;
  }

  .merumaga-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .merumaga-description {
    font-size: 12px;
    color: var(--text-color-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 10px; /* Slight side padding */
    width: 100%;
    box-sizing: border-box;
    text-align: left;
  }

.btn-merumaga {
  align-items: center;
  gap: 8px;
  background-color: #005898;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-merumaga:hover { 
  background-color: #013462;
  color: #fff;
}

/* お問い合わせボタン */
.footer-contact {
  display: inline-block;
  margin-bottom: 20px;
}
.btn-contact {
  background: var(--blue-btn);
  color: #fff;
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.btn-contact:hover { 
  background-color: var(--blue-dark); 
  color: #fff;
}
.btn-contact::before {
  content: '✉';
  font-size: 11px;
}

body .site-footer .footer-inner {
  align-items: start;
}

/* =========================
  フロントページ用CSS（26/06/16）
========================= */

/* ===== index.css ===== */

/* ===== Rename Notice ===== */
.rename-notice {
  background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
  border: 2px solid #d4a017;
  border-radius: 5px;
  margin-bottom: 12px;
  width: 100%;
}
.rename-notice-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 14px;
  align-items: flex-start;
}
.rename-notice-badge {
  background: #c0392b;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 2px 10px 3px;
  border-radius: 4px;
}
.rename-notice-text {
  font-size: 15px;
  font-weight: 600;
  color: #5a3e00;
  margin-top: 15px;
  line-height: 1.4;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .rename-notice-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 16px;
  }
  .rename-notice-text {
    font-size: 13.5px;
  }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  padding: 0;
}

.hero-image {
  width: 100%;
}

.hero-image img {
  display: block;
  width: 100%;
  max-width: 1900px;
  height: auto;
  margin: 0 auto;
}

.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active { background: #fff; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 14px;
  color: var(--text-dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.hero-arrow.prev { left: 10px; }
.hero-arrow.next { right: 10px; }

/* ===== Page Body Layout ===== */
.page-body {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0px 20px 60px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}

/* ===== Sidebar ===== */
.sidebar {
  position: sticky;
  top: 20px;
}

/* Seminar Box */
.seminar-box {
  background: #fff;
  border: 2px solid var(--blue-dark);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 28px;
}
.seminar-box-header {
  background: var(--blue-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  text-align: center;
  letter-spacing: 0.05em;
}
.seminar-box-body {
  padding: 14px;
}
.seminar-tag {
  display: inline-block;
  background: var(--bg-light);
  color: var(--text-medium);
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.seminar-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.seminar-date {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-medium);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.seminar-date span { font-size: 13px; font-weight: 400; }
.seminar-photo {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.seminar-info {
  display: block;
}

.seminar-info{
  display: block;
  line-height: 1.6;
  font-size: 11.5px;
  color: var(--text-medium);
  margin-bottom: 14px;
}

.seminar-info strong {
  display: inline;
  min-width: 0;
  margin-right: 0.25em;
  white-space: nowrap;
}

/* Self-site banner area */
.self-banner {
  border: 1.5px dashed var(--border-color);
  border-radius: 5px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  font-size: 12px;
  background: var(--bg-light);
}
.self-card{
  border: 2px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
  background: #fff;
}
.self-card:hover  { 
  background-color: var(--bg-light);
}

.self-card-bnr{
  border: 1px solid var(--border-color);
  overflow: hidden;
  align-items: center;
  padding: 0;
  gap: 8px;
}

.self-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.self-tagline {
  font-size: 12px;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.self-note {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0px;
}

/* Sponsor Section */
.sidebar-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 10px 0;
  border-bottom: 2px solid var(--blue-medium);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-section-title::before {
  content: '';
  width: 4px;
  height: 16px;
  background: var(--blue-medium);
  border-radius: 2px;
}
.sponsor-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.sponsor-card{
  border: 1px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
  background: #fff;
}

.sponsor-card:hover {
  border: 2px solid var(--border-color);
}

.sponsor-logo {
  height: 38px;
  width: auto;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sponsor-logo img{
  height: 100%;
  width: 100%;
}

.sponsor-info { flex: 1; overflow: hidden; }
.sponsor-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sponsor-tagline {
  font-size: 12px;
  color: var(--text-medium);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.support-note {
  font-size: 12px;
  font-weight: 600;
  color: #c0392b;
  margin-left: 12px;
  margin-bottom: 12px;
}

/* ===== Main Content ===== */
.main-content {
width: 100%;
max-width: 1180px;
margin: 0 auto;
}

/* Latest News */
.news-section {
  margin-bottom: 40px;
}
.news-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}
.news-item {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
  cursor: pointer;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: var(--bg-light); }
.news-thumb {
  width: 160px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.news-thumb .img-placeholder { width: 100%; height: 100%; font-size: 10px; }
.news-meta {}
.news-date {
  font-size: 12.5px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.news-title {
  font-size: 16.5px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}
.news-arrow {
  color: var(--text-light);
  font-size: 14px;
}
.news-more {
  text-align: center;
}

/* About Section */
.about-section {
  margin-bottom: 20px;
  margin-top: 10px;
  padding: 40px 20px 40px;
  background: var(--bg-light);
}
.about-content {
display: flex;
}
.about-text {
  flex-basis: 60%;
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.9;
  font-weight: 400;
  margin-right: 20px;
}
.about-image {
  flex-basis: 38%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
}
.about-image .img-placeholder { width: 100%; height: 100%; }

.about-more {
  text-align: center;
  margin: 30px auto 0;
}

/* Recommended Section */
.recommend-section {
  width: 100%;
  padding: 30px auto;
  background: var(--bg-light);
  box-sizing: border-box;
}

.recommend-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.recommend-heading {
  text-align: center;
  margin: 40px auto 30px;
  margin-bottom: 16px;
}

.recommend-heading h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #333;
}

.recommend-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.recommend-card {
  background: #fff;
  border-radius: 24px;
  padding: 8px;
  box-sizing: border-box;
}

.recommend-card-inner {
  height: 100%;
  padding: 15px 10px;
  border: 2px dashed var(--blue-medium);
  border-radius: 22px;
  box-sizing: border-box;
}

.recommend-image {
  width: 100%;
  margin: 0 0 15px;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
}

.recommend-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.recommend-card h3 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--blue-medium);
}

.recommend-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

/* Members Section */
.members-section {
  margin-top: 80px;
  margin-bottom: 80px;
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.member-card {
  border: 1px solid var(--gold);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.member-header {
  display: flex;
  gap: 12px;
  padding: 16px;
  align-items: flex-start;
}
.member-photo {
  width: 100px;
  height: 100px;
  border-radius: 5%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border-light);
}
.member-photo .img-placeholder { width: 100%; height: 100%; font-size: 9px; }
.member-meta {}
.member-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}
.member-title {
  font-size: 11px;
  color: var(--blue-medium);
  font-weight: 500;
  margin-bottom: 0px;
}
.member-desc {
  font-size: 12px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-top: 4px;
}
.member-body {
  border-top: 1px solid var(--border-light);
  padding: 14px 16px;
  background: var(--bg-light);
  flex: 1;
}
.member-text-area {
  font-size: 13.5px;
  color: var(--text-medium);
  text-align: left;
  padding: 12px 0;
}

/* Testimonials Section */
.testimonials-section {
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 30px 15px;
  background-color: var(--bg-light);
}

.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-window {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - 24px) / 3);
  border: 1px solid var(--blue-medium);
  border-radius: 8px;
  padding: 20px 14px;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #c8d9cb;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #7fa885;
}

.testimonial-name-area {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-medium);
  text-align: center;
}

.testimonial-text-area {
  font-size: 13.5px;
  padding-top: 20px;
  color: var(--text-medium);
  text-align: left;
  line-height: 1.8;
}

.testimonial-arrow {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: var(--blue-medium);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  padding: 0 0 4px;
  box-sizing: border-box;
}

.testimonial-arrow:hover {
  opacity: 0.85;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-page {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--blue-medium);
  background: #fff;
  color: var(--blue-medium);
  font-weight: 700;
  cursor: pointer;
}

.testimonial-page.active {
  background: var(--blue-medium);
  color: #fff;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .testimonial-slider {
    gap: 8px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-arrow {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

/* FAQ Section */
.faq-section {
  margin-top: 80px;
  margin-bottom: 40px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1.5px solid var(--blue-light);
  border-radius: 6px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  background: var(--blue-light);
  transition: background 0.15s;
}
.faq-question:hover { background: var(--bg-light); }
.faq-q-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-q-text::before {
  content: 'Q.';
  font-weight: 600;
  color: var(--blue-medium);
  font-size: 14px;
  flex-shrink: 0;
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--blue-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 14px 18px;
  background: #fff;
  font-size: 14.5px;
  color: var(--text-medium);
  border-top: 1px solid var(--border-light);
}
.faq-item.open .faq-answer { display: block; }

/* =====================
  1024px以下（タブレット）
  ===================== */
@media (max-width: 1024px) {

.site-logo-img {
  height: 42px;
}
.site-nav ul li a {
  font-size: 12px;
}
.footer-inner {
  max-width: 1000px;
  padding: 0 30px;
  grid-template-columns: 280px 1fr 1fr 240;
  gap: 30px;
}

/* メルマガ登録 */
  .merumaga-container {
    padding: 16px 10px 30px;
  }
  .merumaga-title {
	font-size: 12px;
  }
.btn-merumaga {
  font-size: 12px;
  font-weight: 600;
  padding: 12px 10px;
}
}

/* =====================
   768px以下
   ===================== */
@media (max-width: 768px) {

  .announce-bar {
    font-size: 11px;
    padding: 6px 12px;
  }

  /* ヘッダー PC版ナビを非表示 */
  .site-nav {
    display: none;
  }

  .header-inner {
    height: 54px;
    padding: 0 16px;
  }

  .site-logo-img {
    height: 38px;
  }

  /* ===== フッター ===== */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1; /* ブランドは全幅 */
    margin: 0 auto;
  }
  .merumaga-container {
    grid-column: 1 / -1; /* メルマガも全幅 */
    width: 90%;
    max-width: 300px;
    margin: 0 auto 20px;
  }

  /* ===== フロントページ：ページボディ ===== */
  .page-body {
    grid-template-columns: 1fr;
    padding: 20px 16px 40px;
    gap: 28px;
  }

  /* サイドバーをメインの下に */
  .sidebar {
    order: 2;
    position: static;
  }
  .main-content {
    order: 1;
  }

  /* ===== フロントページ：各セクション ===== */
  /* おすすめカード：2列 */
  .recommend-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* メンバーグリッド：2列 */
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ニュースアイテム */
  .news-item {
    grid-template-columns: 120px 1fr;
  }
  .news-thumb {
    width: 120px;
    height: 68px;
  }
  .news-arrow {
    display: none;
  }

  /* アバウトセクション */
  .about-content {
    flex-direction: column;
    gap: 16px;
  }
  .about-text {
    flex-basis: auto;
    margin-right: 0;
    font-size: 14px;
  }
  .about-image {
    flex-basis: auto;
    height: 200px;
    width: 100%;
  }

  /* ===== サポート会員ページ ===== */
  .partner-page-body {
    flex-direction: column;
    padding: 20px 16px 40px;
  }

  /* サイドバーをメインの下に */
  .partner-sidebar {
    order: 2;
    width: 100%;
  }
  .partner-main {
    order: 1;
    width: 100%;
  }

  /* カテゴリグリッド：1列 */
  .category-grid {
    grid-template-columns: 1fr;
  }

  /* 会費ボックス */
  .fee-box-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* イントロ */
  .partner-intro {
    flex-direction: column;
    gap: 16px;
  }
  .partner-intro-image {
    width: 100%;
  }

}

/* =====================
   420px以下（スマホ縦・小型）
   ===================== */
@media (max-width: 420px) {

  .announce-bar {
    font-size: 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ===== フロントページ：カードはすべて縦並び ===== */
  /* おすすめカード：1列 */
  .recommend-cards {
    grid-template-columns: 1fr;
  }

  /* メンバーグリッド：1列 */
  .members-grid {
    grid-template-columns: 1fr;
  }

  /* テストモニアルカード：1列 */
  .testimonial-card {
    flex: 0 0 100%;
  }

  /* ニュースアイテム：サムネ非表示 */
  .news-item {
    grid-template-columns: 1fr;
  }
  .news-thumb {
    display: none;
  }
  .news-title {
    font-size: 14px;
  }

  /* セクション見出し */
  .section-heading {
    font-size: 18px;
  }

  /* ===== サポート会員ページ：カードはすべて縦並び ===== */
  .partner-page-title {
    font-size: 17px;
  }
  .partner-section-heading {
    font-size: 16px;
  }

  /* カテゴリカード：1列（768pxですでに1列だが明示） */
  .category-grid {
    grid-template-columns: 1fr;
  }

  /* スポンサーカード：1列（縦積み） */
  .sponsor-list {
    grid-template-columns: 1fr;
  }

  /* 会費 */
  .fee-amount {
    font-size: 28px;
  }
  .fee-box-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

}


/* ==========================================
   New Testimonials Section (Simple Grid)
   ========================================== */
.testimonials-simple-section {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 50px;
  padding: 24px;
  background-color: #f7f7f4;
  box-sizing: border-box;
}

/* グリッドレイアウトの定義 */
.testimonials-simple-grid {
  display: grid;
  /* PC版：各段3枠（1frを3つ） */
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

/* 各枠（カード）のスタイル */
.testimonial-simple-card {
  background-color: #fff;
  border: 2px solid #387eb2;
  border-radius: 8px;
  padding: 20px 14px;
  box-sizing: border-box;
  
  /* 高さ固定とスクロール制御のための設定 */
  height: 280px;  /* 枠の高さ */
  display: flex;
  flex-direction: column;
}

/* アバター画像 */
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #c8d9cb;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #7fa885;
  flex-shrink: 0; /* 高さが縮まないように固定 */
}

/* カード内のコンテンツエリア */
.testimonial-simple-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden; /* 親枠からはみ出すのを防ぐ */
}

.testimonial-simple-name {
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  color: #333;
  font-size: 14px;
  flex-shrink: 0;
}

/* テキスト部分：溢れたら縦スクロール */
.testimonial-simple-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #555;
  
  /* 縦スクロールを有効にする重要設定 */
  overflow-y: auto;
  flex-grow: 1;
  padding-right: 4px; /* スクロールバーと文字の被り防止 */
}

/* スクロールバーのデザインをお洒落に細くする（任意） */
.testimonial-simple-text::-webkit-scrollbar {
  width: 6px;
}
.testimonial-simple-text::-webkit-scrollbar-thumb {
  background: #c8d9cb;
  border-radius: 3px;
}

/* ==========================================
   メディアクエリ（レスポンシブ）
   ========================================== */

/* タブレット版：3段、各2枠 */
@media (max-width: 768px) {
  .testimonials-simple-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .testimonial-simple-card {
    height: 260px; /* 画面が狭くなるときに合わせて高さも少し調整可能 */
  }
}

/* スマホ版：6段、各1枠 */
@media (max-width: 420px) {
  .testimonials-simple-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .testimonial-simple-card {
    height: auto;      /* スマホは縦長になりやすいため、高さ自動（または固定のまま） */
    min-height: 220px; /* 最低限の高さを担保 */
  }
  .testimonial-simple-text {
    overflow-y: visible; /* スマホではスクロールさせず、そのまま下に伸ばす方が操作しやすいため推奨（固定したい場合は削除してください） */
  }
}