body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
               "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.7;
  margin: 0;
  color: #222;
}


/* 中央よせ */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
　display: flex;
  gap: 30px;
}

/* メインとサイドバーの比率 */
.content {
  flex: 1;
}

.sidebar {
  width: 260px;
}




/* パンくず */
.breadcrumb {
  font-size: 0.9em;
  padding: 12px 24px;
  background: #f5f5f5;
}


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

h1 {
  margin-top: 0;
}


h2 {
  margin-top: 0;
}


p {
  margin-bottom: 1.2em;
}

.lead {
  margin-bottom: 32px;
}

.speaker-list {
  margin-bottom: 32px;
}

.event-list {
  border-top: 1px solid #ccc;
}

.event-item {
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
}

.event-item h3 {
  margin: 0 0 8px 0;
  font-size: 1.05em;
}

.event-item.canceled {
  color: #777;
}

/* 写真（柱に従わせる） */
.main-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 16px 0 32px 0;
}

/* index写真（文字幅あわせる） */
.section-photo {
  width: 100%;
  height: auto;
  margin: 10px 0 12px;
  display: block;
}


/* 講演会写真（文字幅あわせる） */
.section-photo kouenkai{
  width: 60%;
  height: auto;
  margin: 10px 0 12px;
  display: block;
}


/* その他の活動　写真（文字幅あわせる） */
.section-photo kouenkai{
  width: 100%;
  height: auto;
  margin: 10px 0 12px;
  display: block;
}


/* 通信の写真（文字幅あわせる） */
.section-photo kouenkai{
  width: 100px;
  height: auto;
  margin: 10px 0 12px;
  display: block;
}



/* ページ全体レイアウト */
.page-layout {
  display: flex;
  gap: 24px;
　align-items:flex-start;
}

/* ページ 崩れ防止 */
.page-layout {
  display: flex;
  gap: 30px;
}






/* 左メイン */
.page-layout .container {
  flex: 1;
}

/* 右サイドメニュー */
.side-menu {
  width: 220px;
  font-size: 0.9em;
}




/* スマホでは下に回す */
@media screen and (max-width: 768px) {
  .page-layout {
    flex-direction: column;
  }

  .side-menu {
    width: auto;
    border-top: 1px solid #ccc;
    padding-top: 16px;
  }
}　　　　　　　　　　　　　　





/* 講演会レイアウト */
.lecture-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.lecture-text {
  flex: 2;
}

.lecture-side {
  flex: 1;
  text-align: center;
}

.lecture-side img {
  max-width: 100%;
  height: auto;
  margin-bottom: 12px;
}

.qr-text {
  font-size: 0.9em;
  margin-bottom: 8px;
}


/* スマホ対応 */
@media screen and (max-width: 768px) {
  .lecture-box {
    flex-direction: column;
  }
}


/* スマホ崩れ防止 */

@media screen and (max-width: 768px) {
  .page-layout {
    flex-direction: column;
  }
}


/* lecture ページ内の画像 */
.lecture-page img {
  max-width: 100%;
  height: auto;
}






/* 講師一覧 */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.speaker-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.speaker-item img {
  width: 100px;
  height: auto;
}

/* 芭蕉の辻通信のページ */
.news-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.news-section h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-item {
  text-align: center;
}

.news-item img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  transition: transform 0.2s ease;
}

.news-item img:hover {
  transform: scale(1.03);
}

.news-title {
  margin-top: 10px;
  font-weight: bold;
}

.news-date {
  font-size: 0.9rem;
  color: #666;
}



/* 定款のページ */

.teikan-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.teikan-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
  border-bottom: 1px solid #ddd;
}


/* 定款のページ　ダウンロードボタン */
.teikan-download a {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #666;
  text-decoration: none;
  font-size: 0.9rem;
}

.teikan-download a:hover {
  background: #f0f0f0;
}



/* 定款のスマホ対応 */

@media screen and (max-width: 768px) {
  .teikan-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .teikan-download {
    margin-top: 10px;
  }
}



/* スマホは1列 */
@media screen and (max-width: 768px) {
  .speaker-grid {
    grid-template-columns: 1fr;
  }
}

/* スマホ通信のレイアウト */
@media screen and (max-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}


/* News：1段3コマにする */

.news-item img {
  width: 100%;
  height: auto;
  display: block;
}

.news-grid {
  align-items: start;
}



/* フッター */
.site-footer {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid #000;
  font-size: 14px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-name {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-info {
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 12px;
  color: #555;
}


