/*
 * 公開終了のお知らせオーバーレイ。
 * 既存の style.css には手を入れず、このファイルだけで完結させる（取り消しを容易にするため）。
 * style.css より後に読み込むことで、背景ページのスクロール停止を上書きする。
 */

/* 背景（元ページ）のスクロールを止める。オーバーレイ内部だけがスクロールする。 */
html,
body {
  overflow: hidden !important;
  height: 100%;
}

.site-closed {
  position: fixed;
  inset: 0;
  z-index: 10000;
  overflow-y: auto; /* 文面が長い / 画面が小さい場合はオーバーレイ内でスクロールする */
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4vh 16px;
  background: rgba(28, 24, 18, 0.88);
  font-family: "Yuji Syuku", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

.site-closed__panel {
  width: 100%;
  max-width: 760px;
  margin: auto; /* 縦にも中央寄せ。ただし内容が高いときは上詰めになる */
  padding: 40px 28px;
  border-radius: 4px;
  background: #fdfbf6;
  color: #2b2318;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.site-closed__title {
  margin: 0 0 28px;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.site-closed__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin: 20px auto 0;
  background: #b9a887;
}

.site-closed__body {
  margin: 0 24px 18px 24px;
  font-size: 17px;
  line-height: 2.1;
  text-align: left;
}

.site-closed__signature {
  margin: 24px 24px 0 0;
  font-size: 16px;
  line-height: 2;
  text-align: right;
}

.site-closed__links-heading {
  margin: 40px 0 20px;
  padding-top: 28px;
  border-top: 1px solid #e3dccd;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #6b5f4a;
}

.site-closed__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-closed__links li {
  flex: 1 1 200px;
  max-width: 240px;
}

.site-closed__links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  padding: 18px 14px;
  border: 1px solid #e3dccd;
  border-radius: 4px;
  background: #fff;
  color: #2b2318;
  text-decoration: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.site-closed__links a:hover,
.site-closed__links a:focus {
  border-color: #b9a887;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.site-closed__links img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
}

/* 横長のバナー画像（縦横比 2.5:1 以上）。高さで抑えると文字が潰れるため、幅を基準にする。 */
.site-closed__links img.is-banner {
  width: 100%;
  max-height: none;
}

.site-closed__links span {
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .site-closed__panel {
    padding: 28px 18px;
  }

  .site-closed__title {
    font-size: 19px;
  }

  .site-closed__body {
    margin-bottom: 10px; /* 段落間 */
    font-size: 15px;
    line-height: 1.2;
  }

  .site-closed__signature {
    margin: 16px 0 0 0;
  }

  .site-closed__links li {
    flex: 1 1 100%;
    max-width: none;
  }
}
