@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
* お知らせ／ライヴ一覧カード（posts.scss の .post__list、front.scss の
* .top__post-list で共通利用）
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	TOP
 * *************************************************/
/* 共通
----------------------------------------------*/
.top__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 48px;
}
@media print, screen and (min-width: 768px) {
  .top__content-wrapper {
    gap: 80px;
  }
}
@media print, screen and (min-width: 960px) {
  .top__content-wrapper {
    gap: 104px;
    padding-bottom: 64px;
  }
}

/* MV
----------------------------------------*/
#top__mv {
  max-width: 1072px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  #top__mv {
    margin-bottom: 64px;
  }
}
@media print, screen and (min-width: 960px) {
  #top__mv {
    margin-bottom: 80px;
  }
}

/* 新着情報／ライヴ情報
----------------------------------------*/
@media print, screen and (min-width: 960px) {
  .top__news-container,
  .top__live-container {
    display: flex;
    justify-content: space-between;
    gap: 64px;
  }
}
@media print, screen and (min-width: 960px) {
  .top__news-container .section-ttl,
  .top__live-container .section-ttl {
    width: 160px;
  }
}
.top__news-container .top__post-list,
.top__live-container .top__post-list {
  display: grid;
  gap: 1.5em 0;
  line-height: 1.6;
}
@media print, screen and (min-width: 960px) {
  .top__news-container .top__post-list,
  .top__live-container .top__post-list {
    gap: 0;
    width: calc(100% - 224px);
  }
}
.top__news-container .top__post-list a,
.top__live-container .top__post-list a {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0 1em;
}
@media print, screen and (min-width: 768px) {
  .top__news-container .top__post-list a,
  .top__live-container .top__post-list a {
    gap: 0 2em;
  }
}
@media print, screen and (min-width: 960px) {
  .top__news-container .top__post-list a,
  .top__live-container .top__post-list a {
    gap: 0 3em;
    padding: 12px;
    transition: all 0.3s ease;
  }
  .top__news-container .top__post-list a:hover,
  .top__live-container .top__post-list a:hover {
    background: rgba(0, 0, 0, 0.04);
  }
}
.top__news-container .top__post-list h3,
.top__live-container .top__post-list h3 {
  font-size: 1.4rem;
  font-weight: 400;
}
@media print, screen and (min-width: 960px) {
  .top__news-container .top__post-list h3,
  .top__live-container .top__post-list h3 {
    font-size: 1.6rem;
  }
}
.top__news-container .top__post-list.live a,
.top__live-container .top__post-list.live a {
  display: block;
}/*# sourceMappingURL=front.css.map */