@charset "UTF-8";

/* メインエリア */
.main {
  max-width: 1200px;
  margin: 30px auto 50px;
  padding: 0 20px;
}

.top-visual {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 40px;
}

/* 左側 */
.top-left {
  background-color: #c0c0c0;
  flex: 1;
  height: auto;
  border-radius: 35px;

  /* ロゴ真ん中 */
  display: flex;
  justify-content: center;
  align-items: center;

  perspective: 1000px;
}

.top-left img {
  width: 70%;
  height: auto;
  animation: rotate-y 5s linear infinite;
  backface-visibility: visible;
}

.top-left img:hover {
  animation: rotation 5s linear infinite;
}

/* 右側 */
.top-right {
  flex: 1.5;
  display: flex;
}

.top-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
}

/* NEWS */
.news {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  font-family: "Montserrat", sans-serif;
}

/* NEWSとMOREの横並び */
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.news-title, .news-more {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.news-more {
  font-size: 1.5rem;
  color: #000;
  transition: 0.3s;
}

.news-more:hover {
  color: #ffbcdd;
}

/* 記事2つの横並び */
.news-list {
  display: flex;
  gap: 20px;
}

.news-item {
  flex: 1;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 15px;
  transition: 0.3s;
}

.news-item:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}

/* 日付とNEW! */
.news-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}

.news-date {
  color: #888;
  font-weight: bold;
}

.news-new {
  color: #ff0000;
  font-weight: bold;
  font-size: 0.9rem;
}

/* 記事タイトル */
.news-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  color: #333;
}

/* 回るアニメーション */
@keyframes rotate-y {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}