.p-blogPage {
  background: #fff;
}

/* MV */
.p-blogMv {
  padding: 15px 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%), var(--color-main);
}

.p-blogMv__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 400px;
}

.p-blogMv__contents {
  display: grid;
  gap: 30px;
}

.p-blogMv__lead {
  font-size: 2.875rem;
}

.p-blogMv__desc {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75;
  color: #fff;
}

.p-blogMv__form {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 25px;
  padding: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  max-width: 575px;
  height: 50px;
  overflow: hidden;
}

.p-blogMv__search {
  flex: 1;
  outline: none;
  background: #fff !important;
  padding: 7px 25px !important;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text);
  background: transparent;
  height: 100%;
  border-radius: 0 !important;
  border: none !important;
}

.p-blogMv__search::placeholder {
  color: #888;
}

.p-blogMv__submit {
  width: 50px;
  height: 50px;
  border: none !important;
  background: #fff;
  color: var(--color-main);
  border-radius: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.p-blogMv__submit:hover .p-blogMv__icon {
  color: var(--color-accent);
}

.p-blogMv__icon {
  height: calc(100% - 15px);
  width: 100%;
  border-left: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.p-blogMv__image {
  width: 100%;
  aspect-ratio: 484/400;
  border-radius: 16px;
  overflow: hidden;
}

.p-blogMv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Wrapper */
.p-blogWrapper {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 50px;
  padding: 80px 0 90px;
}

/* Main */
.p-blogMain {
  display: grid;
  align-items: start;
  gap: 60px;
}

.p-blogMain .c-sectionHead {
  margin-bottom: 0;
}

/* Feature */
.p-blogFeature {
  display: grid;
  gap: 35px;
}

.p-blogFeature__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Blog Card */
.p-blogCard {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.p-blogCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.p-blogCard__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.p-blogCard__thumb {
  width: 100%;
  aspect-ratio: 270/170;
  overflow: hidden;
}

.p-blogCard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-blogCard__body {
  padding: 20px 15px;
  display: grid;
  gap: 10px;
}

.p-blogCard__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-blogCard__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-blogCard__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
}

.p-blogCard__date {
  font-size: 0.8125rem;
  font-weight: 900;
  font-family: var(--ff-outgit);
  color: var(--color-main);
}

.p-blogCard__category,
.cat-link {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-main);
  background: #fff;
  line-height: 1;
  border: 1px solid var(--color-main);
}

.cat-icon {
  display: none;
}

/* Category */
.p-blogCategory__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 20px;
}

.p-blogCategoryCard {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%), var(--color-main);
  border-radius: 10px;
  height: 140px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
}

.p-blogCategoryCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.p-blogCategoryCard__link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 25px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 20px;
}

.p-blogCategoryCard__image {
  max-width: 120px;
  height: auto;
  overflow: hidden;
}

.p-blogCategoryCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-blogCategoryCard__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.p-blogCategoryCard__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.p-blogCategoryCard__icon {
  color: var(--color-main);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Last */
.p-blogLast {
  display: grid;
  gap: 35px;
}

.p-blogLast__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.p-blogLast__more {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

/* Aside */
.p-blogAside {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Aside Title */
.p-blogAside__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-blogAside__titleText {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1;
}

.p-blogAside__titleSub {
  font-family: var(--ff-lato);
  color: var(--color-main);
  font-weight: 900;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  line-height: 1;
  opacity: 0.5;
  padding-top: 0.5em;
}

/* Aside Search */
.p-blogAside__search {
  display: grid;
  gap: 15px;
}

.p-blogAside__form {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 36px;
  display: flex;
  align-items: center;
}

.p-blogAside__input {
  flex: 1;
  border: none !important;
  outline: none;
  padding: 0 0 0 10px !important;
  font-size: 0.8125rem !important;
  font-weight: 500;
  color: var(--color-text);
  background: transparent;
  height: 100%;
}

.p-blogAside__input::placeholder {
  color: #888;
}

.p-blogAside__submit {
  width: 34px;
  height: 34px;
  border: none;
  background: var(--color-main);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.p-blogAside__submit:hover {
  opacity: 0.7;
}

/* Aside Category */
.p-blogAside__category {
  display: grid;
  gap: 15px;
}

.p-blogAside__categoryList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}

.p-blogAside__categoryItem {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-top: -1px;
}

.p-blogAside__categoryLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
  text-decoration: none;
  color: var(--color-text);
}

.p-blogAside__categoryName {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
}

.p-blogAside__categoryCount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--color-bg-blue);
  border-radius: 12px;
  font-family: var(--ff-lato);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--color-main);
  flex-shrink: 0;
}

/* Aside Popular */
.p-blogAside__popular {
  background: #fff;
  border-radius: 3px;
  padding: 15px 0;
  display: grid;
  gap: 15px;
}

.p-blogAside__popularList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.p-blogAside__popularItem {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.p-blogAside__popularItem:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.p-blogAside__popularLink {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: inherit;
}

.p-blogAside__popularThumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
}

.p-blogAside__popularThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-blogAside__popularBody {
  flex: 1;
  padding: 10px 15px;
  display: grid;
  gap: 5px;
  min-width: 0;
}

.p-blogAside__popularTitle {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-blogAside__popularDate {
  font-family: var(--ff-lato);
  font-weight: 900;
  font-size: 0.6875rem;
  color: var(--color-main);
  line-height: 1;
}

/* Track Record */
.p-blogMetrics {
  padding: 80px 0;
  background: var(--color-bg-blue);
}

.p-blogMetrics .c-sectionHead {
  text-align: center;
  margin-bottom: 35px;
}


.p-blogMetrics .c-sectionHead__title {
  font-size: 2.75rem;
  margin-bottom: 15px;
}

.p-blogMetrics .c-sectionHead__sub {
  text-align: center;
  font-size: 0.8125rem;
  justify-content: center;
  flex-direction: column;
}

.p-blogMetrics__grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.p-blogMetrics__card {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%), var(--color-main);
}

.p-blogMetrics__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  order: 1;
}

.p-blogRecord__icon img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.p-blogMetrics__value {
  font-size: 2.375rem;
  font-weight: 900;
  order: 2;
}

.p-blogMetrics__label {
  order: 3;
}

/* Fixed Button */
.p-blogFixBtn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: 152px;
  height: 103px;
  flex-direction: column;
  gap: 10px;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  min-width: auto;
}

.p-blogFixBtn i {
  font-size: 1.3125rem;
}

/* Archive */
.p-blogArchive__summary {
  margin-bottom: 1em;
}

/* Single */
/* =========================
   Cocoonスキン：記事エリア用だけ抜粋
   ========================= */

/* 記事内 見出しデザイン */
.article h2 {
  background: #eaf4fc;
  border-left: solid 5px #0095d9;
}

.article h3 {
  border: none;
  border-left: solid 5px #0095d9;
}

.article h4 {
  border: none;
  border-bottom: 6px solid #eaf4fc;
}

.article h5,
.article h6 {
  border: none;
}

/* 目次やランキング、著者ボックスなどを使うなら */
.toc,
.ranking-item,
.author-box {
  border: 1px solid #89c3eb;
}

/* コメントの入れ子（返信）の装飾を使うなら */
.comment-list ul.children {
  padding: 0.6em;
  background-color: rgba(0, 149, 217, 0.05);
  border-left: 2px solid #89c3eb;
}

/* 記事内で Cocoon の .a-wrap カードを使うなら */
.a-wrap {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  transition-duration: 0.3s;
}
.a-wrap:hover {
  background-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.24);
  transition-duration: 0.3s;
}
.a-wrap > div {
  border: none;
}

.p-blogRelatedTitle {
  font-size: 1.125rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

/* ニュース・お知らせ */
.p-newsHead {
  padding: 24px 0;
}

.p-newsHead__form {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 25px;
  border: 1px solid var(--color-main);
  padding: 0;
  max-width: 575px;
  height: 50px;
  overflow: hidden;
}

.p-newsHead__search {
  flex: 1;
  outline: none;
  background: #fff !important;
  padding: 7px 25px !important;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text);
  background: transparent;
  height: 100%;
  border-radius: 0 !important;
  border: none !important;
}

.p-newsHead__search::placeholder {
  color: #888;
}

.p-newsHead__submit {
  width: 50px;
  height: 50px;
  border: none !important;
  background: #fff;
  color: var(--color-main);
  border-radius: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.p-newsHead__submit:hover .p-newsHead__icon {
  color: var(--color-accent);
}

.p-newsHead__icon {
  height: calc(100% - 15px);
  width: 100%;
  border-left: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.p-newsArchivePage .p-blogWrapper,
.p-newsSinglePage .p-blogWrapper {
  grid-template-columns: 1fr;
}

.p-newsCtaIntro {
  background: var(--color-bg-blue);
  text-align: center;
  color: var(--color-main);
  font-weight: 700;
  font-size: 2.0625rem;
  line-height: 1.2;
  padding-top: 50px;
}

.p-newsArchivePage .p-ctaCard,
.p-newsSinglePage .p-ctaCard {
  background: var(--color-bg-blue);
}

/* ページネーション */
.c-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.c-pagination .page-numbers {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border: 1px solid #ccc;
  border-radius: 0;
  text-decoration: none;
  color: var(--color-main);
  font-family: var(--ff-lato);
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
}

.c-pagination .page-numbers.current {
  background: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .p-blogMv__inner {
    gap: 10px;
  }

  .p-blogMv__lead {
    font-size: 2.25rem;
  }

  .p-blogMv__desc {
    font-size: 1rem;
  }

  .p-blogWrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .p-blogCategory__list {
    grid-template-columns: 1fr;
  }

  .p-blogAside {
    gap: 40px;
  }

  .p-blogAside__title {
    font-size: 1.25rem;
  }

  .p-blogAside__popularList {
    gap: 15px;
  }

  .p-blogMetrics .c-sectionHead__title {
    font-size: 2.5rem;
  }

  .p-blogMetrics__grid {
    gap: 20px;
  }

  .p-newsCtaIntro {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .p-blogMv__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .p-blogMv__contents {
    display: contents;
  }

  .p-blogMv__lead {
    order: 1;
  }

  .p-blogMv__desc {
    order: 2;
  }

  .p-blogMv__form {
    max-width: 100%;
    height: 40px;
    order: 4;
  }

  .p-blogMv__image {
    order: 3;
    max-width: 300px;
    margin: 0 auto;
  }

  .p-blogWrapper {
    padding: 40px 0 60px;
  }

  .p-blogMain {
    gap: 40px;
  }

  .p-blogFeature__list,
  .p-blogLast__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-blogCategoryCard {
    height: 100px;
  }

  .p-blogMetrics .c-sectionHead__title {
    font-size: 2.25rem;
  }

  .p-blogMetrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-blogRecord__list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .p-blogMv__lead {
    font-size: 1.75rem;
  }

  .p-blogMv__desc {
    font-size: 0.875rem;
  }

  .p-blogFeature__list,
  .p-blogLast__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .p-blogCard__body {
    padding: 15px;
  }

  .p-blogCategoryCard__link {
    gap: 10px;
  }

  .p-blogCategoryCard__image {
    max-width: 80px;
  }

  .p-blogCategoryCard__body {
    padding: 15px 20px;
  }

  .p-blogRecord__value {
    font-size: 2rem;
  }

  .p-blogMetrics {
    padding: 40px 0;
  }

  .p-blogMetrics .c-sectionHead__title {
    font-size: 2rem;
  }

  .p-blogMetrics__grid {
    grid-template-columns: 1fr;
  }
}