/* ==========================================================================
   Blog Page Specific Styles（他ページに干渉しない .blog-* のみ）
   ========================================================================== */

.blog-page {
  background-color: #f8fcfe;
}

html:has(.blog-page),
html:has(.blog-page) body {
  overflow-x: visible !important;
  overflow-y: visible !important;
}

.blog-page .hero-section {
  background-color: var(--company-white, #f7fcfe);
}

.blog-page .waves {
  background-color: var(--company-white, #f7fcfe);
}

/* Hero: タイトル・サブタイトルは共通 .service-title / .service-subtitle を使用 */
.blog-page .hero-section .service-title {
  font-family: var(--font-archetype, "Archetype", sans-serif);
  font-size: 4rem;
  font-weight: 500;
  color: var(--color-navy, #253742);
  line-height: 1.1;
  letter-spacing: 0.1em;
}

.blog-page .hero-section .service-subtitle {
  font-size: 15px;
  font-family: var(--font-japanese, "Noto Sans JP", sans-serif);
  font-weight: 500;
  color: var(--color-navy, #253742);
}

/* Hero Buttons - PC (works と同様) */
@media (min-width: 769px) {
  .blog-page .hero-section .button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .blog-page .hero-section .hero-btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition:
      color 0.3s ease,
      border-color 0.3s ease,
      transform 0.3s ease,
      box-shadow 0.3s ease;
    gap: 8px;
    box-sizing: border-box;
    font-family: var(--font-japanese);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: transparent;
    border: 1.5px solid var(--color-navy, #223a5f);
    color: var(--color-navy, #223a5f);
  }
  .blog-page .hero-section .hero-btn-custom::after {
    content: none;
    display: none;
    animation: none;
  }
  .blog-page .hero-section .hero-btn-custom i {
    font-size: 1.1em;
  }
  .blog-page .hero-section .hero-btn-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .blog-page .hero-section .hero-btn-custom:hover::before {
    width: 100%;
  }
  .blog-page .hero-section .hero-btn-custom:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  .blog-page .hero-section .btn-contact.hero-btn-custom {
    background-color: transparent;
    border: 1.5px solid var(--color-navy, #223a5f);
    color: var(--color-navy, #223a5f);
  }
  .blog-page .hero-section .btn-contact.hero-btn-custom::before {
    background-color: var(--company-dark-pink, #dc4750);
  }
  .blog-page .hero-section .btn-contact.hero-btn-custom:hover {
    background-color: transparent;
    border-color: var(--company-dark-pink, #dc4750);
    color: #ffffff;
  }
  .blog-page .hero-section .btn-doc.hero-btn-custom {
    background-color: transparent;
    border: 1.5px solid var(--color-navy, #223a5f);
    color: var(--color-navy, #223a5f);
  }
  .blog-page .hero-section .btn-doc.hero-btn-custom::before {
    background-color: var(--color-navy, #223a5f);
  }
  .blog-page .hero-section .btn-doc.hero-btn-custom:hover {
    background-color: transparent;
    border-color: var(--color-navy, #223a5f);
    color: #ffffff;
  }
}

/* Hero - SP (works と同様) */
@media (max-width: 768px) {
  .blog-page .hero-section {
    position: relative;
    padding-top: calc(8vw + 35px + 40px);
    padding-bottom: 60px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .blog-page .hero-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .blog-page .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
  }
  .blog-page .service-info {
    flex: 0 0 auto;
    max-width: 100%;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    justify-content: center;
  }
  .blog-page .lottie-container {
    display: none;
  }
  .blog-page .header-content .service-info .service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    margin-left: 0;
  }
  .blog-page .header-content .service-info .service-title {
    display: block;
    margin-bottom: 0;
    font-size: 3rem;
    text-align: center;
    animation: blogFadeInUp 0.8s ease-out;
  }
  .blog-page .header-content .service-info .service-subtitle {
    display: block;
    font-size: 0.7rem;
    font-family: var(--font-japanese);
    letter-spacing: 0;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
    animation: blogFadeInUp 0.8s ease-out 0.2s both;
  }
  .blog-page .hero-section .button-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 0.5rem;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    animation: blogFadeInUp 0.8s ease-out 0.4s both;
  }
  @keyframes blogFadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .blog-page .hero-section .container .header-content .service-info .button-group .hero-btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 10px 32px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    flex: 1 1 0;
    white-space: nowrap;
    box-sizing: border-box;
    font-family: var(--font-japanese);
    position: relative;
    overflow: hidden;
    z-index: 1;
    visibility: visible;
    opacity: 1;
  }
  .blog-page .hero-section .container .header-content .service-info .button-group .btn-contact.hero-btn-custom {
    background-color: var(--company-coral-bg, #e57a61);
    border-color: var(--company-coral-bg, #e57a61);
    color: #ffffff;
  }
  .blog-page .hero-section .container .header-content .service-info .button-group .btn-contact.hero-btn-custom i {
    color: #ffffff;
  }
  .blog-page .hero-section .container .header-content .service-info .button-group .btn-doc.hero-btn-custom {
    background-color: var(--color-navy, #263743);
    border-color: var(--color-navy, #263743);
    color: #ffffff;
  }
  .blog-page .hero-section .container .header-content .service-info .button-group .btn-doc.hero-btn-custom i {
    color: #ffffff;
  }
}

/* ========== List Section Layout (Works と同様のレスポンシブ) ========== */
.blog-list-section.blog-leapy-layout {
  background-color: #f8fcfe;
  padding: 60px 0;
  overflow: visible;
}

.blog-layout-container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  overflow: visible;
}

.blog-sidebar {
  position: relative;
  width: 280px;
  flex-shrink: 0;
  align-self: stretch;
}

/* コンタクトカード：スクロールで追従（制作実績と同様） */
.blog-sidebar-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}

/* カテゴリーフィルター（制作実績と同様） */
.blog-category-filter {
  margin-bottom: 25px;
  position: relative;
  margin-top: 10px;
}

.blog-category-label {
  position: absolute;
  top: -8px;
  left: 18px;
  font-family: var(--font-archetype, "Archetype", sans-serif);
  font-size: 0.7rem;
  font-weight: 500;
  color: #e78c6c;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  background: #f8fcfe;
  padding: 0 6px;
}

.blog-category-select {
  width: 100%;
  padding: 14px 50px 14px 18px;
  font-family: var(--font-japanese);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-navy, #253742);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e78c6c;
  border-radius: 10px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e78c6c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-category-select:hover {
  transform: translateY(-2px);
}

.blog-category-select:focus {
  outline: none;
}

/* SP用フィルターはPCでは非表示 */
.blog-category-filter-sp {
  display: none;
}

.blog-sidebar-header {
  margin-bottom: 20px;
  border-bottom: 2px solid var(--color-navy, #253742);
  padding-bottom: 15px;
}

.blog-count-title {
  font-family: var(--font-archetype, "Archetype", sans-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-navy, #253742);
  margin: 0;
}

.blog-count-sub {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.7;
}

.blog-sidebar-card {
  background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  border-radius: 16px;
  padding: 30px 25px;
  color: #fff;
}

.blog-sidebar-title {
  font-family: var(--font-archetype, "Archetype", sans-serif);
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0 0 5px 0;
}

.blog-sidebar-subtitle {
  font-family: var(--font-japanese);
  font-size: 0.9rem;
  color: #e78c6c;
  margin-bottom: 20px;
  display: block;
}

.blog-sidebar-desc {
  font-family: var(--font-japanese);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0.95;
}

/* スタッフ動画（丸と四角）制作実績と同様 */
.blog-sidebar-video-shapes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.blog-video-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-video-circle video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-video-square {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-video-square video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-video-circle video,
.blog-video-square video {
  transition: opacity 0.5s ease;
}

.blog-video-circle video.fade-out,
.blog-video-square video.fade-out {
  opacity: 0;
}

.blog-sidebar-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: #fff;
  color: #1a5276;
  font-family: var(--font-japanese);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-sidebar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.blog-main-content {
  flex: 1;
  min-width: 0;
}

.blog-main-header {
  margin-bottom: 40px;
  border-bottom: 2px solid var(--color-navy, #253742);
  padding-bottom: 15px;
}

.blog-main-title {
  font-family: var(--font-archetype, "Archetype", sans-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-navy, #253742);
  margin: 0;
}

/* 記事グリッド：常に縦2列・スクショと同様のフラットレイアウト（枠・カードなし） */
.blog-list.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
  max-width: none;
}

.blog-item {
  overflow: hidden;
}

.blog-item-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  height: 100%;
}

.blog-item-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f0f0f0;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 12px;
  border-radius: 10px;
}

.blog-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  transition: transform 0.4s ease;
}

.blog-item-link:hover .blog-item-thumb img {
  transform: scale(1.06);
}

.blog-item-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0;
}

.blog-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.blog-item-date {
  font-family: var(--font-japanese);
  font-size: 0.8rem;
  color: #333;
  margin: 0;
}

.blog-item-author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-japanese);
  font-size: 0.8rem;
  color: #333;
}

.blog-item-author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-item-author-name {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.blog-item-tag {
  display: inline-block;
  padding: 5px 14px;
  font-family: var(--font-japanese);
  font-size: 0.75rem;
  font-weight: 500;
  color: #333;
  background: #f5f0e8;
  border-radius: 50px;
  line-height: 1.4;
}

/* ブログタイトル：Barlow Medium（500）※Regular=400よりやや太い */
.blog-item-title {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 本文：他ページの本文色（#666）・サイズを参考に */
.blog-item-excerpt {
  font-family: var(--font-japanese);
  font-size: 0.8rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-no-posts {
  grid-column: 1 / -1;
  text-align: center;
  color: #999;
  padding: 40px 20px;
}

/* ページネーション（Works と同様） */
.blog-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 80px;
  padding-top: 40px;
}

.blog-pagination-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-jost, "Jost", sans-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-navy, #253742);
}

.blog-pagination-separator { color: #999; }

.blog-pagination-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-pagination-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-pagination-num {
  font-family: var(--font-jost, "Jost", sans-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-navy, #253742);
  text-decoration: none;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

.blog-pagination-num:hover { color: #e78c6c; }

.blog-pagination-num.is-active {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.blog-pagination-next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--color-navy, #253742);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 55, 66, 0.3);
}

.blog-pagination-next-btn:hover {
  background: #e78c6c;
  transform: scale(1.08);
}

.blog-pagination-next-arrow { font-size: 1.5rem; font-weight: 600; }

/* 固定フロートボタン */
.blog-floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.blog-floating-btn.blog-blob-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #e78c6c 0%, #f5a883 100%);
  color: #fff;
  padding: 20px;
  text-decoration: none;
  font-family: var(--font-japanese);
  box-shadow: 0 8px 30px rgba(231, 140, 108, 0.4);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  transition: box-shadow 0.3s ease;
  animation: blogBlobMorph 8s ease-in-out infinite, blogFloatBubble 3s ease-in-out infinite;
}

.blog-floating-btn.blog-blob-btn:hover {
  box-shadow: 0 12px 40px rgba(231, 140, 108, 0.6);
}

.blog-floating-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.blog-floating-line1 { font-size: 0.8rem; }
.blog-floating-line2 { font-size: 0.95rem; }
.blog-floating-line3 { font-size: 0.8rem; }

/* 円形ボタン：制作実績と同じシャボン玉アニメーション */
@keyframes blogBlobMorph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  50% {
    border-radius: 50% 60% 30% 60% / 30% 40% 70% 50%;
  }
  75% {
    border-radius: 40% 30% 60% 50% / 60% 70% 40% 30%;
  }
}

@keyframes blogFloatBubble {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

/* Flow セクション（制作実績と同様） */
.blog-page .hh-flow {
  padding: 100px 0;
  background: #ffffff;
}

.blog-page .hh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-page .hh-sec-head {
  text-align: center;
  margin-bottom: 60px;
}

.blog-page .hh-sec-head.center {
  text-align: center;
}

.blog-page .hh-sec-head-large .hh-sec-en {
  font-family: var(--font-archetype, "Archetype", sans-serif);
  font-size: 40px;
  font-weight: 500;
  color: var(--color-navy, #253742);
  display: block;
  margin-bottom: 8px;
}

.blog-page .hh-sec-head-large .hh-sec-jp {
  font-family: var(--font-japanese, "Noto Sans JP", sans-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-navy, #253742);
}

.blog-page .hh-flow-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.blog-page .hh-flow-item {
  display: flex;
  gap: 40px;
  position: relative;
  padding-bottom: 60px;
}

.blog-page .hh-flow-item:last-child {
  padding-bottom: 0;
}

.blog-page .hh-flow-num-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.blog-page .hh-flow-circle {
  width: 70px;
  height: 70px;
  background-color: var(--color-navy, #253742);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-archetype, "Archetype", sans-serif);
  font-size: 30px;
  font-weight: 700;
  z-index: 2;
  position: relative;
}

.blog-page .hh-flow-item:last-child .hh-flow-circle {
  background-color: var(--lp-red, #dc4750);
}

.blog-page .hh-flow-line {
  width: 2px;
  height: 100%;
  border-left: 3px dashed #ddd;
  position: absolute;
  top: 10px;
  left: 38px;
  z-index: 1;
}

.blog-page .hh-flow-item:last-child .hh-flow-line {
  display: none;
}

.blog-page .hh-flow-content {
  padding-top: 10px;
  flex: 1;
}

.blog-page .hh-flow-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy, #253742);
  margin: 0 0 15px;
  font-family: var(--font-japanese, "Noto Sans JP", sans-serif);
}

.blog-page .hh-flow-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin: 0;
  font-family: var(--font-japanese, "Noto Sans JP", sans-serif);
}

/* ========== Tablet ========== */
@media (max-width: 1024px) {
  .blog-list.blog-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ========== SP（Works と同様） ========== */
@media (max-width: 768px) {
  .blog-list-section.blog-leapy-layout {
    padding: 30px 20px;
    background-color: #f8fcfe;
  }

  .blog-layout-container {
    flex-direction: column;
    padding: 0 10px;
  }

  .blog-sidebar { display: none; }

  .blog-sidebar .blog-category-filter {
    display: none;
  }

  .blog-main-content { width: 100%; }

  .blog-main-header {
    margin-bottom: 30px;
    border-bottom: none;
    padding-bottom: 0;
  }

  /* SP用カテゴリーフィルター（制作実績と同様） */
  .blog-category-filter-sp {
    display: block;
    margin-top: 20px;
    position: relative;
  }

  .blog-category-filter-sp .blog-category-label {
    position: absolute;
    top: -8px;
    left: 18px;
    font-family: var(--font-archetype, "Archetype", sans-serif);
    font-size: 0.65rem;
    font-weight: 500;
    color: #e78c6c;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
    background: #f8fcfe;
    padding: 0 6px;
  }

  .blog-category-filter-sp .blog-category-select {
    width: 100%;
    padding: 14px 50px 14px 18px;
    font-family: var(--font-japanese);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-navy, #253742);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e78c6c;
    border-radius: 10px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e78c6c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
  }

  .blog-category-filter-sp .blog-category-select:focus {
    outline: none;
  }

  /* Flow セクション SP（制作実績と同様） */
  .blog-page .hh-flow {
    padding: 56px 20px;
  }

  .blog-page .hh-container {
    padding: 0;
  }

  .blog-page .hh-sec-head {
    margin-bottom: 32px;
  }

  .blog-page .hh-sec-head-large .hh-sec-en {
    font-size: 32px;
  }

  .blog-page .hh-sec-head-large .hh-sec-jp {
    font-size: 12px;
  }

  .blog-page .hh-flow-wrapper {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .blog-page .hh-flow-item {
    gap: 16px;
    padding-bottom: 40px;
    flex-direction: row;
    align-items: flex-start;
  }

  .blog-page .hh-flow-item:last-child {
    padding-bottom: 0;
  }

  .blog-page .hh-flow-num-box {
    min-width: 50px;
    align-items: flex-start;
    flex-shrink: 0;
  }

  .blog-page .hh-flow-circle {
    width: 50px;
    height: 50px;
    font-size: 22px;
    flex-shrink: 0;
  }

  .blog-page .hh-flow-line {
    left: 23px;
    height: calc(100% - 50px);
  }

  .blog-page .hh-flow-content {
    padding-top: 0;
    flex: 1;
  }

  .blog-page .hh-flow-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .blog-page .hh-flow-desc {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
  }

  .blog-main-title { font-size: 1.8rem; }

  .blog-list.blog-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }

  .blog-item { width: 100%; max-width: none; }

  .blog-item-title { font-size: 0.95rem; -webkit-line-clamp: 2; }

  .blog-item-excerpt { -webkit-line-clamp: 2; }

  .blog-pagination {
    margin-top: 40px;
    padding-top: 30px;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .blog-pagination-info { font-size: 1.3rem; }

  .blog-pagination-next-btn {
    width: 50px;
    height: 50px;
  }

  .blog-pagination-next-arrow { font-size: 1.3rem; }

  .blog-floating-contact {
    bottom: 20px;
    right: 20px;
  }

  .blog-floating-btn.blog-blob-btn {
    width: 110px;
    height: 110px;
    padding: 15px;
  }

  .blog-floating-line1 { font-size: 0.65rem; }
  .blog-floating-line2 { font-size: 0.75rem; }
  .blog-floating-line3 { font-size: 0.65rem; }
}
