@charset "utf-8";

/*
Theme Name: GMO COIN Column Theme
Theme URL: https://coin.z.com/jp/column/
Description: GMOコインのコラムサイトのテーマです。
Author:  GMO-Z.com
Author URI: https://coin.z.com/jp/
Version: Ver.2.0
*/

.article {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.article-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
@media screen and (min-width: 769px) {
  .article-head {
    gap: 40px;
  }
}
.article-head__title {
  width: 100%;
  color: var(--color-blue);
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .article-head__title {
    font-size: 30px;
  }
}
.article-head__date {
  color: var(--color-black-thin);
  font-size: 14px;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .article-head__date {
    font-size: 15px;
    line-height: 1.6;
    padding-left: 24px;
  }
}
.article-head__date::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("https://coin.z.com/corp_imgs/icon/icon-time.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
  opacity: .8;
}
@media screen and (min-width: 769px) {
  .article-head__date::before {
    width: 16px;
    height: 16px;
    top: 52%;
  }
}
.article-content {
  margin-top: 32px;
}
@media screen and (min-width: 769px) {
  .article-content {
    margin-top: 40px;
  }
}