@import url("99.Menu/common.css");

/* ------------------------------
   全体
------------------------------ */
body {
  margin: 0 auto;
  max-width: 1800px;
  padding-bottom: 100px;
  font-family: "Noto Sans JP", sans-serif;
  background: #ebe8e8;
  color: #333;
}

/* ------------------------------
   メインビジュアル
------------------------------ */
.main-visual {
  position: relative;
  margin-top: 12px;
}

.main-visual img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: center top;
  transform-origin: center top;
}

.page-center {
  min-height: calc(100vh - 104px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 52px;
}

.about-inner {
  background: transparent;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: none;
  text-align: center;
}

.news-block {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  width: min(360px, calc(100% - 48px));
  padding: 22px 24px 24px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.news-block::after {
  content: "";
  position: absolute;
  bottom: -18px;
  right: 32px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 18px solid rgba(255, 255, 255, 0.6);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.12));
}

/* ------------------------------
   縦カード（About / Schedule）
------------------------------ */
.section-block {
  max-width: 900px;
  margin: 80px auto;
  text-align: center;
}

.section-block img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.section-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.2rem;
  text-decoration: none;
  color: #333;
}

/* ------------------------------
   News
------------------------------ */
.news-block {
  max-width: 700px;
  margin: 40px auto;
  padding: 32px 48px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
}

.news-title {
  font-size: 1.4rem;
  margin: 0 0 12px;
  font-family: 'Lucida Handwriting', 'Brush Script MT', cursive;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

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

.news-list a {
  text-decoration: none;
  color: #333;
}

.news-more {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #333;
}

/* ------------------------------
   スマホ
------------------------------ */
@media (max-width: 768px) {
  .header-logo {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
  }
  .header-logo img {
    width: 180px;
  }
  .header-inner {
    padding-left: 200px;
  }
  .nav {
    display: none;
  }
  .hamburger {
    display: none;
  }
}