body {
  margin: 0;
  background-color: #fffdf4;
  color: #333;
}


/* 全体共通レイアウト */
.page-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

/* タイトル */
.main-title {
  font-size: 2.2em;
  margin: 0;
  color: #f46169;
}
.main-sub-title {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.sub-title {
  font-size: 1.8em;
  margin-bottom: 30px;
  color: #f46169;
  margin-top: 0;
}
/* セクションタイトル */
.section-title {
  font-size: 1.2em;
  margin-bottom: 0px;
}
.section-title-2 {
  font-size: 2.2em;
  margin-top: 2em;
  margin-bottom: 0px;
  position: relative;
  padding-left: 0.6em; /* 縦棒と文字の間隔 */
  border-left: 6px solid #f46169; /* ← 縦棒（太さ・色） */
}

.section-subtitle {
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #454545;
}
.theme-background {
  font-size: 2.0em;
  margin-top: 0;
  position: relative;
  display: inline-block; /* 背景を文字幅に合わせる */
  z-index: 1;
  padding: 0 8px;
}

.theme-background::before {
  content: "";
  position: absolute;
  top: 60%; /* 文字の下にかぶるように */
  left: 0;
  width: 100%;
  height: 12px; /* 下線の太さ */
  background-color: #fbc6c6; /* 好きな色に変更可能 */
  z-index: -1; /* 背景に配置 */
  border-radius: 4px;
}
.theme-background-2{
  font-size: 2.0em;
  margin: 2em 0 1em 0;
    position: relative;
  display: inline-block; /* 背景を文字幅に合わせる */
  z-index: 1;
  padding: 0 8px;
}
.theme-background-2::before {
  content: "";
  position: absolute;
  top: 60%; /* 文字の下にかぶるように */
  left: 0;
  width: 100%;
  height: 12px; /* 下線の太さ */
  background-color: #fbc6c6; /* 好きな色に変更可能 */
  z-index: -1; /* 背景に配置 */
  border-radius: 4px;
}


/* セクション2：縦並び */
.section-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.section-image img {
/*  width: 100%; */
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* セクション1：2カラム */
.two-column-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.text-column,
.image-column {
  flex: 1;
  min-width: 300px;
}

.image-column img {
/*  width: 100%; */
  height: auto;
  display: block;
}

/* セクション3：帯付きH3 */
.headline-box {
  background-color: #94bbe4;
  padding: 15px 20px;
  margin: 20px 0 20px;
}

.section-headline {
  color: #fff;
  margin: 0;
  font-size: 1.8em;
}

/* セクション3：3カラム */
.three-column-section {
    background-color: #ffffff;
    padding: 20px 20px;
    margin-top: 30px;
}

.three-column-box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

.column {
  flex: 1;
  min-width: 280px;
}
.center-column p{
}
.right-column p{

}

.left-column img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.right-column {
  background-color: #e5e5e5;
  color: #454545;
  padding: 15px;
  border-radius: 4px;
}

/* アコーディオン帯（H5） */
.accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #94bbe4;
  color: #fff;
  padding: 12px 20px;
  margin: 20px 0 0;
  cursor: pointer;
  font-size: 1em;
}
.accordion-content {
  display: none;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
}

/* 対面などを囲むBOX風装飾 */
.inline-box {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 0.85em;
    line-height: 1.4;
}

/* イベント情報の表示（共通化） */
.event-info {
  font-size: 1em;
  line-height: 1.6;
}

.date-group,
.event-title {
  display: inline;
}
@media screen and (max-width: 768px) {
  .main-title{
    font-size: 1.8em;
  }
  .sub-title {
    font-size: 1.4em;
  }
  .section-title {
  font-size: 1.0em;
  }

  .theme-background {
  font-size: 1.2em;
  }
  .theme-background-2{
  font-size: 1.2em;
  }
  .section-title-2 {
    font-size: 1.6em;
  }

  .page-wrapper {
    padding: 1em;
  }
  .image-column img {
    width: 100%;
  }
  .section-image img {
  width: 100%;
}
.left-column img{
  padding-top: 1em;
}


}

@media screen and (max-width: 768px) {
  .headline-box{
    padding: 0.5em;
    margin-top: 0em;
  }
  .section-headline {
    font-size: 1.4em;
  }
  .three-column-section {
    padding: 0.8em;
  }
}



/* レスポンシブ対応：スマホ時に縦並び */
@media screen and (max-width: 768px) {
  .two-column-box {
    flex-direction: column;
    align-items: stretch;
  }

  .three-column-box {
    flex-direction: column;
    gap: 0;
  }

  .date-group,
  .event-title {
    display: block;
  }

  .date-group {
    margin-bottom: 5px;
  }
  .center-column p{
    margin: 0 0 1em 0;
  }
  .right-column p{
    margin: 0;
  }
}

/* アイコン＋テキスト2カラム */
.icon-text-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.icon-column {
  flex: 0 0 20%;
}

.icon-column img {
  width: 90%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .icon-column img {
    width: 50%;
    height: auto;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1em;
  }
  .text-column {
    flex: 1;
    font-size: 1em;
    line-height: 1.6;
  }
}

/* スマホでは縦並び */
/* スマホ表示：縦並び＆テキストをアイコンに寄せる */
@media screen and (max-width: 768px) {
  .icon-text-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .icon-column,
  .text-column {
    width: 100%;
  }

  .icon-column {
    margin-bottom: 4px; /* アイコンとテキストの間を狭める */
  }

  .text-column p {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .icon-text-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0; /* ← gapをゼロにする */
  }

  .icon-column {
    margin-bottom: 0; /* ← 明示的にゼロに */
  }

  .text-column {
    margin-top: 0;
  }

  .text-column p {
    margin: 0; /* ← pタグの余白もリセット */
  }
}
.icon-title {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 0 4px 0;
}

.icon-date {
  font-size: 1.25em;
  color: #666;
  margin: 0 0 6px 0;
  padding-bottom: 0.5em;
}

.icon-subtitle {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.icon-description {
  margin: 0;
  line-height: 1.6;
}
.icon-title-with-line {
  color: #666666;
  position: relative;
  font-size: 1.6em;
  font-weight: bold;
  text-align: left;
  margin: 0 0 16px 0;
  display: inline-block;
  padding: 0 10px;
  background-color: transparent;
  z-index: 1;
}

/* 赤い太線（文字の下に） */
.icon-title-with-line::before {
  content: "";
  position: absolute;
  top: 60%;              /* 文字下に少しずらす */
  left: 0;
  width: 100%;
  height: 12px;           /* ← 太さを指定（例：4px） */
  background-color: #fbc6c6; /* ← 赤色の線 */
  z-index: -1;           /* ← 背後に配置 */
  border-radius: 2px;    /* 角を少し丸める（任意） */
}

/* ---------------------------
MAP
-------------------------- */
.map-section {
  margin-top: 40px;
  /* padding: 20px; ← 削除 */
  background-color: transparent; /* ← 背景色なしで透明に */
}

.map-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.map-text {
  flex: 1;
  min-width: 300px;
}

.map-embed {
  flex: 1;
  min-width: 300px;
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.map-info {
  font-size: 1em;
  line-height: 1.6;
}

.map-info dt {
  font-weight: bold;
  margin-top: 10px;
}

.map-info dd {
  margin: 0 0 10px 0;
  font-size: 1.25em;
}
.map-info dt {
  font-weight: bold;
  margin-top: 10px;
  background-color: #f79292; /* ピンク */
  color: #fff;               /* 白文字 */
  padding: 4px 8px;
  border-radius: 4px;        /* 任意：角丸 */
  display: inline-block;     /* 背景が文字の幅に合わせて表示される */
}

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

.site-footer {
  padding: 20px 10px;
  padding-bottom: 80px; /* ← 下の固定ボタン分を確保 */
  text-align: center;
  font-size: 0.85em;
  color: #666;
}
.fixed-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 999;
  height: 60px;
}

.fixed-button {
  flex: 1;
  text-align: center;
  padding: 18px 0;
  font-size: 1em;
  color: #fff;
  background-color: #b6c19f;
  text-decoration: none;
}

.fixed-button + .fixed-button {
  background-color: #94bbe4;
}

.fixed-button:hover {
  opacity: 0.9;
}
