@charset "UTF-8";
/*
 Blog only stylesheet
 ブログ投稿（投稿詳細・一覧）専用SCSS。sass/style.scss とは独立してコンパイルする。
 出力先: blog.css（テーマルート）
 */
/******************** blog common ********************/
.blog-index__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.blog-index__head .en {
  display: block;
  font-family: "Rajdhani", sans-serif;
  color: #00b7ee;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.blog-index__head h1, .blog-index__head h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0b2f6b;
}
@media (max-width: 575.98px) {
  .blog-index__head h1, .blog-index__head h2 {
    font-size: 1.4rem;
  }
}

.blog-list__empty {
  padding: 3rem 1rem;
  text-align: center;
  color: #888;
}

/******************** blog home (category nav) ********************/
.blog-home__catnav {
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e6e6e6;
}

.blog-home__catnav-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.blog-home__catnav-list::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .blog-home__catnav-list {
    flex-wrap: wrap;
  }
}
.blog-home__catnav-list li {
  flex-shrink: 0;
}
.blog-home__catnav-list a {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border: 1.5px solid rgba(0, 183, 238, 0.35);
  border-radius: 999px;
  background: #fff;
  color: #0b2f6b;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-home__catnav-list a:hover {
  background: #00b7ee;
  border-color: #00b7ee;
  color: #fff;
  text-decoration: none;
}

/******************** blog home (category sections) ********************/
.blog-home__cat {
  margin-bottom: 3rem;
  scroll-margin-top: 90px;
}
.blog-home__cat:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .blog-home__cat {
    scroll-margin-top: 110px;
  }
}

.blog-home__cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #00b7ee;
}
@media (max-width: 575.98px) {
  .blog-home__cat-head {
    flex-wrap: wrap;
  }
}

.blog-home__cat-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b2f6b;
  margin: 0;
}
@media (max-width: 575.98px) {
  .blog-home__cat-title {
    font-size: 1.1rem;
  }
}

.blog-home__cat-more {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00b7ee;
  text-decoration: none;
  white-space: nowrap;
}
.blog-home__cat-more i {
  margin-left: 0.3em;
  font-size: 0.75em;
}
.blog-home__cat-more:hover {
  color: rgb(0%, 56.3865546218%, 73.3333333333%);
  text-decoration: underline;
}

/******************** blog card (list) ********************/
.blog-list {
  padding: 2rem 0 3rem;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin: 0.75rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.blog-card:hover .blog-card__title a {
  color: #00b7ee;
}
.blog-card .row {
  height: 100%;
}

.blog-card__thumb {
  display: block;
  height: 100%;
  min-height: 140px;
  overflow: hidden;
  background: linear-gradient(135deg, #6fdcf9, #00b7ee);
}
.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__thumb--empty {
  position: relative;
}
.blog-card__thumb--empty::after {
  content: "\f1ea";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.25rem 1.4rem;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.blog-card__meta time {
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.03em;
}

.blog-card__cat {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  background: #00b7ee;
  color: #fff;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}

.blog-card__title {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__title a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card__excerpt {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/******************** pagination ********************/
.blog-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e6e6e6;
}
.blog-pagination a {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 1px solid #00b7ee;
  border-radius: 999px;
  color: #00b7ee;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}
.blog-pagination a:hover {
  background: #00b7ee;
  color: #fff;
}
@media (max-width: 575.98px) {
  .blog-pagination {
    flex-direction: column;
    gap: 0.75rem;
  }
  .blog-pagination a {
    width: 100%;
    text-align: center;
  }
}

/******************** blog sidebar ********************/
.blog-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .blog-side {
    margin-top: 0;
    padding-left: 0.5rem;
  }
}

.blog-side__cta {
  background: linear-gradient(155deg, #0b2f6b 0%, rgb(2.8222000665%, 12.0584911931%, 27.4523097375%) 100%);
  border-radius: 12px;
  padding: 1.6rem 1.4rem 1.5rem;
  color: #fff;
  text-align: center;
}

.blog-side__cta-eyebrow {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.blog-side__cta-lead {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-side__cta-tel {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 0.7rem 0.75rem 2.05rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 0.7rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.blog-side__cta-tel i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: #00b7ee;
  transition: color 0.2s ease;
}
.blog-side__cta-tel:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #00b7ee;
  text-decoration: none;
}
.blog-side__cta-tel:hover i {
  color: #fff;
}

.blog-side__cta-tel-num {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.blog-side__cta-mail {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  padding: 0.65rem 0.7rem 0.65rem 2.05rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.blog-side__cta-mail i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #00b7ee;
  transition: color 0.2s ease;
}
.blog-side__cta-mail:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #00b7ee;
  text-decoration: none;
}
.blog-side__cta-mail:hover i {
  color: #fff;
}

.blog-side__block {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 1.4rem 1.3rem 1.5rem;
}

.blog-side__eyebrow {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #00b7ee;
  margin-bottom: 0.2rem;
}

.blog-side__heading {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0b2f6b;
  margin-bottom: 0.9rem;
}

.blog-side__media {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-side__media a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.9rem;
  background: #f6fbfd;
  border-radius: 10px;
  color: #333;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.blog-side__media a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.7rem;
  color: #00b7ee;
  transition: color 0.2s ease;
}
.blog-side__media a:hover {
  background: #00b7ee;
  color: #fff;
}
.blog-side__media a:hover::after {
  color: #fff;
}

.blog-side__cat-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-side__cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.2rem;
  color: #333;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #f2f2f2;
  transition: color 0.2s ease;
}
.blog-side__cat-list a:hover {
  color: #00b7ee;
  text-decoration: none;
}
.blog-side__cat-list li:last-child a {
  border-bottom: none;
}

.blog-side__cat-count {
  flex-shrink: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #999;
  background: #f2f2f2;
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
}

.blog-side__tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-side__tag-list a {
  display: inline-block;
  padding: 0.28rem 0.7rem;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  color: #777;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-side__tag-list a:hover {
  background: #00b7ee;
  border-color: #00b7ee;
  color: #fff;
  text-decoration: none;
}

.blog-side__recent {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-side__recent a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.blog-side__recent a:hover {
  text-decoration: none;
}
.blog-side__recent a:hover .blog-side__recent-title {
  color: #00b7ee;
}

.blog-side__recent-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #6fdcf9, #00b7ee);
}
.blog-side__recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-side__recent-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-side__recent-thumb--empty i {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.blog-side__recent-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.blog-side__recent-title {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.blog-side__recent-date {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.72rem;
  color: #999;
  letter-spacing: 0.02em;
}

.blog-side__text {
  font-size: 0.82rem;
  line-height: 1.75;
  color: #666;
  margin-bottom: 1.1rem;
}

.blog-side__area-group {
  margin-bottom: 0.85rem;
}
.blog-side__area-group:last-of-type {
  margin-bottom: 0.6rem;
}

.blog-side__area-region {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.blog-side__area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-side__area-chips li {
  font-size: 0.72rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: #f2f2f2;
  color: #888;
}
.blog-side__area-chips li.is-active {
  background: rgba(0, 183, 238, 0.12);
  color: rgb(0%, 56.3865546218%, 73.3333333333%);
  font-weight: 700;
}

.blog-side__area-note {
  font-size: 0.7rem;
  color: #999;
  margin: 0.7rem 0 1.1rem;
}
.blog-side__area-note i {
  color: #00b7ee;
  margin-right: 0.3rem;
}

.blog-side__visit {
  padding-top: 1.1rem;
  border-top: 1px dashed #e6e6e6;
}

.blog-side__visit-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0b2f6b;
  margin-bottom: 0.7rem;
}

.blog-side__visit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
}
.blog-side__visit-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid #f2f2f2;
}
.blog-side__visit-list li:last-child {
  border-bottom: none;
}

.blog-side__visit-pref {
  font-weight: 600;
  color: #333;
}

.blog-side__visit-status {
  font-size: 0.72rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.blog-side__visit-status--full {
  background: rgba(0, 183, 238, 0.12);
  color: rgb(0%, 56.3865546218%, 73.3333333333%);
}

.blog-side__visit-status--partial {
  background: #f2f2f2;
  color: #999;
}

.blog-side__visit-note {
  font-size: 0.76rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}

/******************** single post (blog-single) ********************/
.blog-single {
  padding: 2rem 0 3rem;
}

.blog-single__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e6e6e6;
}
.blog-single__meta time {
  font-family: "Rajdhani", sans-serif;
}

.blog-single__thumb {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}
.blog-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-single__content {
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
}
.blog-single__content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0b2f6b;
  margin: 2.5rem 0 1.2rem;
  padding-left: 0.8rem;
  border-left: 5px solid #00b7ee;
}
.blog-single__content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b2f6b;
  margin: 2rem 0 1rem;
}
.blog-single__content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.8rem;
}
.blog-single__content p {
  margin-bottom: 1.3rem;
}
.blog-single__content a {
  color: #00b7ee;
  text-decoration: underline;
}
.blog-single__content ul, .blog-single__content ol {
  margin: 0 0 1.3rem;
  padding-left: 1.5rem;
}
.blog-single__content ul li, .blog-single__content ol li {
  list-style: revert;
  margin-bottom: 0.5rem;
}
.blog-single__content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: #f7f9fb;
  border-left: 4px solid #00b7ee;
  color: #555;
}
.blog-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.blog-single__content table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: collapse;
}
.blog-single__content table th, .blog-single__content table td {
  padding: 0.6rem 0.8rem;
  border: 1px solid #e6e6e6;
}
.blog-single__content table th {
  background: #f2f7fa;
}
@media (max-width: 575.98px) {
  .blog-single__content {
    font-size: 0.92rem;
  }
  .blog-single__content h2 {
    font-size: 1.2rem;
  }
}

.blog-single__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e6e6e6;
}
.blog-single__nav a {
  flex: 1;
  display: block;
  padding: 0.9rem 1.1rem;
  background: #f7f9fb;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.5;
  transition: background 0.2s ease;
}
.blog-single__nav a:hover {
  background: #eef6fb;
  color: #00b7ee;
}
.blog-single__nav-prev:empty, .blog-single__nav-next:empty {
  display: none;
}
.blog-single__nav .blog-single__nav-next {
  text-align: right;
}
@media (max-width: 575.98px) {
  .blog-single__nav {
    flex-direction: column;
  }
  .blog-single__nav .blog-single__nav-next {
    text-align: left;
  }
}

/* ============================================================
 * ブログ本文パーツ（.post-content）
 * blog/BLOG-SPEC.md のパーツ仕様に対応。表示確認：blog/blog-parts.php
 * ============================================================ */
/******************** 著者ボックス（.blog-author）── single.php が全記事共通で自動出力（前後記事リンクの後） ********************/
.blog-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: #f7f9fb;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
}
.blog-author__icon {
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(0, 183, 238, 0.3);
}
.blog-author__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-author__body {
  flex: 1;
}
.blog-author__label {
  display: inline-block;
  font-size: 0.72rem;
  color: #888;
  margin-bottom: 0.3rem;
}
.blog-author__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b2f6b;
  margin-bottom: 0.5rem;
}
.blog-author__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}
@media (max-width: 575.98px) {
  .blog-author {
    flex-direction: column;
    text-align: center;
  }
  .blog-author__icon {
    margin: 0 auto;
  }
}

/******************** 目次（.toc）── single.php / singlep.php のJSが生成 ********************/
.toc {
  background: #f7f9fb;
  border-left: 4px solid #00b7ee;
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.toc:empty {
  display: none;
}
.toc__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 0.75rem;
}
.toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-h2;
}
.toc__item {
  margin-bottom: 0.35rem;
  line-height: 1.5;
}
.toc__item a {
  color: #333;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.toc__item a:hover {
  color: #00b7ee;
}
.toc__item--h2 {
  counter-increment: toc-h2;
}
.toc__item--h2 a::before {
  content: counter(toc-h2) ". ";
  color: #00b7ee;
  font-weight: 700;
}
.toc__item--h3 {
  padding-left: 1.4em;
}
.toc__item--h3 a::before {
  content: "– ";
  color: #999;
}
.toc__item--h4 {
  padding-left: 2.8em;
}
.toc__item--h4 a {
  font-size: 0.82rem;
  color: #888;
}
.toc__item--h4 a::before {
  content: "· ";
}

/******************** ブログ投稿本文（.post-content） ********************/
.post-content {
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
}
.post-content p {
  margin-bottom: 1.5rem;
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 1.5rem auto;
}
.post-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  border-left: 5px solid #00b7ee;
  background: linear-gradient(to right, rgba(0, 183, 238, 0.08) 0%, rgba(0, 183, 238, 0.02) 100%);
  padding: 0.6em 1rem;
  margin: 2.5rem 0 1.25rem;
  line-height: 1.5;
  border-radius: 0 8px 8px 0;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .post-content h2 {
    font-size: 1.6rem;
  }
}
.post-content h2:first-child {
  margin-top: 0;
}
.post-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
  padding: 0 0 0.4em 1em;
  margin: 2rem 0 1rem;
  position: relative;
  border-bottom: 2px solid rgba(0, 183, 238, 0.3);
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .post-content h3 {
    font-size: 1.3rem;
  }
}
.post-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 6px;
  height: 1em;
  background: #00b7ee;
  border-radius: 3px;
}
.post-content h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #333;
  margin: 1.75rem 0 0.75rem;
  padding-left: 0.8em;
  border-left: 3px solid #00b7ee;
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .post-content h4 {
    font-size: 1.1rem;
  }
}
.post-content a {
  color: #1a73e8;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.post-content a:hover {
  color: #1558b0;
}
.post-content a.inner-link,
.post-content a.outer-link {
  font-weight: 600;
}
.post-content a.outer-link::after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.75em;
  margin-left: 0.35em;
}
.post-content strong {
  font-weight: 700;
}
.post-content span.f {
  font-weight: 700;
  color: #f2994a;
}
.post-content ul.check {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.post-content ul.check li {
  position: relative;
  padding: 0.35em 0 0.35em 2em;
  line-height: 1.7;
}
.post-content ul.check li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.78rem;
  color: #fff;
  background: #00b7ee;
  width: 1.4em;
  height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.post-content ul.circle {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.post-content ul.circle li {
  position: relative;
  padding: 0.25em 0 0.25em 1.4em;
  line-height: 1.75;
}
.post-content ul.circle li::before {
  content: "";
  position: absolute;
  left: 0.2em;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: #f2994a;
  border-radius: 50%;
}
.post-content .bg-box {
  background: #f7f9fb;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.post-content .bg-box p:last-child, .post-content .bg-box ul:last-child, .post-content .bg-box ol:last-child {
  margin-bottom: 0;
}
.post-content .bg-box--color {
  background: rgba(0, 183, 238, 0.06);
  border-color: rgba(0, 183, 238, 0.25);
}
.post-content .wp-lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #0b2f6b;
  border-top: 3px solid #00b7ee;
  padding: 1rem 0 0.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .post-content .wp-lead {
    font-size: 1.12rem;
  }
}
.post-content .wp-lead p:last-child {
  margin-bottom: 0;
}
.post-content .point-block {
  background: rgba(0, 183, 238, 0.06);
  border: 1px solid rgba(0, 183, 238, 0.3);
  border-left: 4px solid #00b7ee;
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.post-content .point-block__title {
  font-weight: 700;
  color: #0b2f6b;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.post-content .point-block__title i {
  color: #00b7ee;
}
.post-content .point-block p:last-child, .post-content .point-block ul:last-child {
  margin-bottom: 0;
}
.post-content .warn-block {
  background: #fff8f0;
  border: 1px solid rgba(242, 153, 74, 0.35);
  border-left: 4px solid #f2994a;
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.post-content .warn-block__title {
  font-weight: 700;
  color: #c47a1f;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.post-content .warn-block__title i {
  color: #f2994a;
}
.post-content .warn-block p:last-child, .post-content .warn-block ul:last-child {
  margin-bottom: 0;
}
.post-content .ref-block {
  background: #f7f9fb;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.post-content .ref-block__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: #0b2f6b;
  padding: 0.25em 0.8em;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}
.post-content .ref-block p:last-child {
  margin-bottom: 0;
  font-size: 0.95rem;
}
.post-content .speech-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 1.75rem 0;
}
.post-content .speech-block__avatar {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 183, 238, 0.35);
  background: #f7f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #333;
}
.post-content .speech-block__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
}
.post-content .speech-block__bubble {
  position: relative;
  background: rgba(0, 183, 238, 0.06);
  border: 1.5px solid rgba(0, 183, 238, 0.25);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  flex: 1;
}
.post-content .speech-block__bubble::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 1.1rem;
  border-style: solid;
  border-width: 8px 9px 8px 0;
  border-color: transparent rgba(0, 183, 238, 0.25) transparent transparent;
}
.post-content .speech-block__bubble::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 1.1rem;
  border-style: solid;
  border-width: 8px 9px 8px 0;
  border-color: transparent #f2fbfd transparent transparent;
}
.post-content .speech-block__bubble p {
  margin: 0;
  line-height: 1.85;
  font-size: 0.97rem;
}
@media (max-width: 575.98px) {
  .post-content .speech-block {
    gap: 0.6rem;
  }
  .post-content .speech-block__avatar {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1rem;
  }
  .post-content .speech-block__bubble {
    padding: 0.8rem 1rem;
  }
  .post-content .speech-block__bubble p {
    font-size: 0.88rem;
    line-height: 1.7;
  }
}
.post-content .speech-block--right {
  flex-direction: row-reverse;
}
.post-content .speech-block--right .speech-block__bubble {
  background: rgba(11, 47, 107, 0.05);
  border-color: rgba(11, 47, 107, 0.25);
}
.post-content .speech-block--right .speech-block__bubble::before {
  left: auto;
  right: -9px;
  border-width: 8px 0 8px 9px;
  border-color: transparent transparent transparent rgba(11, 47, 107, 0.25);
}
.post-content .speech-block--right .speech-block__bubble::after {
  left: auto;
  right: -7px;
  border-width: 8px 0 8px 9px;
  border-color: transparent transparent transparent #f3f6fc;
}
.post-content .stepBox {
  counter-reset: step-counter;
  margin: 2.5rem 0;
}
.post-content .stepBox .step-item {
  counter-increment: step-counter;
  position: relative;
  padding-left: 4rem;
  padding-bottom: 2rem;
}
.post-content .stepBox .step-item:last-child {
  padding-bottom: 0;
}
.post-content .stepBox .step-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #0b4ea3;
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 2.25rem;
  text-align: center;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(11, 78, 163, 0.28);
  z-index: 1;
}
.post-content .stepBox .step-item__head {
  background: #0b4ea3;
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  font-size: 0.96rem;
  border-radius: 8px 8px 0 0;
  border-left: 4px solid #0b4ea3;
  line-height: 1.5;
}
.post-content .stepBox .step-item__body {
  background: #fff;
  border: 1.5px solid rgba(0, 183, 238, 0.18);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 1.1rem 1.2rem;
}
.post-content .stepBox .step-item__body p:last-child {
  margin-bottom: 0;
}
.post-content .faq-block {
  margin: 1.75rem 0;
}
.post-content .faq-block__item {
  border: 1.5px solid #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.post-content .faq-block__item:last-child {
  margin-bottom: 0;
}
.post-content .faq-block__q {
  position: relative;
  padding: 0.85rem 1.2rem 0.85rem 3rem;
  font-weight: 700;
  color: #333;
  background: #f7f9fb;
  line-height: 1.6;
  margin: 0;
  border-bottom: 1px solid #e6e6e6;
}
.post-content .faq-block__q span {
  position: absolute;
  left: 0.85rem;
  top: 0.9rem;
  width: 1.6em;
  height: 1.6em;
  background: #00b7ee;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  line-height: 1.6em;
  font-size: 0.85rem;
  font-weight: 700;
}
.post-content .faq-block__a {
  position: relative;
  padding: 0.85rem 1.2rem 0.85rem 3rem;
  background: #fff;
}
.post-content .faq-block__a span {
  position: absolute;
  left: 0.85rem;
  top: 0.9rem;
  width: 1.6em;
  height: 1.6em;
  background: #f2994a;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  line-height: 1.6em;
  font-size: 0.85rem;
  font-weight: 700;
}
.post-content .faq-block__a p {
  margin: 0;
  line-height: 1.8;
}
.post-content .pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .post-content .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}
.post-content .pros-cons__col {
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.post-content .pros-cons__col--pros {
  background: rgba(0, 183, 238, 0.07);
  border: 1px solid rgba(0, 183, 238, 0.3);
}
.post-content .pros-cons__col--pros .pros-cons__title {
  color: #0b2f6b;
}
.post-content .pros-cons__col--cons {
  background: rgba(242, 153, 74, 0.07);
  border: 1px solid rgba(242, 153, 74, 0.3);
}
.post-content .pros-cons__col--cons .pros-cons__title {
  color: #c47a1f;
}
.post-content .pros-cons__title {
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}
.post-content .pros-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-content .pros-cons ul li {
  position: relative;
  padding: 0.3em 0 0.3em 1.3em;
  line-height: 1.7;
}
.post-content .pros-cons ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}
.post-content .blog-table {
  margin: 1.75rem 0;
  overflow-x: auto;
}
.post-content .blog-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.post-content .blog-table table th, .post-content .blog-table table td {
  padding: 0.75rem 1rem;
  border: 1px solid #e6e6e6;
  line-height: 1.6;
  vertical-align: top;
  text-align: left;
}
.post-content .blog-table table thead th {
  background: #00b7ee;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.post-content .blog-table table tbody tr:nth-child(even) td {
  background: rgba(0, 183, 238, 0.03);
}
@media (max-width: 575.98px) {
  .post-content .blog-table table {
    font-size: 0.82rem;
  }
  .post-content .blog-table th, .post-content .blog-table td {
    padding: 0.6rem 0.7rem;
  }
}
.post-content .matome-block {
  background: rgba(0, 183, 238, 0.08);
  color: #333;
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0 1.5rem;
}
.post-content .matome-block__lead {
  color: #0b2f6b;
}
.post-content .matome-block__body p {
  color: #333;
}
.post-content .matome-block__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.post-content .matome-block__list li {
  position: relative;
  padding: 0.4em 0 0.4em 1.6em;
  line-height: 1.7;
  border-bottom: 1px solid rgba(11, 47, 107, 0.12);
}
.post-content .matome-block__list li:last-child {
  border-bottom: none;
}
.post-content .matome-block__list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.45em;
  color: #0b4ea3;
}
.post-content .media-cta {
  border: 1.5px solid rgba(0, 183, 238, 0.22);
  border-radius: 16px;
  padding: 1.75rem 1.5rem 2rem;
  margin: 2rem 0;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .post-content .media-cta {
    padding: 2rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .post-content .media-cta {
    padding: 2rem 2.25rem 2.25rem;
  }
}
.post-content .media-cta .wp-lead {
  border-top: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.post-content .media-cta .media-guide {
  background: #fff;
  margin: 0 0 1.75rem;
}
.post-content .media-cta .blogCta {
  margin: 0;
}
.post-content .media-guide {
  background: #f7f9fb;
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.6rem;
  margin: 1.75rem 0;
}
.post-content .media-guide__title {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
  color: #0b2f6b;
  margin-bottom: 1rem;
}
.post-content .media-guide__title i {
  color: #00b7ee;
}
.post-content .media-guide__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .post-content .media-guide__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .post-content .media-guide__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .post-content .media-guide__list--cols2 {
    grid-template-columns: 1fr 1fr;
  }
}
.post-content .media-guide__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.post-content .media-guide__item:hover {
  border-color: #00b7ee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  text-decoration: none;
}
.post-content .media-guide__text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.post-content .media-guide__type {
  font-size: 0.7rem;
  font-weight: 600;
  color: #888;
}
.post-content .media-guide__logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.post-content .media-guide i.fa-angle-right {
  flex-shrink: 0;
  color: #00b7ee;
  font-size: 0.8rem;
}
.post-content .blogCta {
  margin: 2.5rem 0;
  text-align: center;
}
.post-content .blogCta__lead {
  font-weight: 700;
  margin-bottom: 1rem;
}
.post-content .blogCta__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .post-content .blogCta__buttons {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .post-content .blogCta__buttons {
    flex-direction: row;
    justify-content: center;
  }
}
.post-content .blogCta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 50px;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: opacity 0.25s ease, transform 0.2s ease;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .post-content .blogCta__btn {
    width: auto;
    min-width: 280px;
  }
}
@media (min-width: 992px) {
  .post-content .blogCta__btn {
    width: auto;
    min-width: 280px;
  }
}
.post-content .blogCta__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  color: #fff;
}
.post-content .blogCta__btn i {
  font-size: 1.3rem;
}
.post-content .blogCta__btn-label {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  text-align: left;
}
.post-content .blogCta__btn-label small {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
}
.post-content .blogCta__btn--tel {
  background: linear-gradient(135deg, #00b7ee, #0090c7);
}
.post-content .blogCta__btn--mail {
  background: linear-gradient(135deg, #f2994a, #e5860b);
}

/*# sourceMappingURL=blog.css.map */
