@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
*/


/* =========================================
   カラー変数
========================================= */
:root {
  --bht-bg: #f7f1e8;
  --bht-bg-soft: #fffaf3;
  --bht-bg-card: #fffaf4;
  --bht-bg-deep: #efe4d7;
  --bht-line: #e7dacb;
  --bht-line-soft: #eedfce;
  --bht-text: #4f433b;
  --bht-text-sub: #6a5c52;
  --bht-link: #8d6240;
  --bht-link-hover: #744f33;
  --bht-accent: #b27c49;
  --bht-accent-deep: #96653d;
  --bht-shadow: 0 10px 24px rgba(110, 86, 61, 0.05);
  --bht-shadow-lg: 0 16px 44px rgba(108, 85, 62, 0.07);
  --bht-radius-sm: 14px;
  --bht-radius-md: 20px;
  --bht-radius-lg: 28px;
}


/* =========================================
   サイト全体
========================================= */
html,
body {
  background: var(--bht-bg);
  color: var(--bht-text);
}

body {
  line-height: 1.8;
}

#body_wrap,
.l-wrapper,
.l-container,
.l-content,
.l-content__inner,
.l-mainContent,
.l-mainContent__inner,
.l-sidebar,
.l-mainContent__section {
  background: transparent;
}

body,
p,
li,
dt,
dd,
small,
span,
time {
  color: var(--bht-text);
}

a {
  color: var(--bht-link);
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--bht-link-hover);
}


/* =========================================
   ヘッダー
========================================= */
.l-header,
.l-fixHeader,
.l-header__inner,
.l-fixHeader__inner {
  background: rgba(255, 250, 243, 0.94);
  backdrop-filter: blur(8px);
}

.l-header {
  border-bottom: 1px solid var(--bht-line);
}

.c-headLogo__link,
.c-gnav > li > a,
.c-gnav .menu-item > a,
.l-header a,
.l-fixHeader a,
.c-iconBtn {
  color: var(--bht-text);
}

.c-headLogo__link:hover,
.c-gnav > li > a:hover,
.c-gnav .menu-item > a:hover,
.l-header a:hover,
.l-fixHeader a:hover,
.c-iconBtn:hover {
  color: var(--bht-link-hover);
}


/* =========================================
   パンくず
========================================= */
.p-breadcrumbWrap {
  background: transparent;
}

.p-breadcrumb,
.p-breadcrumb a {
  color: var(--bht-text-sub);
}


/* =========================================
   カード・ボックス・サイドバー
========================================= */
.c-widget,
.p-authorBox,
.p-profileBox,
.p-pnLinks,
.p-shareBtns,
.p-relatedPosts,
.p-articleBottom,
.p-toc,
.post_content blockquote,
.wp-block-table table,
.wp-block-group.has-background,
.archive .p-postList__item,
.search .p-postList__item {
  background: var(--bht-bg-card);
  border: 1px solid var(--bht-line);
  border-radius: var(--bht-radius-md);
  box-shadow: var(--bht-shadow);
}

.c-widget__title {
  color: var(--bht-text);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bht-line);
}


/* =========================================
   投稿一覧
========================================= */
.p-postList__item {
  background: var(--bht-bg-card);
  border: 1px solid var(--bht-line);
  border-radius: var(--bht-radius-md);
  box-shadow: var(--bht-shadow);
}

.p-postList__title,
.p-postList__title a,
.p-postList__meta,
.p-postList__excerpt {
  color: var(--bht-text);
}


/* =========================================
   記事本文の見出し
========================================= */
.post_content h2,
.entry-content h2 {
  margin: 0 0 16px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--bht-text);
  font-size: 1.8rem;
  line-height: 1.5;
}

.post_content h3,
.entry-content h3 {
  margin: 0 0 12px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--bht-text);
  font-size: 1.35rem;
  line-height: 1.6;
}

.post_content h2::before,
.post_content h2::after,
.entry-content h2::before,
.entry-content h2::after,
.post_content h3::before,
.post_content h3::after,
.entry-content h3::before,
.entry-content h3::after {
  display: none;
  content: none;
}


/* =========================================
   ボタン
========================================= */
.wp-block-button__link,
.c-btn,
.bht-ivory-btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--bht-accent) 0%, var(--bht-accent-deep) 100%);
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(176, 122, 73, 0.18);
  text-decoration: none;
}


/* =========================================
   フォーム
========================================= */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select {
  background: #fffaf4;
  color: var(--bht-text);
  border: 1px solid var(--bht-line);
  border-radius: var(--bht-radius-sm);
}


/* =========================================
   フッター
========================================= */
.l-footer,
.l-footer__inner,
#footer {
  background: var(--bht-bg-deep);
  color: var(--bht-text);
  border-top: 1px solid #e0d1c1;
}

.l-footer a,
#footer a {
  color: var(--bht-text);
}

.l-footer a:hover,
#footer a:hover {
  color: var(--bht-link-hover);
}


/* =========================================
   トップページ共通
========================================= */
.home .bht-ivory-hero,
.home .bht-ivory-entry,
.home .bht-ivory-feature,
.home .bht-ivory-pickup,
.home .bht-ivory-category,
.home .bht-ivory-policy,
.home .bht-ivory-finalcta {
  margin: 0 0 56px;
}

.home .bht-ivory-hero__inner,
.home .bht-ivory-feature__inner,
.home .bht-ivory-policy__inner,
.home .bht-ivory-finalcta__inner {
  position: relative;
  overflow: hidden;
  padding: 48px 40px;
  background: linear-gradient(180deg, #fffdf8 0%, #f6efe5 100%);
  border: 1px solid var(--bht-line);
  border-radius: var(--bht-radius-lg);
  box-shadow: var(--bht-shadow-lg);
}

.home .bht-ivory-hero__inner::before,
.home .bht-ivory-feature__inner::before,
.home .bht-ivory-policy__inner::before,
.home .bht-ivory-finalcta__inner::before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 157, 118, 0.14) 0%, rgba(193, 157, 118, 0) 70%);
  pointer-events: none;
}

.bht-ivory-eyebrow,
.bht-ivory-sectionhead__label,
.bht-ivory-feature__label,
.bht-ivory-card__label,
.bht-ivory-entrycard__label,
.bht-ivory-categorycard__label,
.bht-ivory-policy__label,
.bht-ivory-finalcta__label {
  margin: 0 0 10px;
  color: #9b7756;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  word-spacing: 0;
  line-height: 1.6;
}

.home .bht-ivory-sectionhead__label {
  display: none;
}

.home .bht-ivory-sectionhead {
  margin: 0 0 18px;
}

.home .bht-ivory-sectionhead__title,
.home .bht-ivory-hero__title,
.home .bht-ivory-feature__title,
.home .bht-ivory-policy__title,
.home .bht-ivory-finalcta__title,
.home .bht-ivory-posts-heading {
  margin: 0 0 14px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #4c4037;
  line-height: 1.5;
}

.home .bht-ivory-sectionhead__title::before,
.home .bht-ivory-sectionhead__title::after,
.home .bht-ivory-hero__title::before,
.home .bht-ivory-hero__title::after,
.home .bht-ivory-feature__title::before,
.home .bht-ivory-feature__title::after,
.home .bht-ivory-policy__title::before,
.home .bht-ivory-policy__title::after,
.home .bht-ivory-finalcta__title::before,
.home .bht-ivory-finalcta__title::after,
.home .bht-ivory-posts-heading::before,
.home .bht-ivory-posts-heading::after {
  display: none;
  content: none;
}

.home .bht-ivory-hero__title {
  font-size: 2.2rem;
  line-height: 1.45;
}

.home .bht-ivory-sectionhead__title {
  font-size: 1.7rem;
}

.home .bht-ivory-feature__title,
.home .bht-ivory-policy__title,
.home .bht-ivory-finalcta__title,
.home .bht-ivory-posts-heading {
  font-size: 1.8rem;
}

.home .bht-ivory-hero__text,
.home .bht-ivory-feature__text,
.home .bht-ivory-policy__text,
.home .bht-ivory-finalcta__text,
.home .bht-ivory-sectionhead__text,
.home .bht-ivory-card__text,
.home .bht-ivory-entrycard__text,
.home .bht-ivory-categorycard__text,
.home .bht-ivory-policycard__text {
  margin: 0;
  color: #64584e;
  line-height: 1.95;
  font-size: 1rem;
}

.home .bht-ivory-hero__buttons,
.home .bht-ivory-feature__buttons,
.home .bht-ivory-policy__buttons,
.home .bht-ivory-finalcta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.home .bht-ivory-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.home .bht-ivory-btn:hover {
  transform: translateY(-2px);
  opacity: 0.98;
}

.home .bht-ivory-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.home .bht-ivory-hero__points li {
  margin: 0;
  padding: 9px 14px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid #eadcca;
  border-radius: 999px;
  color: #6d5f53;
  font-size: 0.9rem;
  line-height: 1.6;
}

.home .bht-ivory-entry__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home .bht-ivory-cardgrid,
.home .bht-ivory-policy__grid,
.home .bht-ivory-category__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home .bht-ivory-entrycard,
.home .bht-ivory-card,
.home .bht-ivory-categorycard,
.home .bht-ivory-policycard {
  display: block;
  height: 100%;
  padding: 26px 24px;
  background: var(--bht-bg-card);
  border: 1px solid var(--bht-line);
  border-radius: 22px;
  box-shadow: var(--bht-shadow);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home .bht-ivory-entrycard:hover,
.home .bht-ivory-card:hover,
.home .bht-ivory-categorycard:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(105, 82, 58, 0.08);
  border-color: #d8c3aa;
}

.home .bht-ivory-entrycard__title,
.home .bht-ivory-card__title,
.home .bht-ivory-categorycard__title,
.home .bht-ivory-policycard__title {
  margin: 0 0 10px;
  color: #4c4037;
  line-height: 1.55;
}

.home .bht-ivory-entrycard__title,
.home .bht-ivory-card__title,
.home .bht-ivory-categorycard__title {
  font-size: 1.2rem;
}

.home .bht-ivory-policycard__title {
  font-size: 1.08rem;
}

.home .bht-ivory-entrycard__link {
  display: inline-block;
  margin-top: 14px;
  color: #996b43;
  font-weight: 700;
  line-height: 1.7;
}

.home .bht-ivory-feature__content {
  max-width: 760px;
}

.home .bht-ivory-policycard {
  background: rgba(255, 253, 248, 0.72);
}


/* =========================================
   ページネーション
========================================= */
.page-numbers,
.page-numbers.current,
.c-pagination a,
.c-pagination span {
  background: var(--bht-bg-card);
  color: var(--bht-text);
  border: 1px solid var(--bht-line);
  border-radius: 999px;
}

.page-numbers.current,
.c-pagination .current {
  background: var(--bht-accent);
  color: #ffffff;
  border-color: var(--bht-accent);
}


/* =========================================
   トップページ共通レスポンシブ
========================================= */
@media (max-width: 991px) {
  .home .bht-ivory-entry__grid,
  .home .bht-ivory-cardgrid,
  .home .bht-ivory-policy__grid,
  .home .bht-ivory-category__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .post_content h2,
  .entry-content h2 {
    font-size: 1.5rem;
  }

  .post_content h3,
  .entry-content h3 {
    font-size: 1.2rem;
  }

  .c-widget,
  .p-authorBox,
  .p-profileBox,
  .p-pnLinks,
  .p-shareBtns,
  .p-relatedPosts,
  .p-articleBottom,
  .p-toc,
  .post_content blockquote,
  .wp-block-table table,
  .wp-block-group.has-background,
  .archive .p-postList__item,
  .search .p-postList__item {
    border-radius: 16px;
  }

  .home .bht-ivory-hero,
  .home .bht-ivory-entry,
  .home .bht-ivory-feature,
  .home .bht-ivory-pickup,
  .home .bht-ivory-category,
  .home .bht-ivory-policy,
  .home .bht-ivory-finalcta {
    margin: 0 0 40px;
  }

  .home .bht-ivory-hero__inner,
  .home .bht-ivory-feature__inner,
  .home .bht-ivory-policy__inner,
  .home .bht-ivory-finalcta__inner,
  .home .bht-ivory-entrycard,
  .home .bht-ivory-card,
  .home .bht-ivory-categorycard,
  .home .bht-ivory-policycard {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .home .bht-ivory-hero__title {
    font-size: 1.7rem;
  }

  .home .bht-ivory-sectionhead__title,
  .home .bht-ivory-feature__title,
  .home .bht-ivory-policy__title,
  .home .bht-ivory-finalcta__title,
  .home .bht-ivory-posts-heading {
    font-size: 1.45rem;
  }

  .home .bht-ivory-hero__buttons,
  .home .bht-ivory-feature__buttons,
  .home .bht-ivory-policy__buttons,
  .home .bht-ivory-finalcta__buttons {
    flex-direction: column;
  }

  .home .bht-ivory-btn {
    width: 100%;
  }

  .home .bht-ivory-hero__points {
    flex-direction: column;
  }

  .home .bht-ivory-hero__points li {
    width: 100%;
    box-sizing: border-box;
  }
}


/* =========================================
   日本語ラベルの字間リセット
========================================= */
.home .bht-ivory-eyebrow,
.home .bht-ivory-sectionhead__label,
.home .bht-ivory-feature__label,
.home .bht-ivory-card__label,
.home .bht-ivory-entrycard__label,
.home .bht-ivory-categorycard__label,
.home .bht-ivory-policy__label,
.home .bht-ivory-finalcta__label,
.bht-ivory-eyebrow,
.bht-ivory-sectionhead__label,
.bht-ivory-feature__label,
.bht-ivory-card__label,
.bht-ivory-entrycard__label,
.bht-ivory-categorycard__label,
.bht-ivory-policy__label,
.bht-ivory-finalcta__label {
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  text-transform: none !important;
  font-kerning: normal;
  font-feature-settings: "palt" 0;
}


/* =========================================
   サイドバー：ウィジェット共通
========================================= */
.l-sidebar .c-widget,
.l-sidebar .widget,
.l-sidebar .widget_block {
  background: var(--bht-bg-card);
  border: 1px solid var(--bht-line);
  border-radius: 22px;
  box-shadow: var(--bht-shadow);
  overflow: hidden;
}

.l-sidebar .c-widget__title,
.l-sidebar .widgettitle,
.l-sidebar .wp-block-heading {
  margin: 0;
  padding: 18px 22px 14px;
  color: var(--bht-text);
  border-bottom: 1px solid var(--bht-line);
  line-height: 1.5;
}


/* =========================================
   サイドバー：検索フォーム
========================================= */
.l-sidebar .wp-block-search,
.l-sidebar .widget_search,
.l-sidebar .searchform {
  margin: 0;
}

.l-sidebar .wp-block-search__inside-wrapper,
.l-sidebar .searchform,
.l-sidebar form[role="search"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0;
  min-height: 58px;
  background: #fffaf4;
  border: 1px solid var(--bht-line);
  border-radius: 22px;
  box-shadow: var(--bht-shadow);
  overflow: hidden;
}

.l-sidebar .wp-block-search__input,
.l-sidebar .searchform input[type="search"],
.l-sidebar .searchform input[type="text"],
.l-sidebar form[role="search"] input[type="search"],
.l-sidebar .c-searchform__input {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  margin: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--bht-text);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 1rem;
  line-height: 1.4;
}

.l-sidebar .wp-block-search__input::placeholder,
.l-sidebar .searchform input[type="search"]::placeholder,
.l-sidebar .searchform input[type="text"]::placeholder,
.l-sidebar form[role="search"] input[type="search"]::placeholder,
.l-sidebar .c-searchform__input::placeholder {
  color: var(--bht-text-sub);
  opacity: 1;
}

.l-sidebar .wp-block-search__input:focus,
.l-sidebar .searchform input[type="search"]:focus,
.l-sidebar .searchform input[type="text"]:focus,
.l-sidebar form[role="search"] input[type="search"]:focus,
.l-sidebar .c-searchform__input:focus {
  outline: none;
  box-shadow: none;
}

.l-sidebar .wp-block-search__inside-wrapper:focus-within,
.l-sidebar .searchform:focus-within,
.l-sidebar form[role="search"]:focus-within {
  border-color: #d3bda6;
  box-shadow: 0 0 0 4px rgba(178, 124, 73, 0.12);
}

.l-sidebar .wp-block-search__button,
.l-sidebar .searchform input[type="submit"],
.l-sidebar form[role="search"] button,
.l-sidebar form[role="search"] input[type="submit"],
.l-sidebar .c-searchform__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 58px;
  margin: 0;
  padding: 0 18px;
  background: var(--bht-accent-deep);
  color: #fffaf4;
  border: 0;
  border-left: 1px solid var(--bht-line);
  border-radius: 0;
  box-shadow: none;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  opacity: 1;
}

.l-sidebar .wp-block-search__button:hover,
.l-sidebar .searchform input[type="submit"]:hover,
.l-sidebar form[role="search"] button:hover,
.l-sidebar form[role="search"] input[type="submit"]:hover,
.l-sidebar .c-searchform__submit:hover {
  background: var(--bht-accent);
  color: #fffaf4;
}


/* =========================================
   サイドバー：最近の投稿 / コメント
========================================= */
.l-sidebar .widget_recent_entries ul,
.l-sidebar .widget_recent_comments ul,
.l-sidebar .wp-block-latest-posts,
.l-sidebar .wp-block-latest-comments {
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-sidebar .widget_recent_entries li,
.l-sidebar .widget_recent_comments li,
.l-sidebar .wp-block-latest-posts li,
.l-sidebar .wp-block-latest-comments li {
  margin: 0;
  padding: 16px 22px;
  border-top: 1px solid var(--bht-line);
  line-height: 1.8;
}

.l-sidebar .widget_recent_entries li:first-child,
.l-sidebar .widget_recent_comments li:first-child,
.l-sidebar .wp-block-latest-posts li:first-child,
.l-sidebar .wp-block-latest-comments li:first-child {
  border-top: 0;
}

.l-sidebar .widget_recent_entries a,
.l-sidebar .widget_recent_comments a,
.l-sidebar .wp-block-latest-posts li a,
.l-sidebar .wp-block-latest-comments li a {
  display: inline;
  color: var(--bht-link);
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.l-sidebar .widget_recent_entries a:hover,
.l-sidebar .widget_recent_comments a:hover,
.l-sidebar .wp-block-latest-posts li a:hover,
.l-sidebar .wp-block-latest-comments li a:hover {
  color: var(--bht-link-hover);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.l-sidebar .wp-block-latest-posts__post-date,
.l-sidebar .post-date,
.l-sidebar time {
  display: block;
  margin-top: 6px;
  color: var(--bht-text-sub);
  font-size: 0.84rem;
  line-height: 1.6;
}

.l-sidebar .widget_recent_comments,
.l-sidebar .wp-block-latest-comments {
  min-height: 0;
}

.l-sidebar .widget_recent_comments p,
.l-sidebar .wp-block-latest-comments p {
  margin: 0;
  padding: 16px 22px 18px;
  color: var(--bht-text);
  line-height: 1.8;
}

@media (max-width: 767px) {
  .l-sidebar .c-widget,
  .l-sidebar .widget,
  .l-sidebar .widget_block {
    border-radius: 18px;
  }

  .l-sidebar .c-widget__title,
  .l-sidebar .widgettitle,
  .l-sidebar .wp-block-heading {
    padding: 16px 18px 12px;
  }

  .l-sidebar .widget_recent_entries li,
  .l-sidebar .widget_recent_comments li,
  .l-sidebar .wp-block-latest-posts li,
  .l-sidebar .wp-block-latest-comments li {
    padding: 14px 18px;
  }

  .l-sidebar .wp-block-search__inside-wrapper,
  .l-sidebar .searchform,
  .l-sidebar form[role="search"] {
    min-height: 54px;
    border-radius: 18px;
  }

  .l-sidebar .wp-block-search__input,
  .l-sidebar .searchform input[type="search"],
  .l-sidebar .searchform input[type="text"],
  .l-sidebar form[role="search"] input[type="search"],
  .l-sidebar .c-searchform__input {
    min-height: 54px;
    padding: 0 14px;
    font-size: 0.95rem;
  }

  .l-sidebar .wp-block-search__button,
  .l-sidebar .searchform input[type="submit"],
  .l-sidebar form[role="search"] button,
  .l-sidebar form[role="search"] input[type="submit"],
  .l-sidebar .c-searchform__submit {
    min-width: 92px;
    min-height: 54px;
    padding: 0 14px;
    font-size: 0.88rem;
  }
}


/* =========================================
   トップページ：マガジン型 均一グリッド
========================================= */

/* --- セクション --- */
.home .bht-mag {
  margin: 0 0 56px;
}

.home .bht-mag__inner {
  position: relative;
  overflow: hidden;
  padding: 48px 40px 52px;
  background: linear-gradient(180deg, #fffdf8 0%, #f6efe5 100%);
  border: 1px solid var(--bht-line);
  border-radius: var(--bht-radius-lg);
  box-shadow: var(--bht-shadow-lg);
}

.home .bht-mag__inner::before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 157, 118, 0.12) 0%, rgba(193, 157, 118, 0) 70%);
  pointer-events: none;
}

/* --- セクションヘッド --- */
.home .bht-mag-head {
  position: relative;
  z-index: 1;
  margin: 0 0 32px;
  text-align: center;
}

.home .bht-mag-head__label {
  margin: 0 0 8px;
  color: #9b7756;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.home .bht-mag-head__text {
  margin: 0;
  color: #6d5f53;
  font-size: 0.95rem;
  line-height: 1.85;
}

/* --- リセット --- */
.home .bht-mag ul.wp-block-latest-posts__list,
.home .bht-mag .wp-block-latest-posts {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* --- グリッド --- */
.home ul.wp-block-latest-posts__list.bht-mag-grid,
.home .bht-mag-grid ul.wp-block-latest-posts__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* --- カード --- */
.home .bht-mag-grid li {
  position: relative;
  margin: 0;
  padding: 0;
  background: #fffbf5;
  border: 1px solid rgba(214, 196, 173, 0.6);
  border-radius: 16px;
  box-shadow:
    0 2px 8px rgba(120, 90, 60, 0.04),
    0 12px 28px rgba(120, 90, 60, 0.06);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 0.32s ease;
}

.home .bht-mag-grid li:hover {
  transform: translateY(-5px);
  border-color: rgba(178, 140, 100, 0.5);
  box-shadow:
    0 4px 12px rgba(120, 90, 60, 0.06),
    0 20px 44px rgba(120, 90, 60, 0.1);
}

.home .bht-mag-grid li:active {
  transform: translateY(-2px);
  box-shadow:
    0 2px 8px rgba(120, 90, 60, 0.04),
    0 10px 20px rgba(120, 90, 60, 0.08);
}

.home .bht-mag-grid li:focus-visible {
  outline: 2px solid var(--bht-accent);
  outline-offset: 2px;
}

/* --- サムネイル --- */
.home .bht-mag-grid .wp-block-latest-posts__featured-image,
.home .bht-mag-grid .wp-block-latest-posts__featured-image.alignleft {
  float: none;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
}

.home .bht-mag-grid .wp-block-latest-posts__featured-image a {
  display: block;
  width: 100%;
  overflow: hidden;
}

.home .bht-mag-grid .wp-block-latest-posts__featured-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.home .bht-mag-grid li:hover .wp-block-latest-posts__featured-image img {
  transform: scale(1.05);
}

/* --- タイトル --- */
.home .bht-mag-grid li > a {
  display: block;
  margin: 0;
  padding: 16px 18px 0;
  color: #3e352e;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home .bht-mag-grid li:hover > a {
  color: var(--bht-accent-deep);
}

/* --- カテゴリバッジ（SWELLの cat-label を流用） --- */
.home .bht-mag-grid .bht-mag-cat {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  margin: 0;
  border-radius: 0 0 4px 0;
  text-decoration: none;
  pointer-events: auto;
}

.home .bht-mag-grid .bht-mag-cat:hover {
  opacity: 0.85;
  text-decoration: none;
}

/* --- 日付バッジ --- */
.home .bht-mag-grid .wp-block-latest-posts__post-date {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 10px 18px 18px;
  padding: 4px 10px;
  background: rgba(251, 246, 239, 0.9);
  border: 1px solid rgba(224, 212, 195, 0.7);
  border-radius: 999px;
  color: #8a7a6d;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* --- 「もっと見る」ボタン --- */
.home .bht-mag-more {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.home .bht-mag-more__btn,
.home .bht-mag-more__btn span,
.home .bht-mag-more__btn .bht-mag-more__text,
.home .bht-mag-more__btn .bht-mag-more__arrow {
  color: #f5efe7 !important;
}

.home .bht-mag-more__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 36px;
  background: linear-gradient(135deg, #4c4037 0%, #3a322b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow:
    0 4px 12px rgba(60, 45, 30, 0.12),
    0 12px 28px rgba(60, 45, 30, 0.08);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  transition:
    transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.home .bht-mag-more__btn:hover,
.home .bht-mag-more__btn:hover span {
  color: #f5efe7 !important;
  transform: translateY(-2px);
  background: linear-gradient(135deg, #5a4e44 0%, #443b33 100%);
  box-shadow:
    0 6px 16px rgba(60, 45, 30, 0.16),
    0 16px 36px rgba(60, 45, 30, 0.12);
}

.home .bht-mag-more__btn:active {
  transform: translateY(0);
}

.home .bht-mag-more__arrow {
  display: inline-block;
  background: none !important;
  box-shadow: none !important;
  transition: transform 0.28s ease;
}

.home .bht-mag-more__btn:hover .bht-mag-more__arrow {
  transform: translateX(3px);
}

/* --- タブレット --- */
@media (max-width: 991px) {
  .home .bht-mag {
    margin: 0 0 44px;
  }

  .home .bht-mag__inner {
    padding: 36px 24px 40px;
  }

  .home ul.wp-block-latest-posts__list.bht-mag-grid,
  .home .bht-mag-grid ul.wp-block-latest-posts__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/* --- スマホ --- */
@media (max-width: 767px) {
  .home .bht-mag__inner {
    padding: 24px 16px 32px;
    border-radius: 20px;
  }

  .home .bht-mag-head {
    margin: 0 0 24px;
  }

  .home .bht-mag-head__label {
    font-size: 0.74rem;
  }

  .home .bht-mag-head__text {
    font-size: 0.88rem;
  }

  .home ul.wp-block-latest-posts__list.bht-mag-grid,
  .home .bht-mag-grid ul.wp-block-latest-posts__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home .bht-mag-grid li {
    border-radius: 14px;
  }

  .home .bht-mag-grid .bht-mag-cat {
    font-size: 0.6rem;
  }

  .home .bht-mag-grid .wp-block-latest-posts__featured-image img {
    aspect-ratio: 4 / 3;
  }

  .home .bht-mag-grid li > a {
    padding: 12px 14px 0;
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .home .bht-mag-grid .wp-block-latest-posts__post-date {
    margin: 8px 14px 14px;
    font-size: 0.7rem;
  }

  .home .bht-mag-more__btn {
    width: 100%;
    min-height: 48px;
    font-size: 0.9rem;
  }
}

/* --- 超小画面 --- */
@media (max-width: 400px) {
  .home ul.wp-block-latest-posts__list.bht-mag-grid,
  .home .bht-mag-grid ul.wp-block-latest-posts__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home .bht-mag-grid .wp-block-latest-posts__featured-image img {
    aspect-ratio: 16 / 10;
  }
}

/* =========================================
   [BHT] メンズスキンケア記事 限界突破UI (ミッドナイトネイビー×シルバー版)
   ========================================= */
.bht-mens-premium {
  max-width: 800px;
  margin: 0 auto 4rem;
  font-family: inherit;
  color: #334155;
}

/* ヒーローセクション */
.bht-mens-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 56px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  border: 1px solid #e2e8f0;
}
.bht-mens-hero__label {
  display: inline-block;
  background: #ffffff;
  color: #0369a1;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  border: 1px solid #7dd3fc;
}
.bht-mens-hero__title {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #0f172a;
}
.bht-mens-hero__lead {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  max-width: 720px;
  margin: 0 auto 32px;
}

/* 冒頭グリッド */
.bht-mens-quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: left; }
.bht-mens-quick-box { background: #ffffff; border: 1px solid #cbd5e1; padding: 20px; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.bht-mens-quick-badge { display: inline-block; background: linear-gradient(135deg, #38bdf8, #0284c7); color: #ffffff; font-weight: 900; font-size: 0.75rem; padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.bht-mens-quick-text { font-size: 0.85rem; color: #334155; font-weight: 700; line-height: 1.5; margin:0;}

/* H2/H3粉砕 */
.post_content h2.bht-mens-h2, #content .post_content h2.bht-mens-h2, .bht-mens-premium h2.bht-mens-h2 {
  background: transparent !important; background-image: none !important; border: none !important;
  padding: 0 !important; margin: 64px 0 32px 0 !important; box-shadow: none !important;
  font-size: 1.8rem !important; font-weight: 900 !important; color: #0f172a !important;
  text-align: center !important;
}
.post_content h2.bht-mens-h2::before, .post_content h2.bht-mens-h2::after { display: none !important; content: none !important; }

.bht-mens-text { font-size: 1rem; color: #475569; line-height: 1.8; margin-bottom: 24px; }

/* ステップUI (新規追加) */
.bht-mens-step-wrap { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.bht-mens-step-item { display: flex; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; align-items: flex-start; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.bht-mens-step-num { flex-shrink: 0; background: #0f172a; color: #ffffff; font-weight: 900; font-size: 0.9rem; padding: 6px 16px; border-radius: 8px; margin-right: 20px; }
.bht-mens-step-content h4 { margin: 0 0 8px 0; font-size: 1.1rem; color: #0f172a; font-weight: 800; border: none; padding: 0; background: transparent; }
.bht-mens-step-content p { margin: 0; font-size: 0.95rem; color: #475569; line-height: 1.6; }

/* ランキング/紹介カード */
.bht-mens-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #cbd5e1;
  padding: 40px 32px;
  margin-bottom: 48px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bht-mens-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08); }

.bht-mens-badge {
  position: absolute; top: -16px; left: 32px;
  background: linear-gradient(135deg, #0ea5e9, #0369a1); color: #fff;
  padding: 8px 24px; border-radius: 12px; font-weight: 900; font-size: 1.1rem;
  letter-spacing: 0.05em; box-shadow: 0 4px 12px rgba(3, 105, 161, 0.3);
}

.bht-mens-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; margin-top: 16px; }
.bht-mens-image { text-align: center; }
.bht-mens-image img { width: 100%; border-radius: 16px; mix-blend-mode: multiply; transition: transform 0.3s; margin-bottom: 16px;}
.bht-mens-image:hover img { transform: scale(1.03); }

/* タグ情報 */
.bht-mens-tag { display: inline-block; background: #f1f5f9; color: #0369a1; font-size: 0.8rem; font-weight: 800; padding: 6px 12px; border-radius: 8px; border: 1px solid #bae6fd; }

.bht-mens-name { font-size: 1.6rem !important; font-weight: 900 !important; margin: 0 0 12px 0 !important; border:none!important; padding:0!important; background:transparent!important;}
.bht-mens-name a { color: #0f172a !important; text-decoration: none !important; }
.bht-mens-name a:hover { color: #0284c7 !important; }

.bht-mens-catch { font-size: 1.05rem; font-weight: 800; color: #0369a1; margin-bottom: 20px; }

/* プロの実用解説ブロック */
.bht-mens-pro-comment { background: #f8fafc; border-left: 4px solid #0284c7; padding: 20px 24px; border-radius: 0 12px 12px 0; margin-bottom: 24px; }
.bht-mens-pro-comment h4 { font-size: 1rem; font-weight: 900; color: #0f172a; margin: 0 0 12px 0; border: none; padding: 0; background: none; display: flex; align-items: center; gap: 8px;}
.bht-mens-pro-comment p { font-size: 0.95rem; color: #334155; line-height: 1.7; margin: 0; }

/* ボタンとマイクロコピー */
.bht-mens-action { text-align: center; margin-top: 32px; }
.bht-mens-microcopy { display: block; font-size: 0.85rem; color: #dc2626; font-weight: 900; margin-bottom: 8px; letter-spacing: 0.05em; animation: pulse 2s infinite;}
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.6; } 100% { opacity: 1; } }
.bht-mens-btn { display: block; background: linear-gradient(135deg, #0ea5e9, #0284c7); color: #ffffff !important; text-align: center; padding: 18px; border-radius: 12px; font-weight: 900; font-size: 1.15rem; text-decoration: none !important; transition: all 0.2s; box-shadow: 0 6px 16px rgba(2, 132, 199, 0.25); }
.bht-mens-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(2, 132, 199, 0.35); }

/* テーブル */
.bht-mens-table-wrap { overflow-x: auto; margin-bottom: 40px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); border: 1px solid #cbd5e1;}
.bht-mens-table { width: 100%; min-width: 600px; border-collapse: collapse; text-align: left; font-size: 0.95rem; background: #fff; }
.bht-mens-table th { background: #f8fafc; color: #0f172a; padding: 16px; font-weight: 900; white-space: nowrap; border-bottom: 2px solid #bae6fd;}
.bht-mens-table td { border-bottom: 1px solid #e2e8f0; padding: 16px; color: #334155; font-weight: 700;}

/* アラート/NGボックス */
.bht-mens-alert { background: #fef2f2; border: 2px solid #fecaca; border-radius: 12px; padding: 24px; margin-bottom: 48px; }
.bht-mens-alert h4 { color: #b91c1c; font-size: 1.2rem; font-weight: 900; margin: 0 0 16px 0; border: none; padding: 0; background: transparent; }
.bht-mens-alert ul { margin: 0; padding-left: 20px; color: #7f1d1d; line-height: 1.8; }
.bht-mens-alert li { margin-bottom: 8px; }

/* 関連記事ボックス */
.bht-mens-related { background: #ffffff; border: 1px solid #cbd5e1; border-radius: 12px; padding: 24px; }
.bht-mens-related h4 { color: #0f172a; font-size: 1.1rem; font-weight: 900; margin: 0 0 16px 0; border: none; padding: 0; background: transparent; }
.bht-mens-related ul { margin: 0; padding-left: 20px; color: #334155; line-height: 1.8; }
.bht-mens-related a { color: #0284c7; text-decoration: underline; }

@media (max-width: 768px) {
  .bht-mens-quick { grid-template-columns: 1fr; gap: 12px; }
  .bht-mens-layout { grid-template-columns: 1fr; gap: 20px; }
  .bht-mens-image img { max-width: 180px; margin: 0 auto; display: block; }
  .bht-mens-badge { left: 20px; }
  .bht-mens-hero { padding: 32px 20px; }
  .bht-mens-step-item { flex-direction: column; align-items: flex-start; }
  .bht-mens-step-num { margin: 0 0 12px 0; }
}

/* =========================================
   [BHT] 光美容器ランキング記事 限界突破UI (パールホワイト×ローズゴールド版)
   ========================================= */
.bht-ipl-premium {
  max-width: 800px;
  margin: 0 auto 4rem;
  font-family: inherit;
  color: #3f3f46;
}

/* ヒーローセクション（結論ファースト） */
.bht-ipl-hero {
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 56px;
  box-shadow: 0 10px 30px rgba(225, 29, 72, 0.05);
  border: 1px solid #fecdd3;
}
.bht-ipl-hero__label {
  display: inline-block;
  background: #ffffff;
  color: #be123c;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  border: 1px solid #fda4af;
}
.bht-ipl-hero__title {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #4c0519;
}
.bht-ipl-hero__lead {
  font-size: 1rem;
  line-height: 1.8;
  color: #52525b;
  max-width: 720px;
  margin: 0 auto 32px;
}

/* 冒頭の「プロの結論」グリッド */
.bht-ipl-quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: left; }
.bht-ipl-quick-box { background: #ffffff; border: 1px solid #fecdd3; padding: 20px; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.bht-ipl-quick-badge { display: inline-block; background: linear-gradient(135deg, #fb7185, #e11d48); color: #ffffff; font-weight: 900; font-size: 0.75rem; padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.bht-ipl-quick-text { font-size: 0.85rem; color: #52525b; font-weight: 700; line-height: 1.5; margin:0;}

/* SWELLのH2/H3装飾を完全粉砕 */
.post_content h2.bht-ipl-h2, #content .post_content h2.bht-ipl-h2, .bht-ipl-premium h2.bht-ipl-h2 {
  background: transparent !important; background-image: none !important; border: none !important;
  padding: 0 !important; margin: 64px 0 32px 0 !important; box-shadow: none !important;
  font-size: 1.8rem !important; font-weight: 900 !important; color: #4c0519 !important;
  text-align: center !important;
}
.post_content h2.bht-ipl-h2::before, .post_content h2.bht-ipl-h2::after { display: none !important; content: none !important; }

.post_content h3.bht-ipl-h3, #content .post_content h3.bht-ipl-h3, .bht-ipl-premium h3.bht-ipl-h3 {
  background: transparent !important; background-image: none !important; border: none !important;
  padding: 0 !important; margin: 40px 0 16px 0 !important; box-shadow: none !important;
  font-size: 1.4rem !important; font-weight: 900 !important; color: #831843 !important;
  border-bottom: 2px solid #fecdd3 !important; padding-bottom: 8px !important;
}
.post_content h3.bht-ipl-h3::before, .post_content h3.bht-ipl-h3::after { display: none !important; content: none !important; }

.bht-ipl-text { font-size: 1rem; color: #52525b; line-height: 1.8; margin-bottom: 24px; }

/* ランキングカード */
.bht-ipl-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #fecdd3;
  padding: 40px 32px;
  margin-bottom: 48px;
  box-shadow: 0 8px 24px rgba(136, 19, 55, 0.04);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bht-ipl-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(136, 19, 55, 0.08); }

.bht-ipl-badge {
  position: absolute; top: -16px; left: 32px;
  background: linear-gradient(135deg, #fb7185, #e11d48); color: #fff;
  padding: 8px 24px; border-radius: 12px; font-weight: 900; font-size: 1.1rem;
  letter-spacing: 0.05em; box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}
.bht-ipl-card.rank-2 .bht-ipl-badge { background: linear-gradient(135deg, #9f1239, #831843); box-shadow: 0 4px 12px rgba(131, 24, 67, 0.3); }
.bht-ipl-card.rank-3 .bht-ipl-badge { background: linear-gradient(135deg, #c58c85, #a36a63); box-shadow: 0 4px 12px rgba(163, 106, 99, 0.3); }

.bht-ipl-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; margin-top: 16px; }
.bht-ipl-image { text-align: center; }
.bht-ipl-image img { width: 100%; border-radius: 16px; mix-blend-mode: multiply; transition: transform 0.3s; margin-bottom: 16px;}
.bht-ipl-image:hover img { transform: scale(1.03); }

/* タグ情報バッジ */
.bht-ipl-tag { display: inline-block; background: #fff1f2; color: #be123c; font-size: 0.8rem; font-weight: 800; padding: 6px 12px; border-radius: 8px; border: 1px solid #fda4af; }

.bht-ipl-name { font-size: 1.6rem !important; font-weight: 900 !important; margin: 0 0 12px 0 !important; border:none!important; padding:0!important; background:transparent!important;}
.bht-ipl-name a { color: #4c0519 !important; text-decoration: none !important; }
.bht-ipl-name a:hover { color: #e11d48 !important; }

.bht-ipl-catch { font-size: 1.05rem; font-weight: 800; color: #be123c; margin-bottom: 20px; }

/* ベンチマーク(スペック)ブロック */
.bht-ipl-benchmarks { display: flex; gap: 16px; margin-bottom: 24px; }
.bht-ipl-bench-item { background: #fafafa; padding: 16px; border-radius: 12px; display: flex; flex-direction: column; gap: 4px; flex: 1; border: 1px solid #e4e4e7; }
.bht-ipl-bench-item span { font-size: 0.85rem; color: #831843; font-weight: 800; }
.bht-ipl-bench-item strong { font-size: 1.6rem; color: #4c0519; font-weight: 900; }
.bht-ipl-bench-item.highlight { background: #fff1f2; border-color: #fda4af; }
.bht-ipl-bench-item.highlight strong { color: #e11d48; }

/* プロの実用解説ブロック */
.bht-ipl-pro-comment { background: #fafafa; border-left: 4px solid #9f1239; padding: 20px 24px; border-radius: 0 12px 12px 0; margin-bottom: 24px; }
.bht-ipl-pro-comment h4 { font-size: 1rem; font-weight: 900; color: #4c0519; margin: 0 0 12px 0; border: none; padding: 0; background: none; display: flex; align-items: center; gap: 8px;}
.bht-ipl-pro-comment p { font-size: 0.95rem; color: #3f3f46; line-height: 1.7; margin: 0; }

.bht-ipl-specs { margin: 0 0 24px 0; padding-left: 20px; color: #52525b; line-height: 1.7; font-size: 0.95rem; font-weight: 700;}
.bht-ipl-specs li { margin-bottom: 8px; }

/* ボタンとマイクロコピー */
.bht-ipl-action { text-align: center; margin-top: 32px; }
.bht-ipl-microcopy { display: block; font-size: 0.85rem; color: #e11d48; font-weight: 900; margin-bottom: 8px; letter-spacing: 0.05em; animation: pulse 2s infinite;}
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.6; } 100% { opacity: 1; } }
.bht-ipl-btn { display: block; background: linear-gradient(135deg, #fb7185, #e11d48); color: #ffffff !important; text-align: center; padding: 18px; border-radius: 12px; font-weight: 900; font-size: 1.15rem; text-decoration: none !important; transition: all 0.2s; box-shadow: 0 6px 16px rgba(225, 29, 72, 0.25); }
.bht-ipl-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(225, 29, 72, 0.35); }

/* 比較表 */
.bht-ipl-table-wrap { overflow-x: auto; margin-bottom: 40px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); border: 1px solid #fecdd3;}
.bht-ipl-table { width: 100%; min-width: 700px; border-collapse: collapse; text-align: left; font-size: 0.9rem; background: #fff; }
.bht-ipl-table th { background: #fff1f2; color: #9f1239; padding: 14px 16px; font-weight: 900; white-space: nowrap; border-bottom: 2px solid #fda4af;}
.bht-ipl-table td { border-bottom: 1px solid #fecdd3; padding: 14px 16px; color: #52525b; font-weight: 700;}

@media (max-width: 768px) {
  .bht-ipl-quick { grid-template-columns: 1fr; gap: 12px; }
  .bht-ipl-layout { grid-template-columns: 1fr; gap: 20px; }
  .bht-ipl-image img { max-width: 220px; margin: 0 auto; display: block; }
  .bht-ipl-badge { left: 20px; }
  .bht-ipl-hero { padding: 32px 20px; }
  .bht-ipl-benchmarks { flex-direction: column; gap: 12px; }
}