/* === 共通スタイル === */

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  margin: 0;
  font-size: 16px;
  font-family: sans-serif;
  color: #333;
  background-color: #fff;
}

header {
  background: #f8f8f8;
  padding: 1em 1em;
  display: flex;
  justify-content: space-between;  /* ロゴとメニューを左右に配置 */
  align-items: center;
  flex-wrap: wrap; /* 幅が狭くなったら折り返す */
  flex-direction: row;  /* 横並びに戻す */
}

.logo {
  height: 60px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1em;
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

h1 {
  font-size: 2rem;         /* トップタイトル用 */
  font-weight: bold;
  margin: 1.5em 0 0.7em;
  line-height: 1.4;
}

h2 {
  font-size: 1.6rem;       /* セクションタイトル用 */
  font-weight: bold;
  margin: 1.5em 0 0.6em;
  line-height: 1.4;
/*  border-bottom: 2px solid #ccc; /* おしゃれな下線（任意） */
  background: linear-gradient(to bottom, transparent 60%, #fdf4d4 60%);
  padding-bottom: 0.2em;
}

h3 {
  font-size: 1.3rem;       /* 小見出し用 */
  font-weight: bold;
  margin: 1.2em 0 0.5em;
  line-height: 1.4;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }
}

.section {
  padding: 1em .5em;
  max-width: 800px;
  margin: auto;
  border-bottom: 1px solid #ddd;
}

.text-content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  padding: 1.5em;
  border-radius: 6px;
  white-space: pre-wrap;
  max-width: 800px;
  margin: 2em auto;
}

.text-small {
  font-size: 0.95rem;  /* 通常の1.1remより少し小さめ */
  color: #333;
  line-height: 1.6;
}

footer {
  background-color: #f8f8f8; /* お好きな背景色に変更OK */
  text-align: center;
  padding: 1em 0;
  color: #666; /* 文字色は調整可 */
  font-size: 0.9em;
}

.section,
.text-content {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .text-content {
    font-size: 1rem;
  }

  .text-small {
    font-size: 0.9rem;
  }
}

 /* ボタン設定 */
.center-button {
  text-align: center;
  margin-top: 2em;
}

.button-link {
  display: inline-block;
  padding: 0.8em 1.5em;
  font-size: 1rem;
  font-weight: bold;
  color: #2c3e50;
  background-color: #f2c14e;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.button-link:hover {
  background-color: #d4a331; /* 少し濃くなる */
}

.button-link {
  font-size: 1.1rem;
  padding: 1em 2em;
  border-radius: 8px;
}
/* ボタン設定 ここまで*/

.toppage-images {
  max-width: 100%;   /* 親要素の幅に合わせて縮む */
  height: auto;      /* 縦横比を維持 */
  display: block;
  margin: 2em auto;
}

.flyer {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
  border-radius: 8px; /* お好みで角丸 */
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); /* お好みで影 */
}

/* クリックで開くモーダル背景 */
#image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

/* 拡大表示される画像 */
#image-modal img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 10px #fff;
  border-radius: 6px;
  background: #fff;
}

