@charset "UTF-8";

/* =====================================================
   INFO TOP – MYTHOS 
===================================================== */

.info-top{
  background:#fff;
}

.info-top .section-head{
  text-align:center;
}

/* =====================================================
   LIST
===================================================== */

.info-top__list{
  list-style:none;
  max-width:820px;
  margin:0 auto;
  padding:0;

  border-top:1px solid rgba(0,0,0,.10);
}

.info-top__row{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:28px;
  align-items:center;

  padding:22px 0;
  border-bottom:1px solid rgba(0,0,0,.10);

  text-align:left;
}

/* =====================================================
   DATE
===================================================== */

.info-top__date{
  font-family:var(--font-en,"Cinzel",serif);
  font-size:13px;
  letter-spacing:.08em;
  color:rgba(0,0,0,.55);
  white-space:nowrap;
}

/* =====================================================
   LINK（静寂hover）
===================================================== */

.info-top__link{
  text-decoration:none !important;
  color:rgba(0,0,0,.88) !important;

  font-size:15px;
  letter-spacing:.04em;

  transition:
    opacity var(--dur-2, 700ms) var(--ease),
    transform var(--dur-2, 700ms) var(--ease);
}

.info-top__link:link,
.info-top__link:visited,
.info-top__link:active{
  color:rgba(0,0,0,.88) !important;
  text-decoration:none !important;
}

.info-top__link:hover{
  opacity:.6;
  transform:translateY(1px);
}

/* =====================================================
   CTA（baseの .vip-btn 使用）
===================================================== */

.info-top__more{
  margin-top:var(--stack-3,28px);
  display:flex;
  justify-content:center;
}

.info-top__morelink{
  display:inline-block;
}

/* =====================================================
   EMPTY
===================================================== */

.info-top__empty{
  margin-top:var(--stack-3,28px);
  text-align:center;
  color:rgba(0,0,0,.6);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:768px){

  .info-top__list{
    max-width:100%;
  }

  .info-top__row{
    grid-template-columns:96px 1fr;
    gap:18px;
    padding:18px 0;
  }

  .info-top__date{
    font-size:12px;
  }

  .info-top__link{
    font-size:14px;
  }
}