/*
 Theme Name: Aoba Create Blog (TT3 Child)
 Theme URI: https://aobacreate.net
 Author: Emi
 Author URI: https://aobacreate.net
 Description: Aoba Create のブログ用 Twenty Twenty-Three 子テーマ
 Version: 1.0.0
 Template: twentytwentythree
 Text Domain: myblog-tt3
*/

:root {
  --base-font-size: 15px;
  --base-line-height: 1.7;
}

@media (max-width: 600px) {
  :root {
    --base-font-size: 13px;
    --base-line-height: 1.4;
  }
}

/* ページ全体の背景色 */
body {
  background-color: #eeeeee; /* smokewhite */
}



/* カード右下のカテゴリタグ */
.work-card .wp-block-post-terms a {
  background-color: #4a5d73;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #fff;        
  display: inline-block;
  text-decoration: none; /* 下線消す */

  pointer-events: auto;
  cursor: pointer;
}

.work-card .wp-block-post-terms a:hover {
  background-color: #6f86a3;
}

.wp-block-post-terms__separator {
  visibility: hidden;
  display: inline-block;
  margin: 0 0.1em;
}

.entry-content {
  background-color: #fff;
  margin: 0 auto;
  max-width: 800px;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* スマホのときだけ、左右に少し余白を空ける */
/*
@media (max-width: 600px) {
  .entry-content {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
*/

.meta-content {
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
}

/* スマホだけ左右に余白を足す */
@media (max-width: 600px) {
  .meta-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.wp-block-cover.hero {
  height: 260px;
  min-height: 260px;
}

@media (max-width: 600px) {
  .wp-block-cover.hero {
    height: 180px;
    min-height: 180px;
  }
}

/* 共通：カード */
.sitemap-card {
  padding: 1.5rem;
  border: 1px solid #333;
  border-radius: 12px;
  box-sizing: border-box;
}

/* 見出しとリストの間（PC基準） */
.sitemap-card h2 {
  margin-bottom: 0.8rem;
}

/* リスト基本 */
.sitemap-card ul {
  margin: 0;
  padding-left: 1rem;
}

.sitemap-card li {
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

/* スマホ最適化 */
@media (max-width: 600px) {

  .sitemap-card {
    font-size: 1rem;
  }

  .sitemap-card li {
    line-height: 1.5;
    margin-bottom: 0.35rem;
  }

  .sitemap-card a {
    display: block;
    padding: 0.6rem 0.4rem;
  }

  .sitemap-grid {
    grid-template-columns: 1fr !important;
  }
}

/**** style editorに登録　****/
.tagline-text {
  text-align: center;
}

.work-card .wp-block-post-title {
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
}

/* スマホでは左揃え */
@media (max-width: 600px) {
  .tagline-text {
    text-align: left;
    line-height: 1.4;
  }
  .work-card .wp-block-post-title {
    text-align: left;
    line-height: 1.4;
    margin-bottom: 16px;
  }
}

.work-card {
  padding: 32px 24px;
  border-radius:24px;
}

@media (max-width: 600px) {
  .work-card {
    padding: 16px 16px;
    border-radius:0;
  }
}





