@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/


/***************************************************** newblog *****************************************************/

/* ===== ピックアップ（カルーセル） ===== */
#pickup.section{
	padding:30px 0;
}

.nb-category{
	padding:30px;
	margin-bottom:30px;
}

.nb-category h2,
.nb-faq-products h2{
font-size: 24px;
z-index: 2;
text-align:center;
font-weight:normal;
display: flex;
align-items: left;
	margin:0 0 10px 0 !important;
	padding:5px 0;
	border-bottom:1px solid #000;
}

/* ===============================
   交互背景（nb-category-bg のみ対象）
=============================== */

/* 通常カテゴリ：交互背景 */
.nb-category-bg:not(.nb-category--tokusyu):nth-child(odd of .nb-category-bg){
  background-color: #edf2f4;
}

.nb-category-bg:not(.nb-category--tokusyu):nth-child(even of .nb-category-bg){
  background-color: #fcf5f5;
}

/* 特集：交互背景から除外 */
.nb-category--tokusyu{
  background-color: #fff;
}


.pwrap{
  position:relative;
}

.carousel{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:6px;
}
.carousel::-webkit-scrollbar{display:none}

.carousel .item{
  min-width:320px;
  scroll-snap-align:start;
  margin:0;
background: repeating-linear-gradient(
    -45deg,
    #fff 0 3px,
    #f4f4f4 3px 6px
  );
}


/* カード全体リンク（pickup） */
.pickup-link{
  display:flex;
  flex-direction:column;
  background:#fff;
  padding:14px;
  margin:10px;
  text-decoration:none;
  color:inherit;
}

/* 中身だけをふわっと */
.pickup-link > *{
  transition: opacity .25s ease;
}

/* hover時：中身だけ薄く */
.pickup-link:hover > *{
  opacity: .6;
}

/* パネル部（高さ揃え用） */
.pickup-link .panel{
  background:#fff;
  padding:14px 16px;
  flex:1;
  display:flex;
  flex-direction:column;
}

/* サムネ高さ固定 */
.pickup-link .thumb {
    aspect-ratio: 16 / 9;
    background: #fff;
    overflow: hidden;
}

.pickup-link .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* ===== pill ===== */
.pill{
  border-width:2px;
  border-radius:12px;
  display:block;
  width:fit-content;
  margin:0 10px 0 0;
  line-height:1.5;
  font-size:12px;
  text-align:center;
  padding:2px 13px;
  border:1px solid #000;
  color:#000;
}

/* ===== カテゴリ Pill カラー ===== */

/* お知らせ */
.pill.cat-news{
  border-color:#2f6fed;
  color:#2f6fed;
}

/* 健康系（既存） */
.pill.cat-health-tips{
  border-color:#e85b3a;
  color:#e85b3a;
}

/* コラム（既存） */
.pill.cat-column{
  border-color:#2fa56a;
  color:#2fa56a;
}

/* カテゴリなし */
.pill.cat-no-category{
  border-color:#999;
  color:#999;
}


/* ===== 追加分（新カテゴリ） ===== */

/* 対策ガイド */
.pill.cat-guides{
  border-color:#6b5cff;   /* 落ち着いたパープル */
  color:#6b5cff;
}

/* 特集 */
.pill.cat-specials{
  border-color:#e5533d;   /* 目立つオレンジレッド */
  color:#e5533d;
}

/* 健康コラム（新slug想定） */
.pill.cat-columns{
  border-color:#2fa56a;   /* 既存columnと同系色 */
  color:#2fa56a;
}

/* 専門家コラム */
.pill.cat-experts{
  border-color:#0ea5a4;   /* 信頼感のあるティール */
  color:#0ea5a4;
}

/* イベント・体験会 */
.pill.cat-events{
  border-color:#f59e0b;   /* イベント感のあるオレンジ */
  color:#f59e0b;
}

/* 事例・レビュー */
.pill.cat-cases{
  border-color:#64748b;   /* ブルーグレー */
  color:#64748b;
}

/* 商品活用・FAQ */
.pill.cat-products{
  border-color:#8b5cf6;   /* プロダクト系パープル */
  color:#8b5cf6;
}


/* ナビボタン */
.navbtn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid var(--line);
  background:rgba(0,0,0,.6);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 2px 6px rgba(0,0,0,.06);
}
.navprev{left:20px}
.navnext{right:20px}

/* ===== フィルターピル ===== */
.filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
margin-top:15px;
  margin-bottom:15px;
}

.filter-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #000;
  font-weight:600;
  color:#000;
  cursor:pointer;

  /* 追加 */
  transition:
    background-color .25s ease,
    border-color .25s ease,
    color .25s ease;
}

.filter-pill.is-active{
  background:#666;
  border-color:#666;
  color:#fff;
}

.filter-pill:hover{
  background:#ccc;
  border-color:#ccc;
  color:#fff;
}

.filter-pill:focus-visible{
  outline:2px solid #ccc;
  outline-offset:2px;
}


/* ===== 記事カード（共通） ===== */
.grid-articles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width:1024px){
  .grid-articles{
    grid-template-columns:repeat(2,1fr);
  }
}

.card-post{
  margin:0;
	width:100%;
}

.card-post--tokusyu .panel{ text-align:center; }

/* カード全体リンク（カテゴリ側） */
.card-link{
  display:flex;
  flex-direction:column;
  height:100%;
  border-radius:var(--radius);
  overflow:hidden;
  background:#f2f4f8;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  text-decoration:none;
  color:inherit;
  transition:transform .08s ease, box-shadow .08s ease;
}

.card-link:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(16,24,40,.08);
}

/* サムネ高さ固定 */
.card-link .thumb{
  aspect-ratio:16 / 9;
  background:#fff;
  overflow:hidden;
}

.card-link .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* パネル部（高さ揃え用） */
.card-link .panel{
  background:#fff;
  padding:14px 16px;
  flex:1;
  display:flex;
  flex-direction:column;
}

.card-link .meta-row{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
}

.card-link .title{
  font-size:18px;
  font-weight:normal;
  line-height:1.5;
  color:var(--ink);
}

/* 非公開ラベル */
.is-private{
  font-size:12px;
  color:#c00;
}

/* ===== ローディング（高さ維持用） ===== */
.loading{
  grid-column:1 / -1;
  min-height:200px; /* 実カードと近い高さ */
  display:flex;
  align-items:center;
  justify-content:center;
  color:#999;
  font-size:14px;
}

/* ===== もっと読む ===== */
.more-rounded{
  display:flex;
  justify-content:flex-end;
  margin-top:16px;
}

.more-rounded a{
  position: relative;
  overflow: hidden;                 /* はみ出し防止 */
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 25px;
  background:#000;                  /* 元の黒 */
  color:#fff;
  font-weight:700;
  box-shadow:var(--shadow);
  text-decoration:none;

  /* 文字は常に最前面 */
  z-index:0;
}

/* 幕（左から閉まるレイヤー） */
.more-rounded a::before{
  content:"";
  position:absolute;
  inset:0;
  background:#666;                  /* hover時の色 */
  transform: translateX(-100%);     /* 最初は左外 */
  transition: transform .35s cubic-bezier(.2,.6,.3,1);
  z-index:-1;                       /* 背景として敷く */
}

/* hoverで幕がスーッ */
.more-rounded a:hover::before{
  transform: translateX(0);
}


  /* ===== 商品活用・FAQ（カードタイル） ===== */
  .grid-products{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
  @media (max-width:1200px){ .grid-products{grid-template-columns:repeat(3,1fr)} }
  @media (max-width:1024px){ .grid-products{grid-template-columns:repeat(2,1fr)} }
  @media (max-width:640px){  .grid-products{grid-template-columns:1fr} }

  .product-tile{
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    padding:18px 20px; background:#fff; border:1px solid #e7ecf5; border-radius:16px;
    box-shadow:0 2px 8px rgba(16,24,40,.06); transition:transform .08s ease, box-shadow .08s ease;
  }
  .product-tile:hover{ transform:translateY(-1px); box-shadow:0 6px 16px rgba(16,24,40,.08) }
  .ptext{display:flex; flex-direction:column; gap:4px}
  .pname{font-size:18px; font-weight:800; color:#1f2429}
  .psub{font-size:13px; color:#667085}
  .arrow{
    width:28px; height:28px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    border:1px solid #e1e7f2; color:#8d99b5; font-size:16px; flex:0 0 28px;
  }


/* ===============================
   専門家コラム（差し替え用CSS）
=============================== */

/* 交互背景を完全に無効化 */
.nb-category--expert {
  background: #fff !important;
}

/* グリッド：3カラム */
.nb-category--expert .grid-experts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .nb-category--expert .grid-experts {
    grid-template-columns: 1fr;
  }
}

/* カード本体 */
.nb-category--expert .card-expert {
  border: 1px solid #e7ecf5;
  border-radius: 16px;
  background: #fff;
	margin:0;
	width:100%;
  overflow: hidden; /* 角丸を生かす */
}

/* ===== カード全面リンク ===== */
.nb-category--expert .card-expert > a {
  display: flex;
  gap: 14px;
  padding: 16px;
  height: 100%;               /* ← 重要 */
  min-height: 100%;           /* ← 念のため */
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
  transition: background-color .25s ease;
}

/* hover：ふわっと薄く */
.nb-category--expert .card-expert > a:hover {
  background-color: #f2f2f2;
}

/* アバター */
.nb-category--expert .avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #e5e7eb;
}

.nb-category--expert .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右側本文 */
.nb-category--expert .exp-body {
  flex: 1;
}

/* 名前 */
.nb-category--expert .exp-head {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.4;
}

/* 肩書 */
.nb-category--expert .exp-sub {
  font-size: 12px;
  color: #667085;
  margin-top: 2px;
}

/* 日付 */
.nb-category--expert .exp-date {
  font-size: 12px;
  color: #98a2b3;
  margin: 6px 0 4px;
}

/* 記事タイトル */
.nb-category--expert .exp-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}

/* 既存の浮く動き・影は完全に使わない */
.nb-category--expert .card-expert,
.nb-category--expert .card-expert:hover {
  transform: none;
  box-shadow: none;
}


/* カテゴリー */
.newblog-category-wrapper {
    --bg: #f5f7fa;
    --ink: #222;
    --muted: #666;
    --line: #e5e8ee;
    --card: #fff;
    --pill: #eef2ff;
    --pill-text: #3246a8;
    --accent: #3246a8;
    --chip: #f0f2f5;
}

.newblog-category-wrapper * {
    box-sizing: border-box;
}

.newblog-category-wrapper a {
    text-decoration: none;
    color: inherit;
}

.newblog-category-wrapper .wrap {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 12px;
}

.newblog-category-wrapper .breadcrumb {
    font-size: 12px;
    color: var(--muted);
    margin: 8px 0 16px;
}

.newblog-category-wrapper .breadcrumb a {
    color: var(--muted);
}

.newblog-category-wrapper .grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 24px;
}

/* HERO エリア */
.newblog-category-wrapper .hero {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 16px;
}

.newblog-category-wrapper .hero-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: center;
}

.newblog-category-wrapper .hero-text {
    padding: 24px;
}

.newblog-category-wrapper .hero h1 {
    margin: 0 0 10px;
    font-size: 2em;
    line-height: 1.4;
}

.newblog-category-wrapper .hero .desc {
    color: var(--muted);
    margin: 0;
}

.newblog-category-wrapper .tagbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 0;
}

.newblog-category-wrapper .tag {
    background: var(--chip);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 6px 10px;
    font-size: 13px;
    white-space: nowrap;
}

.newblog-category-wrapper .hero-image {
    position: relative;
}

.newblog-category-wrapper .hero-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center right;
    border-radius: 12px;
}

.newblog-category-wrapper .hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(248,250,252,1), rgba(248,250,252,0.6) 40%, rgba(248,250,252,0) 75%);
    border-radius: 12px;
    pointer-events: none;
}

/* 注目記事（Feature New）*/
.newblog-category-wrapper .feature-new {
    position: relative;
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 20px;
    padding: 15px;
    background: #fff;
    border: 2px solid var(--accent);
    border-radius: 20px;
    align-items: center;
    overflow: hidden;
    margin-bottom: 24px;
    margin-top: 0;
    width: 100%;
}

.newblog-category-wrapper .feature-new-badge {
    position: absolute;
    top: 14px;
    left: -38px;
    width: 120px;
    text-align: center;
    background: #ff5a5f;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 0;
    transform: rotate(-45deg);
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.newblog-category-wrapper .feature-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.newblog-category-wrapper .feature-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.newblog-category-wrapper .pill {
    display: inline-block;
    padding: 6px 8px;
    border-radius: 15px;
    background: var(--pill);
    color: var(--pill-text);
    font-size: 12px;
    border: none;
    transition: opacity 0.2s ease;
}

.newblog-category-wrapper a.pill:hover {
    opacity: 0.7;
}

.newblog-category-wrapper .feature-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #ddd;
    border-radius: 14px;
    overflow: hidden;
}

.newblog-category-wrapper .feature-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.newblog-category-wrapper .feature-body h2 {
    margin: 10px 0;
    font-size: 22px;
    line-height: 1.4;
}

.newblog-category-wrapper .feature-body .lead {
    color: var(--muted);
    margin: 0 0 14px;
}

.newblog-category-wrapper .feature-tags {
    display: flex;
    gap: 5px;
    margin: 6px 0 12px;
    flex-wrap: wrap;
}

.newblog-category-wrapper .feature-tags a {
    font-size: 11px;
    padding: 4px 8px;
    background: var(--chip);
    border: 1px solid var(--line);
    border-radius: 15px;
    text-decoration: none;
    white-space: nowrap;
}

.newblog-category-wrapper .feature-link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 6px 20px;
    border: 1px solid #dcdcdc;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 13px;
    text-decoration: none;
    transition: opacity .2s ease;
}

.newblog-category-wrapper .feature-arrow {
    width: 14px;

    height: 14px;
    fill: none;
    stroke: #2f43c6;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.newblog-category-wrapper .feature-link:hover {
    opacity: 0.6;
}

/* 記事一覧カード */
.newblog-category-wrapper .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.newblog-category-wrapper .card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
    width: 100%;
}

.newblog-category-wrapper .card .thumb {
    width: 100%;
    height: 150px;
    background: #ddd;
    overflow: hidden;
}

.newblog-category-wrapper .card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newblog-category-wrapper .card .body {
    padding: 12px;
}

.newblog-category-wrapper .meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.newblog-category-wrapper .meta-row .date {
    margin-left: auto;
    font-size: 14px;
    color: var(--muted);
}

.newblog-category-wrapper .card h3 {
    font-size: 18px;
    margin: 6px 0;
    line-height: 1.4;
}

.newblog-category-wrapper .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.newblog-category-wrapper .card-tags .tag {
    background: var(--chip);
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 6px 8px;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
}

/* 商品バナー */
.newblog-category-wrapper .product-banner {
    margin: 24px 0;
}

.newblog-category-wrapper .product-banner-link {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
}

.newblog-category-wrapper .product-banner-link img {
    width: 100%;
    height: auto;
    display: block;
}

.newblog-category-wrapper .product-banner-link:hover {
    opacity: 0.85;
}

/* ページネーション */
.newblog-category-wrapper .pager {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
}

.newblog-category-wrapper .pager .page-numbers,
.newblog-category-wrapper .pager a,
.newblog-category-wrapper .pager span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none;
    line-height: 1;
}

.newblog-category-wrapper .pager .page-numbers.current {
    border-color: var(--accent);
    color: var(--accent);
    font-weight: bold;
}

/* サイドバー */
.newblog-category-wrapper aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newblog-category-wrapper .widget {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px;
}

.newblog-category-wrapper .widget h4 {
    margin: 0 0 8px;
}

.newblog-category-wrapper .sidebar-search {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 10px;
    background: #fff;
}

.newblog-category-wrapper .sidebar-search input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 13px;
    background: transparent;
}

.newblog-category-wrapper .sidebar-search button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.newblog-category-wrapper .sidebar-search svg {
    width: 16px;
    height: 16px;
    stroke: #2f43c6;
    stroke-width: 2;
    fill: none;
}

.newblog-category-wrapper .sidebar-search:focus-within {
    border-color: #2f43c6;
}

.newblog-category-wrapper .rank {
    display: flex;
    flex-direction: column;
}

.newblog-category-wrapper .rank-item {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
}

.newblog-category-wrapper .rank-item:first-child {
    border-top: none;
}

.newblog-category-wrapper .rank-thumb-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.newblog-category-wrapper .rank-item .rthumb {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: #ddd;
    overflow: hidden;
}

.newblog-category-wrapper .rank-item .rthumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newblog-category-wrapper .rank-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 22px;
    height: 22px;
    border-radius: 0px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.newblog-category-wrapper .rank-1 { background: #d4af37; }
.newblog-category-wrapper .rank-2 { background: #c0c0c0; }
.newblog-category-wrapper .rank-3 { background: #cd7f32; }
.newblog-category-wrapper .rank-4 { background: #999; }
.newblog-category-wrapper .rank-5 { background: #999; }

.newblog-category-wrapper .rank-sub {
    font-size: 12px;
    color: #777;
    margin-left: 4px;
    white-space: nowrap;
}

.newblog-category-wrapper .rank-title {
    font-size: 14.5px;
    line-height: 1.5;
    color: #222;
    font-weight: 700;
}

.newblog-category-wrapper .small {
    font-size: 12px;
    color: var(--muted);
}

.newblog-category-wrapper .keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.newblog-category-wrapper .keyword-tags a {
    font-size: 12px;
    padding: 4px 8px;
    background: var(--chip);
    border: 1px solid var(--line);
    border-radius: 12px;
    white-space: nowrap;
}

.newblog-category-wrapper .event-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 6px 0;
    text-decoration: none;
    color: inherit;
}

.newblog-category-wrapper .event-thumb {
    width: 72px;
    height: 72px;
    background: #ddd;
    border-radius: 10px;
    flex-shrink: 0;
}

.newblog-category-wrapper .event-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.newblog-category-wrapper .event-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.newblog-category-wrapper .event-date {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.newblog-category-wrapper .event-card:hover {
    opacity: 0.7;
}

.newblog-category-wrapper .archive-select {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid var(--line);
    background: #fff;
}

.newblog-category-wrapper .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 6px 20px;
    border: 1px solid #dcdcdc;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 13px;
    text-decoration: none;
    transition: opacity .2s ease;
}

.newblog-category-wrapper .btn-cta svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #2f43c6;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.newblog-category-wrapper .btn-cta:hover {
    opacity: 0.6;
}

.newblog-category-wrapper .toggle-body {
    display: block;
}

.newblog-category-wrapper .toggle-btn {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .newblog-category-wrapper .grid {
        grid-template-columns: 1fr;
    }
    
    .newblog-category-wrapper .hero-split {
        grid-template-columns: 1fr;
    }
    
    .newblog-category-wrapper .hero-image {
        order: -1;
    }
    
    .newblog-category-wrapper .hero-image img {
        aspect-ratio: 21 / 9;
    }
}

@media (max-width: 768px) {
    .newblog-category-wrapper .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .newblog-category-wrapper .card h3 {
        font-size: 16px;
    }
    
    .newblog-category-wrapper .card .thumb {
        height: 120px;
    }
    
    .newblog-category-wrapper .feature-new {
        padding: 16px;
        gap: 14px;
        grid-template-columns: 1fr;
    }
    
    .newblog-category-wrapper .feature-body h2 {
        font-size: 18px;
    }
    
    .newblog-category-wrapper .feature-thumb {
        aspect-ratio: 16/9;
    }
    
    .newblog-category-wrapper .product-banner {
        margin: 18px 0;
    }
    
    .newblog-category-wrapper .toggle-body {
        display: none;
    }
    
    .newblog-category-wrapper .widget-toggle.open .toggle-body {
        display: block;
    }
    
    .newblog-category-wrapper .toggle-btn {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: #f3f5ff;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }
}


.l-article {
    max-width: none;
}

#pickup.section {
    padding: 40px 0;
}

.pwrap {
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
}

.carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel .item {
    min-width: 420px;
    scroll-snap-align: start;
    margin: 0;
}

@media (min-width: 1024px) {
    .carousel .item {
        min-width: 520px;
    }
}

.pickup-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
}

.pickup-link .thumb {
    aspect-ratio: 16 / 9;
    background: #000;
}

.pickup-link .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.pickup-link .panel {
    padding: 20px 22px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}



.pickup-link .pttl {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #111;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pickup-link .meta {
    font-size: 0.85rem;
    color: #666;
}
.pickup-link .meta{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.pickup-link .pill {
    position: static;

    width: fit-content;
    padding: 2px 10px;
    font-size: 11px;
    line-height: 1.4;
    border-radius: 999px;
    background: #fff;
    color: #000;
    border: 1px solid currentColor;
}

.pickup-link img {
    transition: transform 0.35s ease;
}

.pickup-link:hover img {
    transform: scale(1.03);
}

.navbtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}

.navprev {
    left: 10px;
}

.navnext {
    right: 10px;
}


.nb-category-bg {
    background-color: #f4f4f4!important;
}

.nb-category {
    padding: 40px 30px;
    margin-bottom: 40px;
}

.nb-category h2 {
    font-size: 28px;
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: 700;
    color: #333333;
    margin: 0 0 14px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #dddddd;
}

.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #cccccc;
    font-size: 14px;
    font-weight: normal;
    color: #333333;
    cursor: pointer;
}

.filter-pill.is-active {
    background: #666666;
    border-color: #666666;
    color: #ffffff;
}

.card-post {
    width: 100%;
}

.card-link {
    display: block;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.card-post .thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #ffffff;
}

.card-post .thumb img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-post .panel {
    padding: 14px 16px 18px;
}

.card-post .meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666666;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.card-post .meta-row .pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 12px;
    font-size: 12px;
    line-height: 1.4;
    border-radius: 999px;
    border: 1px solid #cccccc;
    background: #ffffff;
    color: #333333;
    white-space: nowrap;
}



.card-post .meta-row .pill.cat-health-tips {
    border-color: #e85b3a;
    color: #e85b3a;
}

.card-post .meta-row .pill.cat-news {
    border-color: #3b6edc;
    color: #3b6edc;
}

.card-post .meta-row .is-private {
    color: #c00;
    font-size: 12px;
}

.card-post .title {
    font-size: 15px;
    font-weight: normal;
    line-height: 1.6;
    color: #222222;
    white-space: normal;
    overflow: visible;
    word-break: break-word;
}

.more-rounded {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
}

.more-rounded a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    background: #5f5f5f;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-decoration: none;
    border-radius: 6px;
    min-width: 240px;
}

.more-rounded a span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.more-rounded a span::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    display: block;
}

.more-rounded a:hover {
    background: #4a4a4a;
}

.nb-category .meta-row .subcat {
    padding: 5px 8px;
    border: 1px solid #aaa;
    border-radius: 999px;
    font-size: 0.65rem;
    line-height: 1.4;
    background: #fff;
    color: #444;
    white-space: nowrap;
}

.nb-faq-products h2 {
    font-size: 32px;
    font-weight: 800;
    color: #222222;
    margin-bottom: 6px;
}

.nb-faq-products .psub {
    font-size: 14px;
    color: #444444;
}

.product-tile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #e7ecf5;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(16, 24, 40, .06);
    transition: transform .08s ease, box-shadow .08s ease;
}

.product-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 24, 40, .12);
}

.pmedia {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background: #f6f6f6;
    flex-shrink: 0;
    margin-right: 4px;
}

.pmedia img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222222;
    font-size: 0;
    position: relative;
    flex: 0 0 34px;
    margin-left: auto;
}

.arrow::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 3px solid #222222;
    border-right: 3px solid #222222;
    transform: rotate(45deg);
    display: block;
}

.product-tile:hover .arrow {
    background: #e6e6e6;
}

.nb-faq-products .more-rounded a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    background: #666666;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 6px;
    text-decoration: none;
    min-width: 260px;
}

.nb-faq-products .more-rounded a:hover {
    background: #4a4a4a;
}

.nb-faq-products .more-rounded a span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nb-faq-products .more-rounded a span::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
}



.nb-category--tokusyu {
    background: none;
    padding: 0px;
}

.nb-category--tokusyu h2 {
    font-size: 32px;
    font-weight: 800;
    color: #222222;
    margin-bottom: 6px;
border-bottom: none;
padding-bottom: 0px;
}

.nb-category--tokusyu .subline {
    height: 1px;
    background: #dddddd;
    margin-bottom: 24px;
}


.tokusyu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tokusyu-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    min-height: 140px;
    text-decoration: none;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tokusyu-banner:hover {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(16, 24, 40, .12);
    transform: translateY(-2px);
}

.tokusyu-text {
    text-align: center;
}

.tokusyu-title {
    font-size: 17px;
    font-weight: 600;
    color: #1f2429;
    line-height: 1.5;
}

.tokusyu-sub {
    margin-top: 8px;
    font-size: 13px;
    color: #667085;
}


@media (max-width: 1024px) {
    .tokusyu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .nb-category--tokusyu {
        padding: 30px 20px;
    }

    .tokusyu-grid {
        grid-template-columns: 1fr;
    }

    .tokusyu-banner {
        padding: 0px;
        min-height: auto;
    }

    .tokusyu-title {
        font-size: 16px;
    }
}

.nb-category--expert {
  background: #f4f4f4!important;
}

.nb-category--expert .grid-experts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.nb-category--expert .card-expert {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e7ecf5;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nb-category--expert .card-expert > a {
padding:0px;
gap: 0px;
}

.nb-category--expert .card-expert:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12);
}

.nb-category--expert .card-expert__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.nb-category--expert .card-expert__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #ffffff;
}

.nb-category--expert .card-expert__thumb img {

}


.nb-category--expert .card-expert__content {
  display: flex;
  flex-direction: column;
  padding: 16px 18px 20px;
  gap: 12px;
  flex: 1;
}

.nb-category--expert .card-expert__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nb-category--expert .card-expert__author-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: #dddddd;
  flex-shrink: 0;
}

.nb-category--expert .card-expert__author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nb-category--expert .card-expert__author-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.nb-category--expert .card-expert__author-title {
  font-size: 12px;
  font-weight: 600;
  padding-bottom:2px
}

.nb-category--expert .card-expert__author-name {
  font-size: 16px;
  font-weight: 700;
}

.nb-category--expert .card-expert__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #7a8699;
}

.nb-category--expert .card-expert__cat {
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid #cfd8ff;
  color: #4a67ff;
  font-weight: 600;
  background: #ffffff;
}

.nb-category--expert .card-expert__title {
  font-size: 15px;
  line-height: 1.6;
}



@media (max-width: 1024px) {
  .nb-category--expert .grid-experts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nb-category--expert .grid-experts {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nb-category--expert .card-expert__content {
    padding: 14px 14px 18px;
    gap:5px!important;
  }

  .nb-category--expert .card-expert__title {
    font-size: 14px;
    font-weight: 400!important;
    margin-top: 0px;
  }
}

@media (max-width: 640px) {

.l-content {
    margin: 0 auto;
    padding: 0;
}
.card-post {
    width: 100%;
    margin-bottom: 20px;
}

.carousel .item {
    min-width: 100%;
}

.grid-articles{
display: block;
}

.grid-products{
gap: 0;
}

.product-tile{
border-radius: 0;
box-shadow: none;
}

.nb-faq-products{
padding: 40px 30px;
}

  .nb-category--expert .grid-experts {
    display: block;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .nb-category--expert .grid-experts::-webkit-scrollbar {
    display: none;
  }

  .nb-category--expert .card-expert {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    margin-bottom: 20px;
  }

.nb-category--expert .card-expert > a{
display: block;
}

  .nb-category--expert .card-expert__link {
    display: flex;
    flex-direction: row;
    height: auto;
  }

  

  .nb-category--expert .card-expert__content {
    padding: 12px 12px 14px;
    gap: 6px;
  }

  .nb-category--expert .card-expert__author {
    gap: 8px;
  }

  .nb-category--expert .card-expert__author-photo {
    width: 32px;
    height: 32px;
  }

  .nb-category--expert .card-expert__author-title {
    font-size: 11px;
  }

  .nb-category--expert .card-expert__author-name {
    font-size: 13px;
  }

  .nb-category--expert .card-expert__meta {
    font-size: 10px;
    gap: 8px;
  }

  .nb-category--expert .card-expert__cat {
    padding: 2px 8px;
    font-size: 8px;
  }

  .nb-category--expert .card-expert__title {
    font-size: 14px;
    line-height: 1.55;
  }
.more-rounded {
    text-align: center;
display: block;
        margin-top: 0px;
}
.card-link,
.card-expert__link {
    align-items: stretch;
}

}

