/* ===============================
   TOP SLIDER
================================ */
.slider {
  max-width: 1050px;
  margin: 20px auto 40px;
}

.slider img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   SECTION TITLE（TOP専用微調整）
================================ */
.section-title {
  text-align: center;
  font-size: 20px; /* common.css の h2 と揃える */
  margin: 30px 0 20px;
  letter-spacing: 0.05em;
}

/* ===============================
   ACHIEVEMENTS（YouTube）
================================ */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 30px;
}

.youtube-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

/* ===============================
   NEWS
================================ */
.news-list {
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 14px;
}

.news-list td {
  padding: 6px 8px;
  vertical-align: top;
  border-bottom: 1px dotted #ccc;
}

/* ラベル */
.label {
  display: inline-block;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  color: #fff;
  line-height: 1.2;
}

.label.event {
  background: #3a6cff;
}

.label.news {
  background: #666;
}

.more-news {
  text-align: center;
  margin: 10px 0 30px;
  font-size: 14px;
}

/* ===============================
   BLOG（TOP）
================================ */
.blog-top {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 14px;
}

.blog-top ul li {
  padding: 4px 0;
  border-bottom: 1px dotted #ccc;
}

.blog-more {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 600px) {
  .youtube-grid {
    grid-template-columns: 1fr;
  }

  .news-list {
    font-size: 13px;
  }
}

/* ===============================
   TOP MESSAGE（強調ブロック）
================================ */
.top-message {
  max-width: 900px;
  margin: 40px auto 50px;
  padding: 30px 20px;
  background: #fff;
  text-align: center;
  border-radius: 6px;
}

/* キャッチコピー */
.top-message .catch {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: #333;
}

/* サブコピー */
.top-message .sub {
  font-size: 15px;
  color: #555;
  letter-spacing: 0.05em;
  color: #3a6cff;
}

/* ===============================
   PCだけ左寄せにしたい場合（任意）
================================ */
@media (min-width: 601px) {
  .top-message {
    text-align: left;
    padding: 35px 40px;
    border-left: 6px solid #3a6cff;
  }
}

/* ===============================
   MESSAGE → SERVICE 導線
================================ */
.message-link {
  margin-top: 30px;
}

/* 説明文 */
.message-lead {
  font-size: 14px;
  margin-bottom: 10px;
}

/* ボタン */
.message-button {
  display: inline-block;
  padding: 10px 18px;
  background: #3a6cff;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.message-button:hover {
  opacity: 0.8;
}

/* スマホ：中央寄せ */
@media (max-width: 600px) {
  .message-link {
    text-align: center;
  }
}

/* PC：左寄せ */
@media (min-width: 601px) {
  .message-link {
    text-align: center;
  }
}

/* ===============================
   INSTAGRAM（TOP）
================================ */

.instagram-lead {
  text-align: center;
  font-size: 14px;
  color: #444;
  margin: 10px 0 20px;
}

.instagram-grid {
  max-width: 1000px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Instagram iframe調整 */
.instagram-media {
  width: 100% !important;
  min-width: auto !important;
  margin: 0 !important;
}

/* 下の導線 */
.instagram-more {
  text-align: center;
  margin-bottom: 40px;
  font-size: 14px;
}

.instagram-more a {
  color: #3a6cff;
  font-weight: 600;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 600px) {
  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .instagram-lead {
    font-size: 13px;
    padding: 0 10px;
  }
}



