@import url("../0.common/common.css");


.page-center {
  min-height: calc(100vh - 100px);
  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;
}

/* ------------------------------
   メインビジュアル
------------------------------ */
.main-visual {
  position: relative;
  padding-top: 60px;
  justify-content: center;
  margin: 0 auto;
  max-width: 900px;
}

.main-visual img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  object-position: center top;
  transform-origin: center top;
}

/* ------------------------------
   ニュース
------------------------------ */

.news-block {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  width: min(360px, calc(100% - 48px));
  padding: 8px 24px 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
}


.news-title {
  font-size: 1.2rem;
  margin: 0 0 4px;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  display: flex;
  font-size: 0.8rem;
  gap: 20px;
  padding: 2px 0;
  border-bottom: 1px solid #ffffff;
}

.news-list .date {
  color: #777;

}

.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;
}


/* ------------------------------
   縦カード（About / Schedule）
------------------------------ */
.section-block {
  max-width: 900px;
  margin: 10px auto;
  text-align: center;
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-block>img,
.section-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.section-link {
  display: inline-block;
  margin: 20px 0 40px;
  font-size: 1.2rem;
  text-decoration: none;
  color: #333;
}

.card-content {
  padding: 20px 32px;
}

.card-title {
  font-size: 1.8rem;
  margin: 0 0 20px;
  font-weight: bold;
}

.card-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
}

.card-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-link {
  display: inline-block;
  padding: 12px 40px;
  background-color: #98847E;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: bold;
  transition: opacity 0.3s, transform 0.3s;
}

.btn-link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ------------------------------
   PC
------------------------------ */
@media (min-width: 768px) {
  .main-visual img {
    height: 100vh;
    transform: translateY(-180px);
  }

  .main-visual {
    margin-bottom: -180px;
  }

  .news-block {
    margin-bottom: 180px;
    left: 24px;
  }

}