@charset "UTF-8";
/* =====================================================
 BASE
===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 18px;
  line-height: 2;
}

/* =====================================================
 TOPページ 背景グラデーション（上に1枚）
===================================================== */
#pageHome {
  background-image: linear-gradient(to bottom, #1e7fc9 0%, #4fb0e6 25%, #bfe7fb 45%, #ffffff 55%);
  background-repeat: no-repeat;
  background-size: 100% 900px; /* ← 白を早めに */
  background-position: top center;
}

/* =====================================================
 共通
===================================================== */
.section {
  padding: 96px 0;
}

.inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px;
  background: transparent; /* ← 重要 */
}

img {
  max-width: 100%;
  display: block;
}

/* =====================================================
 タイトル
===================================================== */
.title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 48px;
  margin-bottom: 10px;
  padding-bottom: 2px; /* 画像分 少し余白を増やす */
  position: relative;
  text-align: left;
}

.titleInfo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  padding-bottom: 18px; /* 画像分 少し余白を増やす */
  position: relative;
  text-align: left;
}

.titleInfo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px; /* 画像の実サイズに合わせて調整 */
  height: 6px; /* line.png の高さに合わせる */
  background: url("../images/home/line.png") no-repeat left bottom;
  background-size: contain; /* 画像を潰さず表示 */
}

.titleInfo::before {
  display: none;
}

/* =====================================================
 リンク
===================================================== */
a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s, -webkit-text-decoration 0.2s;
  transition: opacity 0.2s, text-decoration 0.2s;
  transition: opacity 0.2s, text-decoration 0.2s, -webkit-text-decoration 0.2s;
}

a:hover {
  text-decoration: none;
  opacity: 0.6;
}

/* =====================================================
 本展について（画像背景＋白ベール）
===================================================== */
#purpose {
  background: url("../images/home/back.png");
  background-repeat: repeat-y; /* 縦に連続 */
  background-size: 100% auto; /* 横100%・縦は画像比率 */
  background-position: top center;
}

#purpose .caption3 {
  max-width: 1040px;
  font-size: 18px;
  margin: 0;
}

#purpose a {
  word-break: break-all;
}

/* =====================================================
 開催概要
===================================================== */
#overview {
  background: transparent;
}

#overview .overviewBox,
#overview .tab_box,
#overview .in_box {
  background: none;
  border: none;
  padding: 0;
}

#overview .row {
  display: flex;
  gap: 40px;
  padding: 24px 0;
  border-top: 1px solid #ccc;
}

#overview .row:first-child {
  border-top: none;
}

#overview .row_ttl {
  width: 180px;
  font-weight: 700;
}

#overview .row_cont {
  flex: 1;
  overflow-x: hidden;
}

#overview img {
  width: 100%;
  max-width: 410px;
  height: auto;
  margin: 16px 0;
}

@media screen and (max-width: 768px) {
  #overview img {
    width: 100%;
    height: auto;
  }
}
.caption {
  font-size: 10px; /* スマホ */
  line-height: 1.7; /* 読みやすい行間 */
  margin-top: 6px; /* 上余白（画像・本文との間） */
}

@media screen and (min-width: 768px) {
  .caption {
    font-size: 13px; /* PC */
    line-height: 1.8;
    margin-top: 8px;
  }
}
/* =====================================================
 フッター（元仕様）
===================================================== */
footer {
  background: #2E7E16;
  color: #fff;
  text-align: center;
}

footer a {
  color: #fff;
}

.copyright {
  font-size: 10px; /* スマホ */
  text-align: center;
  padding: 12px 0; /* 上下余白（推奨） */
  margin: 0px;
  color: #fff;
  line-height: 1.8; /* ← 行間を広げる（スマホ） */
}

@media screen and (min-width: 768px) {
  .copyright {
    font-size: 12px; /* PC */
    padding: 16px 0; /* PCは少し余白広め */
    margin: 0px;
    line-height: 2;
  }
}
/* =====================================================
 TOPへ戻る
===================================================== */
#go_top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
}

#go_top img {
  width: 48px;
}

/* =====================================================
 SP
===================================================== */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .section {
    padding: 72px 0;
  }
  .inner {
    padding: 0 20px;
  }
  .title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 40px;
    margin-bottom: 8px;
    padding-bottom: 1px; /* 画像分 少し余白を増やす */
    position: relative;
    text-align: left;
  }
  #overview .row {
    flex-direction: column;
    gap: 8px;
  }
  #overview .row_ttl {
    width: auto;
  }
}
/* =====================================================
 button
===================================================== */
.btn-outline {
  display: block; /* ← ここが重要 */
  width: -moz-fit-content;
  width: fit-content; /* ボタン幅は中身に合わせる */
  margin: 32px auto; /* 上下余白＋中央配置 */
  padding: 14px 32px;
  border: 3px solid #000;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .btn-outline {
    padding: 16px 28px;
    font-size: 14px;
    margin: 24px auto;
  }
}/*# sourceMappingURL=common.css.map */