@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/

/* ==========================================================
   共通ヘッダー（header.php）
   本体サイト(wp-experts/style.css)の .header 系デザインに合わせる。
   Cocoon本体側の汎用クラス(.header 等)との衝突を避けるため
   "lt-" を付与して命名。
   ロゴ画像(logo_leon.svg)は本リポジトリに同梱されていないため、
   背景画像の代わりにテキストロゴで表示する。
   ========================================================== */
.lt-site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  transition: top 0.3s ease;
  box-shadow: 0px 0px 6px 0px #3e3e3e;
}

.lt-site-header__inner {
  width: 100%;
  max-width: 1280px;
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.lt-site-header__logo {
  width: 25%;
  padding-left: 32px;
  float: left;
  box-sizing: border-box;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.lt-site-header__logo a {
  display: block;
  width: 102px;
  height: 45px;
  font-size: 0;
  background: url("/assets/img/common/logo_leon.svg") no-repeat;
  background-size: 102px 45px;
}

.lt-site-header__nav ul li a {
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (min-width: 897px) {
  .lt-site-header__nav {
    width: 75%;
    display: block !important;
  }
}

@media screen and (max-width: 896px) {
  .lt-site-header__nav {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    height: calc(100vh - 74px);
    background-color: #00561f;
    opacity: 0.95;
  }
}

@media screen and (min-width: 897px) {
  .lt-site-header__nav ul {
    text-align: right;
    padding-right: 20px;
  }
}

@media screen and (max-width: 896px) {
  .lt-site-header__nav ul {
    height: 100%;
    padding: 20% 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: space-around;
  }
}

@media screen and (min-width: 897px) {
  .lt-site-header__nav ul li {
    display: inline-block;
    margin: 0 20px;
    position: relative;
  }
}

@media screen and (max-width: 896px) {
  .lt-site-header__nav ul li {
    text-align: center;
  }
}

@media screen and (min-width: 897px) {
  .lt-site-header__nav ul li a {
    color: #222222;
    font-size: 14px;
    line-height: 1.8em;
    text-align: center;
  }
  .lt-site-header__nav ul li a:hover:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #00561f;
    animation: nav-hover 0.5s forwards;
  }
}

@media screen and (max-width: 896px) {
  .lt-site-header__nav ul li a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.25em;
  }
}

@media screen and (max-width: 896px) {
  .lt-site-header__sp-menu {
    position: absolute;
    right: 0;
    top: 0;
    width: 88px;
    height: 75px;
  }
  .lt-site-header__sp-menu span {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    margin: 0 auto;
    display: block;
    width: 37px;
    height: 1px;
    background-color: #00561f;
  }
  .lt-site-header__sp-menu span:before, .lt-site-header__sp-menu span:after {
    content: "";
    position: absolute;
    width: 37px;
    height: 1px;
    background-color: #00561f;
  }
  .lt-site-header__sp-menu span:before {
    margin-top: -14px;
  }
  .lt-site-header__sp-menu span:after {
    bottom: -14px;
  }
  .lt-site-header__sp-menu.on {
    background-color: #00561f;
    transition: all 0.4s;
  }
  .lt-site-header__sp-menu.on span {
    height: 0;
  }
  .lt-site-header__sp-menu.on span:before, .lt-site-header__sp-menu.on span:after {
    background: #fff;
  }
  .lt-site-header__sp-menu.on span:before {
    margin-top: 0;
    transform: rotate(45deg);
  }
  .lt-site-header__sp-menu.on span:after {
    bottom: inherit;
    transform: rotate(135deg);
  }
}

@media screen and (min-width: 897px) {
  .lt-site-header__sp-menu {
    display: none;
  }
}

@keyframes nav-hover {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.header__logo a {
  display: block;
  width: 102px;
  height: 45px;
  font-size: 0;
  background: url("/assets/img/common/logo_leon.svg") no-repeat;
  background-size: 102px 45px
}

/* 固定ヘッダー分のオフセット */
#main.lt-site-main {
  padding-top: 74px;
}

/* ==========================================================
   共通フッター（footer.php）
   wp-experts/inc/footer/footer-5.php のデザイン（footer5.jpg）を
   親テーマ(Cocoon)に依存しない形で再現。
   ========================================================== */
.lt-site-footer {
  background: #000000;
}
.lt-site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lt-site-footer__copyright {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #CCCCCC;
}
.lt-site-footer__address {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #CCCCCC;
}
.lt-site-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lt-site-footer__social li {
  flex: none;
  line-height: 0;
}
.lt-site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 18px;
  height: 18px;
  color: #FFFFFF;
}
.lt-site-footer__social svg {
  display: block;
  flex: none;
  width: 18px !important;
  height: 18px !important;
}

/* ==========================================================
   お問い合わせ（footer.php内 .footer-contact）
   wp-experts/style.css の同名クラスの数値をそのまま移植。
   ========================================================== */
.footer-contact {
  background-color: #00561F;
  padding: 86px 0;
}
.footer-contact__inner {
  background: #FFFFFF;
}
@media screen and (min-width: 897px) {
  .footer-contact__inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    /* padding-left/rightの%は親(.footer-contact、幅無制限)基準で計算されるため、
       10%のままだとビューポートが広い（ブラウザの拡大率を下げた等）ときに
       paddingだけが際限なく増え、max-width:1000pxで頭打ちの本体幅を圧迫して
       左右カラムが重なる崩れが発生する。widthが1000pxに達した時点の値(100px)を
       上限にして、それ以上は増えないようにする。 */
    padding: 86px min(10%, 100px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 896px) {
  .footer-contact__inner {
    padding: 46px 0;
    margin: 0 20px;
    text-align: center;
  }
}
@media screen and (min-width: 897px) {
  .footer-contact__left,
  .footer-contact__right {
    flex: 0 0 46%;
    width: 46%;
    min-width: 0;
    padding: 0 2%;
    text-align: center;
    box-sizing: border-box;
  }
}
.footer-contact__ttl--ja {
  color: #00561F;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 10px 0 5px;
}
@media screen and (min-width: 897px) {
  .footer-contact__ttl--ja {
    line-height: 2.4em;
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 896px) {
  .footer-contact__ttl--ja {
    line-height: 1.8em;
    padding-bottom: 20px;
  }
}
.footer-contact__ttl--en {
  margin: 0 auto;
}
.footer-contact__ttl--en img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 897px) {
  .footer-contact__ttl--en {
    width: 265px;
  }
}
@media screen and (max-width: 896px) {
  .footer-contact__ttl--en {
    width: 171px;
  }
}
.footer-contact__text {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 1.6em;
}
@media screen and (max-width: 896px) {
  .footer-contact__text {
    padding-bottom: 20px;
  }
}
.footer-contact__tel img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 897px) {
  .footer-contact__tel {
    width: 326px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 896px) {
  .footer-contact__tel {
    padding-top: 23px;
  }
  .footer-contact__tel img {
    width: 236px;
  }
}
.footer-contact__time {
  color: #00561F;
  font-size: 14px;
  padding: 20px 0 30px;
}
@media screen and (max-width: 896px) {
  .footer-contact__time {
    margin-bottom: 24px;
  }
}
.footer-contact__link {
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
}
.footer-contact__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background-color: #FF5D14;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 2px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.footer-contact__link a:hover {
  background-color: #E8380D;
}
.footer-contact__link a svg {
  flex: none;
}

@media screen and (max-width: 600px) {
  .lt-site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================
   ブログ新デザイン（home.php / archive.php）
   new-design/PC.png, preview.html を元に実装。
   Cocoon本体のクラスと衝突しないよう "lt-" を付与。
   ========================================================== */
.lt-blog-page {
  --lt-primary: #01532D;
  --lt-accent: #FF6600;
  --lt-text: #222222;
  --lt-text-sub: #626262;
  --lt-border: #BEBEBE;
  --lt-border-light: #DFDFDF;
  --lt-bg-gray: #F7F7F7;
  --lt-thumb-bg: #CCCCCC;
  --lt-container-width: 1140px;

  font-family: 'Noto Sans JP', sans-serif;
  color: var(--lt-text);
  background: #FFFFFF;
}
.lt-blog-page * { box-sizing: border-box; }
.lt-blog-page a { color: inherit; text-decoration: none; }

/* パンくず + ページタイトル */
.lt-blog-pagehead {
  background: var(--lt-bg-gray);
  padding: 54px 150px;
}
.lt-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--lt-border-light);
  max-width: var(--lt-container-width);
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  line-height: 1.6;
}
.lt-breadcrumb a { color: var(--lt-primary); text-decoration: underline; }
.lt-breadcrumb__sep {
  width: 6px;
  height: 6px;
  border-top: 2px solid #909090;
  border-right: 2px solid #909090;
  transform: rotate(45deg);
}
.lt-breadcrumb__current { color: var(--lt-text); }

.lt-blog-pagehead__title {
  max-width: var(--lt-container-width);
  margin: 0 auto;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

/* メインコンテンツ */
.lt-blog-container {
  max-width: var(--lt-container-width);
  margin: 0 auto;
  padding: 64px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* フィルターエリア */
.lt-filter-area {
  background: var(--lt-bg-gray);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.lt-filter-block { display: flex; flex-direction: column; gap: 12px; }
.lt-filter-block__label { margin: 0; font-size: 16px; font-weight: 700; }

.lt-category-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  row-gap: 16px;
  column-gap: 64px;
}
.lt-category-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.lt-category-group__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--lt-primary);
  flex: none;
}
/* 「ナレッジ・カルチャー」の手動改行は、トップ／archiveページのPC表示（ラベルとピルが横並びで
   ラベル幅が狭い場合）のみ有効にする。SP表示（ラベルがピル上に積まれ、幅に余裕がある）と、
   記事個別ページのサイドバー（.lt-filter-area の外）では改行させない。 */
.lt-label-break { display: none; }
@media screen and (min-width: 835px) {
  .lt-filter-area .lt-label-break { display: inline; }
}
.lt-category-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.lt-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #FFFFFF;
  border: 1px solid var(--lt-border);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.lt-pill:hover {
  background: #F0F0F0;
  border-color: #F0F0F0;
  color: var(--lt-primary);
}
.lt-pill.is-active {
  background: var(--lt-primary);
  border-color: var(--lt-primary);
  color: #FFFFFF;
}
.lt-pill.is-active:hover {
  background: var(--lt-primary);
  border-color: var(--lt-primary);
  color: #FFFFFF;
}
.lt-pill--external svg { flex: none; }

.lt-category-divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--lt-border-light);
  margin: 0;
}

/* カードグリッド */
.lt-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 32px;
}
.lt-blog-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 64px 0;
  text-align: center;
}
.lt-blog-empty p { margin: 0; font-size: 16px; color: var(--lt-text-sub); }

/* サイト共通のプライマリボタン（404ページ／検索結果なし時のトップページ導線など） */
.lt-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--lt-primary);
  color: #FFFFFF !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}
.lt-btn-primary:hover { background: #013D22; }

/* 404ページ */
.lt-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 24px;
  text-align: center;
}
.lt-404__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--lt-text);
}

.lt-blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  box-shadow: 0 0 17px rgba(0, 0, 0, 0.12);
}
.lt-blog-card__badge {
  position: absolute;
  top: -12px;
  left: 12px;
  z-index: 2;
  padding: 4px 12px;
  background: var(--lt-accent);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.lt-blog-card__thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lt-thumb-bg);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  overflow: hidden;
}
.lt-blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lt-blog-card__body { display: flex; flex-direction: column; gap: 12px; padding: 24px; }
.lt-blog-card__category {
  align-self: flex-start;
  padding: 4px 8px;
  background: var(--lt-primary);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.lt-blog-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lt-blog-card__tags { margin: 0; display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; }
.lt-blog-card__tags a:hover { color: var(--lt-primary); }
.lt-blog-card__date { font-size: 12px; color: var(--lt-text-sub); }

/* ページネーション（the_posts_pagination() が出力する .page-numbers を装飾） */
.lt-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.lt-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #FFFFFF;
  border: 1.5px solid var(--lt-border);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.lt-pagination a.page-numbers:hover {
  border-color: var(--lt-primary);
  color: var(--lt-primary);
}
.lt-pagination .page-numbers.current {
  background: var(--lt-primary);
  border-color: var(--lt-primary);
  color: #FFFFFF;
}
.lt-pagination .page-numbers.dots {
  width: 16px;
  background: transparent;
  border: none;
  font-weight: 700;
  color: rgba(17, 19, 20, 0.49);
}

/* ==========================================================
   ブログ個別ページ（single.php）
   new-design/個別ページ.png, single-preview.html を元に実装。
   ========================================================== */
.lt-blog-page.lt-article-page {
  --lt-heading-accent: #237E54;
  --lt-content-block-bg: #F5F5F5;
  --lt-sidebar-width: 356px;

  max-width: 1440px;
  margin: 0 auto;
}

.lt-article-container {
  display: flex;
  align-items: stretch;
}

.lt-article-content {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
  padding: 64px 48px 96px;
}
.lt-article-inner {
  width: 100%;
  max-width: var(--lt-container-width);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lt-article-container .lt-breadcrumb {
  border-bottom-color: var(--lt-border);
  margin-bottom: 0;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.lt-article-category {
  align-self: flex-start;
  padding: 4px 8px;
  background: var(--lt-primary);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.lt-article-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.lt-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
}
.lt-article-tags { margin: 0; display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; }
.lt-article-tags a:hover { color: var(--lt-primary); }
.lt-article-date { font-size: 14px; color: var(--lt-text); }

.lt-article-thumb {
  line-height: 0;
}
.lt-article-thumb img {
  width: 100%;
  height: auto;
}

/* 本文（the_content() が出力する見出し・段落等を装飾） */
.lt-article-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 16px;
  line-height: 1.8;
}
.lt-article-body img { max-width: 100%; height: auto; }
.lt-article-body h2 {
  margin: 0;
  padding-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 4px solid var(--lt-heading-accent);
}
.lt-article-body h3 {
  margin: 0;
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 16px 0 12px;
  background: var(--lt-content-block-bg);
  border-left: 4px solid var(--lt-heading-accent);
  border-radius: 0 4px 4px 0;
  font-size: 20px;
  font-weight: 700;
}
.lt-article-body h4 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 700;
}
.lt-article-body h4::before {
  content: "";
  flex: none;
  width: 4px;
  height: 32px;
  background: var(--lt-heading-accent);
}
.lt-article-body h5 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
}
.lt-article-body h5::before {
  content: "";
  flex: none;
  width: 4px;
  height: 4px;
  background: var(--lt-heading-accent);
}

/* 前へ / 一覧を見る / 次へ */
.lt-article-pager {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--lt-border);
  border-bottom: 1px solid var(--lt-border);
}
.lt-article-pager a,
.lt-article-pager__prev,
.lt-article-pager__next {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  font-size: 16px;
  line-height: 1.6;
  white-space: nowrap;
}
.lt-article-pager a:hover { color: var(--lt-primary); }
.lt-article-pager__list {
  justify-content: center;
  border-left: 1px solid var(--lt-border);
  border-right: 1px solid var(--lt-border);
}
.lt-article-pager__next { justify-content: flex-end; }

/* サイドバー */
.lt-article-sidebar {
  flex: none;
  width: var(--lt-sidebar-width);
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 56px 24px 96px;
  background: var(--lt-bg-gray);
}
.lt-sidebar-block__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.lt-sidebar-block__title::before {
  content: "";
  flex: none;
  width: 4px;
  height: 24px;
  background: var(--lt-heading-accent);
}

.lt-article-sidebar .lt-category-row { flex-direction: column; align-items: stretch; row-gap: 20px; }
.lt-article-sidebar .lt-category-group { flex-direction: column; align-items: flex-start; }
.lt-article-sidebar .lt-category-divider { margin: 4px 0; }

.lt-sidebar-tags {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 14px;
  font-weight: 500;
}
.lt-sidebar-tags a:hover { color: var(--lt-primary); }

.lt-related-articles {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.lt-blog-card--sidebar { width: 100%; }
.lt-blog-card--sidebar .lt-blog-card__body { padding: 16px; gap: 8px; }

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  .lt-blog-pagehead { padding: 40px 24px; }
  .lt-blog-container { max-width: 100%; padding: 40px 24px 60px; }
  .lt-breadcrumb, .lt-blog-pagehead__title { max-width: 100%; }
  .lt-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .lt-article-content { padding: 40px 24px 60px; }
  .lt-article-sidebar { padding: 40px 24px 60px; }
}

/*834px以下*/
@media screen and (max-width: 834px){
  .lt-category-row { flex-direction: column; gap: 16px; }
  /* 狭い幅ではラベルとピルを横並びのままにすると、項目数が少ないグループ（事例など）
     だけラベルが横に残って見た目がバラつくため、常にラベルをピルの上に積む */
  .lt-category-group { flex-direction: column; align-items: flex-start; }
  .lt-article-container { flex-direction: column; }
  .lt-article-sidebar { width: 100%; }
}

/*480px以下*/
@media screen and (max-width: 480px){
  .lt-blog-grid { grid-template-columns: 1fr; }
  .lt-blog-pagehead__title { font-size: 24px; }
  .lt-article-title { font-size: 24px; }
  .lt-article-pager a,
  .lt-article-pager__prev,
  .lt-article-pager__next {
    gap: 4px;
    padding: 12px 0;
    font-size: 14px;
  }

  /* パンくずリスト：各項目を個別のflex列にせず、文章のように折り返す */
  .lt-breadcrumb {
    display: block;
    line-height: 1.8;
  }
  .lt-breadcrumb a {
    display: inline;
    white-space: nowrap;
    margin-right: 4px;
  }
  .lt-breadcrumb__sep {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
  }
  .lt-breadcrumb__current {
    display: inline;
  }
}

