@charset "UTF-8";

html {
  font-size: 16px;
  /*ゴシック */
  font-family: 'Noto Serif JP', 'Noto Sans JP', "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /* 明朝 */
  color: #000;
  font-weight: 400;
  letter-spacing: 0.01rem;
  line-height: 1.76;
}

/* コンテンツ幅 */
.inner {
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

/* フォント */

.en {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-style: normal;
}

/* PCのみ表示 */
.pc_only {
  display: none;
}

@media screen and (min-width: 681px) {
  .pc_only {
    display: block;
  }
}

/* スマホのみ表示 */
.sp_only {
  display: none;
}

@media screen and (max-width: 680px) {
  .sp_only {
    display: block;
  }
}

/* 投稿ページ用（single.php) */
.post {
  padding: 25vw 5vw 0;
}

@media screen and (min-width: 681px) {
  .post {
    padding: 150px 100px 0;
  }
}

.post .post-single {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  line-height: 1.8;
}

.post .post-title {
  font-size: 6vw;
  margin-bottom: 0.5em;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.3em;
}

@media screen and (min-width: 681px) {
  .post .post-title {
    font-size: 25px;
  }

}

.post .post-meta {
  font-size: 5vw;
  margin-bottom: 0.5em;
  padding-bottom: 0.3em;
}

@media screen and (min-width: 681px) {
  .post .post-meta {
    font-size: 20px;
  }

}

.post .post-date {
  font-size: 4vw;
  color: #888;
  margin-bottom: 1em;
}

@media screen and (min-width: 681px) {
  .post .post-date {
    font-size: 20px;
  }

}

.post .post-thumbnail img {
  width: 100%;
  height: auto;
  margin-bottom: 1.5em;
}

.post .post-content {
  font-size: 4.5vw;
  padding-bottom: 5vw;
}

@media screen and (min-width: 681px) {
  .post .post-content {
    font-size: 20px;
    padding-bottom: 1em;
  }

}

.post .category a {
  border: 1px solid #000;
  padding: 0 2vw;
}


.share-buttons {
  padding: 5vw;
}

@media screen and (min-width: 681px) {
  .share-buttons {
    padding: 50px 100px;
  }

}

.share-buttons p {
  font-size: 5vw;
  text-align: center;
}

@media screen and (min-width: 681px) {
  .share-buttons p {
    font-size: 30px;
  }

}

.share-buttons p.en {}

.share-buttons ul {
  display: flex;
  gap: 5vw;
  justify-content: center;
}

@media screen and (min-width: 681px) {
  .share-buttons ul {
    gap: 50px;
  }

}

.share-buttons ul li {
  display: flex;
}

.share-buttons li a {
  width: 10vw;
  transition: all .3s;
}

@media screen and (min-width: 681px) {

  .share-buttons li a {
    width: 50px;
  }

}

.share-buttons li a:hover {
  opacity: 0.5;
}