/* ========================================
   リセット・ベーススタイル
   ======================================== */
* {
  margin: 0;
  padding: 0;
          box-sizing: border-box;
}

body {
  font-family: "Quicksand", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: #5b8cba;
}

/* ボタンやナビゲーションなど、アンダーラインを表示しない要素 */
.header__nav-link,
.header__logo a,
.article-card__link,
.article-card__title a,
.btn,
.button,
.btn-more,
.pickup__article-link,
.callout-box a,
.withmind-concept__manga-lp a,
.cta_btn,
.footer a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* padding: 16px 0; */
}

.header__container {
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  min-height: 100px;
}

.header__logo h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.header__logo img {
  width: 346px;
  height: auto;
  max-width: 100%;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 6px;
  position: relative;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: #000;
  transition: width 0.3s, left 0.3s;
  transform: translateX(-50%);
}

.header__nav-link:hover {
  color: #000000;
}

.header__nav-link:hover::after {
  width: calc(100% + 20px);
  left: 50%;
}

/* 現在のページのナビアイテム */
.current-menu-item .header__nav-link,
.header__nav-item--search.current-menu-item .header__nav-link {
  color: #030213;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.04);
}

/* 医療機関を探すアイコン */
.header__nav-item--search .header__nav-link {
  color: #030213;
  font-weight: 500;
}

/* ログインボタン */
.header__login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  background: #030213;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: opacity 0.15s;
  letter-spacing: -0.15px;
}

.header__login-btn:hover {
  opacity: 0.85;
  color: #fff;
}

.header__hamburger {
  display: none;
            flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
  }

.header__hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #333333;
  transition: all 0.3s ease;
  transform-origin: center;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(14px);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-14px);
  }

/* ========================================
   メインコンテンツ
   ======================================== */
.main {
  background-color: #F5F5F7;
}



/* ========================================
   HERO セクション
   ======================================== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  overflow: hidden;
}

/* 背景テキスト */
.hero-bg-text {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.bg-track {
  position: absolute;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  font-size: 120px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(28, 61, 43, 0.05);
  line-height: 1;
  user-select: none;
}
.bg-track-1 { top: 18%; animation: bgScroll 40s linear infinite; }
.bg-track-2 { top: 52%; animation: bgScroll 55s linear infinite reverse; font-size: 90px; }

/* 左：テキストエリア */
.hero-left {
  position: relative;
  z-index: 1;
  padding: 120px 64px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
}
.issue-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #52a876;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}
.issue-tag::before { content: ''; width: 24px; height: 1px; background: #52a876; }
.hero-title {
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #141414;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.25s forwards;
}
.hero-title-en {
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 21px);
  color: #52a876;
  letter-spacing: 0.05em;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}
.hero-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.2;
  color: #555;
  max-width: 380px;
  margin-bottom: 52px;
  padding-left: 18px;
  border-left: 2px solid #d4ece0;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.55s forwards;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #1c3d2b;
  color: #fff;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 32px;
  width: fit-content;
  transition: background 0.2s;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.7s forwards;
}
.hero-btn:hover { background: #2f6b48; }
.arrow-line {
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  display: inline-block;
  transition: width 0.3s;
}
.hero-btn:hover .arrow-line { width: 28px; }
.arrow-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}

/* 右：写真＋スライダー */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 3 / 2; /* 1200×800 に合わせたアスペクト比 */
  background: linear-gradient(160deg, #2a5c3f, #1a3a2a);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* フィーチャースライダー */
.feature-slider {
  flex-shrink: 0;
  background: #1c3d2b;
  border-top: 1px solid #52a876;
  overflow: hidden;
  position: relative;
  height: 240px;
}
.feature-slider__track {
  position: relative;
  height: 100%;
}
.feature-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  display: flex;
  gap: 0;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.feature-slide.is-active {
  animation: featureSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: auto;
  z-index: 1;
}
.feature-slide.is-out {
  animation: featureSlideOut 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}
@keyframes featureSlideIn {
  from { transform: translateX(-60px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
@keyframes featureSlideOut {
  from { transform: translateX(0);   opacity: 1; }
  to   { transform: translateX(60px); opacity: 0; }
}
.feature-slide__peek {
  width: 60px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-slide__peek:hover { background: rgba(0, 0, 0, 0.15); }
.feature-slide__peek-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a5c3f, #1a3a2a);
  opacity: 1;
}
.feature-slide__peek-arrow {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-right: 2px solid rgba(255, 255, 255, 0.5);
}
.peek-left .feature-slide__peek-arrow { transform: rotate(-135deg); }
.peek-right .feature-slide__peek-arrow { transform: rotate(45deg); }
.feature-slide__main {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}
.feature-slide__meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #52a876;
  margin-bottom: 8px;
}
.feature-slide__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feature-slide__doctor { font-size: 14px; font-weight: 300; color: rgba(255, 255, 255, 0.45); }
.feature-slider__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.slider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.is-active { background: #52a876; transform: scale(1.3); }

/* ロゴスクロール */
.logo-scroll {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 36px 0;
  position: relative;
}
.logo-fade-label {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 28px;
}
.logo-fade-wrap {
  overflow: hidden;
  width: 100%;
  padding: 0;
}
.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 25s linear infinite;
}
.logo-marquee__inner {
  display: flex;
  align-items: center;
}
@keyframes logo-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.clinic-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  opacity: 0.55;
  cursor: default;
}
.clinic-logo img {
  height: 140px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.logo-mock-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #555;
  white-space: nowrap;
  text-align: center;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* hero レスポンシブ */
@media (max-width: 768px) {
  .main { padding-top: 100px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 80px 24px 56px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }
  .bg-track { font-size: 60px; }
  .bg-track-2 { font-size: 48px; }
  .logo-fade-wrap { padding: 0; }
  .clinic-logo {
    padding: 0 18px;
  }
  .clinic-logo img {
    height: 90px;
    max-width: 170px;
    object-fit: contain;
  }
}


/* ========================================
   注目記事スクロールセクション
   ======================================== */
.featured-articles-scroll {
  position: relative;
  overflow: hidden;
  padding: 0;
  background-color: transparent;
}

/* 関連記事セクション用の背景色 */
.single-post + .featured-articles-scroll {
  background-color: #F5F5F7;
  padding: 20px 0;
  margin-top: -100px;
}

.featured-articles-scroll__container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.featured-articles-scroll__wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
  padding-bottom: 10px;
  position: relative;
}

.featured-articles-scroll__wrapper::-webkit-scrollbar {
  display: none;
}

.featured-article-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  scroll-snap-align: start;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.featured-article-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.featured-article-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #f0f0f0;
}

.featured-article-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-article-card:hover .featured-article-card__img {
  transform: scale(1.05);
}

.featured-article-card__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 10px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.featured-article-card__content {
  width: 100%;
}

.featured-article-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 10px;
  line-height: 1.4;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-article-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-article-card__author-image {
  flex-shrink: 0;
}

.featured-article-card__author-image img {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  object-fit: cover;
}

.featured-article-card__author-info {
  flex: 1;
}

.featured-article-card__author-name {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: white;
}

.featured-article-card__author-role {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   With Mind Concept Section
   ======================================== */
.withmind-concept {
  padding: 40px 0 0;
}

.withmind-concept__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.withmind-concept__title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 24px;
}

.withmind-concept__description {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 40px;
}

.withmind-concept__manga {
  font-size: 1.25rem;
  color: #333333;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.withmind-concept__manga-lp {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}
@media (max-width: 768px) {
  .withmind-concept__manga-lp {
    width: 100%;
  }
}

.withmind-concept__manga-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   New Interview Section
   ======================================== */

.new-interview__container {
  max-width: 1240px;
  margin: 40px auto;
  padding: 0 20px;
}

.new-interview__subtitle {
  font-size: 1rem;
  color: #666666;
  margin-left: 44px;
  margin-bottom: 40px;
  text-align: left;
}

.new-interview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.new-interview__more {
  text-align: center;
}

/* ========================================
   Pick up Section
   ======================================== */
.pickup {
  /* padding: 50px 0; */
  background-color: transparent;
}

.pickup__container {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 20px;
}

.pickup__title {
  font-family: 'Quicksand', sans-serif;
  font-size: 5rem;
  font-weight: 500;
  margin-bottom: -20px;
  color: #000000;
  text-align: left;
}

.pickup__subtitle {
  font-size: 1rem;
  color: #666666;
  margin-left: 5px;
  margin-bottom: 90px;
  text-align: left;
}

.pickup__subtitle.type-2 {
  margin-bottom: 40px;
}

.category-title {
  font-size: 3rem;
  margin-bottom: -10px;
}

.pickup-title-logo {
  height: 0.7em;
  width: auto;
  vertical-align: middle;
  margin-right: 0.1em;
  display: inline-block;
}

.category-subtitle {
  font-size: 1rem;
  color: #666666;
  margin-left: 64px;
  margin-bottom: 20px;
  text-align: left;
}

.pickup__article {
  position: relative;
}

.pickup__image-wrapper {
  position: relative;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.pickup__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pickup__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.15);
  padding: 50px 0 30px 30px;
  color: white;
  display: flex;
  align-items: flex-end;
}

.pickup__content {
  max-width: 800px;
}

.pickup__category-date {
  position: absolute;
  top: -42px;
  left: -20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pickup__category {
  display: inline-block;
  font-size: 0.875rem;
  color: white;
  background-color: #1E2939;
  padding: 10px 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.pickup__category:hover {
  background-color: #2a3a4f;
}

.pickup__date {
  display: inline-block;
  font-size: 0.875rem;
  color: #333;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1.8px;
}

.pickup__article-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: white;
}

.pickup__author {
  display: flex;
          align-items: center;
  gap: 16px;
}

.pickup__author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.pickup__author-image img {
  width: 100%;
  height: 100%;
     object-fit: cover;
}

.pickup__author-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.pickup__author-role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   新着記事セクション
   ======================================== */
.new-articles {
  padding: 0 0 70px 0;
  background-color: transparent;
}

.new-articles__container {
  max-width: 1240px;
  margin: 40px auto;
  padding: 0 20px;
}

.new-articles__title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: -30px;
  margin-bottom: 8px;
  color: #000000;
}

.new-articles__subtitle {
  font-size: 1rem;
  color: #666666;
  margin-left: 5px;
  margin-bottom: 40px;
  text-align: left;
}

.new-articles__filters {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
      flex-wrap: wrap;
}

.new-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  transition: opacity 0.3s ease;
}

.new-articles__more {
  text-align: center;
}

/* ========================================
   フィルターボタン
   ======================================== */
.filter-btn {
  padding: 12px 24px;
  background-color: transparent;
  border: 1px solid #e0e0e0;
  font-size: 0.875rem;
  color: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.filter-btn:hover {
  background-color: #e0e0e0;
  border-color: #333333;
}

.filter-btn--active {
  background-color: #333333;
  color: white;
  border-color: #333333;
}

/* ========================================
   記事カード
   ======================================== */
.article-card {
  background-color: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
          flex-direction: column;
  position: relative;
  border: 1px solid #E0E0E0;
}

.article-card:hover {
          transform: translateY(-4px);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #f0f0f0;
}

.article-card__image img {
  width: 100%;
  height: 100%;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-card__image img {
          transform: scale(1.05);
}

.article-card__content {
  padding: 24px;
          flex: 1;
  display: flex;
          flex-direction: column;
}

.article-card__meta {
  display: flex;
          justify-content: space-between;
          align-items: center;
  margin-bottom: 16px;
}

.article-card__category {
  font-size: 0.75rem;
  color: #666666;
  padding: 4px 8px;
  background-color: #f5f5f5;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.article-card__category:hover {
  background-color: #e0e0e0;
  color: #333333;
}

.article-card__date {
  font-size: 0.75rem;
  color: #666666;
}

.article-card__title {
  font-size: 0.99rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.5;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__excerpt {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 24px;
          flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-card__author {
  margin-top: auto;
  padding-right: 48px;
}

.article-card__author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 4px;
}

.article-card__author-role {
  font-size: 0.75rem;
  color: #666666;
}

.article-card__link {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  display: flex;
          align-items: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #000000;
  color: white;
  transition: transform 0.3s ease;
}

.article-card__link svg {
  width: 16px;
  height: 16px;
}

.article-card:hover .article-card__link {
          transform: scale(1.1);
}

/* インタビューカテゴリーのカード */
.article-card--interview .article-card__category {
  background-color: #1c3d2b;
  color: #fff;
}

.article-card--interview .article-card__category:hover {
  background-color: #2a5a40;
  color: #fff;
}

.article-card--interview .article-card__link {
  background-color: #1c3d2b;
}

/* ========================================
   ボタン
   ======================================== */
.btn-more {
  display: block;
  width: 100%;
  padding: 20px 20px;
  background-color: transparent;
  border: 2px solid #000000;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
}

.btn-more:hover {
  background-color: #000000;
  color: white;
}

.btn-more--banner {
  background: #1a3d2e;
  background-image: linear-gradient(135deg, #1a3d2e 60%, #2d6a4f 100%);
  border: none;
  color: #fff;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.btn-more--banner::before,
.btn-more--banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.6s ease;
}
.btn-more--banner::before {
  width: 200px;
  height: 200px;
  right: -60px;
  top: -60px;
}
.btn-more--banner::after {
  width: 140px;
  height: 140px;
  right: 60px;
  bottom: -60px;
}
.btn-more--banner:hover {
  background-color: #1a3d2e;
  color: #fff;
  opacity: 0.9;
}
.btn-more--banner:hover::before {
  transform: translateX(-12px);
}
.btn-more--banner:hover::after {
  transform: translateX(12px);
}

/* ── more-banner コンポーネント ── */
.more-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #1a3a2a;
  border-radius: 6px;
  padding: 1.5rem 2.5rem;
  text-decoration: none !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.more-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 10px 10px;
  pointer-events: none;
}
.more-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  width: 100%;
  position: relative;
  z-index: 1;
}
.more-banner__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  transform: scaleX(0.08);
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1), background 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.more-banner__line:first-child {
  transform-origin: right center;
}
.more-banner__line:last-child {
  transform-origin: left center;
}
.more-banner__text {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0;
  transition: color 0.25s ease, letter-spacing 0.3s ease;
}
.more-banner:hover .more-banner__line {
  transform: scaleX(0.8);
  background: rgba(255, 255, 255, 0.35);
}
.more-banner:hover .more-banner__text {
  color: #fff;
  letter-spacing: 0.06em;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn-primary:hover {
  background-color: #333333;
  border-color: #333333;
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
}

.btn-tertiary {
  background-color: #f0f0f0;
  color: #000000;
  border-color: #000000;
}

.btn-tertiary:hover {
  background-color: #e0e0e0;
}

.single-post__content .btn,
.single-post__content .button {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 16px 0;
  border: 2px solid transparent;
}

/* ========================================
   フッター
   ======================================== */
.footer {
  background-color: #2c2c2c;
  color: white;
  padding: 70px 20px 20px 20px;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 40px;
}

.footer__logo h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer__logo img {
  width: 346px;
  height: 100px;
}

.footer__description {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

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

.footer__nav-title {
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
}

.footer__nav-title-en {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: 'Quicksand', sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

.footer__nav-title-ja {
  font-size: 0.625rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.footer__nav-list {
  list-style: none;
}

.footer__nav-list li {
  margin-bottom: 8px;
}

.footer__nav-list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer__nav-list a:hover {
  color: white;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
}

.footer__bottom-links {
  display: flex;
  justify-content: right;
  gap: 24px;
  margin-bottom: 24px;
      flex-wrap: wrap;
}

.footer__bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer__bottom-links a:hover {
  color: white;
}

.footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   記事詳細ページ
   ======================================== */
.single-post {
  background-color: #F5F5F7;
}

.single-post__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.single-post__header {
  margin: 0;
}

.single-post__title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.4;
  padding-top: 30px;
}

.single-post__date {
  font-size: 0.875rem;
  color: #666666;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.single-post__pr-label {
  display: inline-block;
  padding: 2px 8px;
  background-color: #666666;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-right: 8px;
}

.single-post__thumbnail {
  margin-bottom: 32px;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.single-post__thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 目次 */
.single-post__toc {
  background-color: #f5f5f5;
  padding: 16px;
  margin-bottom: 32px;
}

.toc-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #333333;
}

.toc-content {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

.toc-content.active {
  display: block;
}

.toc-content ul,
.toc-content ol {
  list-style: none;
  padding-left: 0;
}

.toc-list {
  list-style: none;
  padding-left: 0;
}

.toc-list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.toc-list li .toc-number {
  font-size: 1rem !important;
}

.toc-list li a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-left: 10px;
  font-size: 1rem;
}

.toc-list li a:hover {
  color: #000000;
  text-decoration: underline;
}

.toc-arrow {
  transition: transform 0.3s ease;
  margin-left: auto;
}

.toc-toggle.active .toc-arrow {
  transform: rotate(180deg);
}

/* 監修者セクション */
.single-post__supervisor {
  background-color: #f9f9f9;
  padding: 24px;
  margin-bottom: 32px;
}

.supervisor-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333333;
}

.supervisor-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.single-post__supervisor .supervisor-image {
  flex-shrink: 0;
}

.single-post__supervisor .supervisor-image img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
}

.supervisor-placeholder {
  width: 60px;
  height: 60px;
  background-color: #e0e0e0;
  border-radius: 4px;
}

.supervisor-info {
  flex: 1;
}

.supervisor-name {
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 4px;
}

.supervisor-role {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 8px;
}

.supervisor-description {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.6;
}

/* 本文コンテンツ */
.single-post__content {
  background-color: #fff;
  padding: 20px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 40px!important;
  max-width: 1200px;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  box-sizing: border-box;
}

.single-post__content-inner {
  max-width: 900px;
  margin: 0 auto;
  isolation: isolate;
}

/* 投稿コンテンツ内のリンクにアンダーライン（線をテキストから少し下にずらす） */
.single-post__content a:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn) {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* 外部リンクにアンダーライン（目次とカスタムテーブルを除外） */
/* より具体的なセレクタを使用して確実に適用 */
.single-post__content p a[href^="http"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.single-post__content p a[href^="https"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.single-post__content p a[target="_blank"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.single-post__content div a[href^="http"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.single-post__content div a[href^="https"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.single-post__content div a[target="_blank"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.single-post__content li a[href^="http"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.single-post__content li a[href^="https"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.single-post__content li a[target="_blank"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.single-post__content a[href^="http"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.single-post__content a[href^="https"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.single-post__content a[target="_blank"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.single-post-content a[href^="http"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.single-post-content a[href^="https"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.single-post-content a[target="_blank"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.entry-content a[href^="http"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.entry-content a[href^="https"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.entry-content a[target="_blank"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.wp-block-post-content a[href^="http"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.wp-block-post-content a[href^="https"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn),
.wp-block-post-content a[target="_blank"]:not(.btn):not(.button):not(.article-card__link):not(.article-card__title a):not(.hp-card__link):not(.hp-auth__switch-btn):not(.hp-auth__submit):not(.hp-sticky-submit):not(.hp-sticky-chip):not(.hp-mypage__fav-name):not(.page-numbers):not(.hp-single__btn) {
  text-decoration: underline !important;
  text-underline-offset: 0.2em;
}

/* 目次内のリンクはアンダーラインなし（外部リンクルールより後に配置して優先度を上げる） */
.single-post__content .toc-list a[href^="http"],
.single-post__content .toc-list a[href^="https"],
.single-post__content .toc-list a[target="_blank"],
.single-post__content .toc-content a[href^="http"],
.single-post__content .toc-content a[href^="https"],
.single-post__content .toc-content a[target="_blank"],
.single-post__content .toc-toggle[href^="http"],
.single-post__content .toc-toggle[href^="https"],
.single-post__content .toc-toggle[target="_blank"],
.single-post-content .toc-list a[href^="http"],
.single-post-content .toc-list a[href^="https"],
.single-post-content .toc-list a[target="_blank"],
.single-post-content .toc-content a[href^="http"],
.single-post-content .toc-content a[href^="https"],
.single-post-content .toc-content a[target="_blank"],
.single-post-content .toc-toggle[href^="http"],
.single-post-content .toc-toggle[href^="https"],
.single-post-content .toc-toggle[target="_blank"],
.entry-content .toc-list a[href^="http"],
.entry-content .toc-list a[href^="https"],
.entry-content .toc-list a[target="_blank"],
.entry-content .toc-content a[href^="http"],
.entry-content .toc-content a[href^="https"],
.entry-content .toc-content a[target="_blank"],
.entry-content .toc-toggle[href^="http"],
.entry-content .toc-toggle[href^="https"],
.entry-content .toc-toggle[target="_blank"],
.wp-block-post-content .toc-list a[href^="http"],
.wp-block-post-content .toc-list a[href^="https"],
.wp-block-post-content .toc-list a[target="_blank"],
.wp-block-post-content .toc-content a[href^="http"],
.wp-block-post-content .toc-content a[href^="https"],
.wp-block-post-content .toc-content a[target="_blank"],
.wp-block-post-content .toc-toggle[href^="http"],
.wp-block-post-content .toc-toggle[href^="https"],
.wp-block-post-content .toc-toggle[target="_blank"],
.single-post__content .toc-list a,
.single-post__content .toc-content a,
.single-post__content .toc-toggle,
.single-post-content .toc-list a,
.single-post-content .toc-content a,
.single-post-content .toc-toggle,
.entry-content .toc-list a,
.entry-content .toc-content a,
.entry-content .toc-toggle,
.wp-block-post-content .toc-list a,
.wp-block-post-content .toc-content a,
.wp-block-post-content .toc-toggle {
  text-decoration: none !important;
}

/* カスタムテーブル内のリンクはアンダーラインなし（外部リンクルールより後に配置して優先度を上げる） */
.single-post__content .withmind-custom-table a[href^="http"],
.single-post__content .withmind-custom-table a[href^="https"],
.single-post__content .withmind-custom-table a[target="_blank"],
.single-post-content .withmind-custom-table a[href^="http"],
.single-post-content .withmind-custom-table a[href^="https"],
.single-post-content .withmind-custom-table a[target="_blank"],
.entry-content .withmind-custom-table a[href^="http"],
.entry-content .withmind-custom-table a[href^="https"],
.entry-content .withmind-custom-table a[target="_blank"],
.wp-block-post-content .withmind-custom-table a[href^="http"],
.wp-block-post-content .withmind-custom-table a[href^="https"],
.wp-block-post-content .withmind-custom-table a[target="_blank"],
.single-post__content .withmind-custom-table a,
.single-post-content .withmind-custom-table a,
.entry-content .withmind-custom-table a,
.wp-block-post-content .withmind-custom-table a {
  text-decoration: none !important;
}

/* 固定ページ専用 - margin-bottomを0に設定 */
body.page .single-post__content {
  margin-bottom: 0!important;
}

/* タイトルなしページ（ログイン等）の上余白 */
.single-post--no-title .single-post__container {
  padding-top: 48px;
}

/* マージン崩壊防止（hp-auth の margin-top/bottom が親に漏れないようにする） */
.single-post--no-title .single-post__content {
  padding-top: 1px;
  padding-bottom: 1px;
}

/* ログイン・登録ページのテキストサイズ */
.single-post--no-title .single-post__content p {
  font-size: 0.875rem;
}

/* マイページ内の p マージンをリセット */
.single-post__content .hp-mypage p {
  margin: 0;
}

/* 記事下 SNSシェアボタン（完成版・インラインSVG）
 * 親要素の階層: .single-post__share → .single-post__content-inner → .single-post__content → .single-post__container → .single-post (article) → .main
 * iOS Safariで描画されない場合、親のどれかに transform / will-change / overflow:hidden 等があるとレイヤーバグの可能性あり */

/* 【Safari 確定テスト】インラインSVGも出ない場合、以下を有効にして表示されるか確認。出たら親の transform が犯人 */
.single-post__share {
  margin-top: 40px;
  margin-bottom: 24px;
  transform: none !important;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.single-post__share * {
  transform: none !important;
}
.single-post__share-list,
.single-post__content .single-post__share-list {
  overflow: visible;
}

.single-post__share-label {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.single-post__share-list,
.single-post__content .single-post__share-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
  min-height: 66px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.single-post__share-list .single-post__share-item,
.single-post__content .single-post__share-list .single-post__share-item {
  flex: 0 0 auto;
  min-width: 66px;
  min-height: 66px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
}

.single-post__share-btn {
  position: relative;
  width: 66px;
  height: 66px;
  min-width: 66px;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.2s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-appearance: none;
  appearance: none;
}

.single-post__share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.single-post__share-btn:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.single-post__share-icon {
  width: 28px;
  height: 28px;
}

/* 画像がSafariで描画されない場合のテキストフォールバック（必ず見えるように） */
.single-post__share-fallback {
  display: block !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.single-post__share-icon--img {
  display: block;
  object-fit: contain;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}

/* ボタン別色指定（currentColorで反映） */
.single-post__share-btn--x {
  background: #000;
  color: #fff;
}

.single-post__share-btn--facebook {
  background: #1877F2;
  color: #fff;
}

.single-post__share-btn--line {
  background: #06C755;
  color: #fff;
}

/* Facebook・LINEアイコンを白で表示（SVGが黒で出る環境用） */
.single-post__share-btn--facebook img.single-post__share-icon-fb,
.single-post__share-btn--line img.single-post__share-icon-line {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

/* シンプル版：他要素に隠されないよう z-index を十分に高く（iPhoneで全ボタン反応） */
.single-post__share--simple {
  margin-top: 40px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  padding-left: 20px !important;
  padding-right: 20px !important;
  -webkit-padding-start: 20px;
  -webkit-padding-end: 20px;
  background: #fff;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  position: relative;
  z-index: 9999;
  isolation: isolate;
}
.single-post__share--simple .single-post__share-label,
.single-post__share--simple .single-post__share-buttons {
  max-width: 100%;
  min-width: 0;
}
.single-post__share--simple .single-post__share-label {
  margin-bottom: 12px;
}
.single-post__share-buttons {
  display: block;
  position: relative;
  z-index: 10;
}
.single-post__share--simple .single-post__share-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 56px !important;
  height: 56px !important;
  line-height: 1 !important;
  text-align: center !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-radius: 10px;
  margin-right: 10px;
  vertical-align: top;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 10;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.single-post__share--simple .single-post__share-btn--line {
  border: none;
}

.single-post__share--simple .single-post__share-buttons button.single-post__share-btn {
  font-family: inherit;
  padding: 0;
  box-sizing: border-box;
}

/* シェアボタン＝ラッパー＋img（外）＋a（全面）。アイコンはリンクの外なのでSafariで消えない */
.single-post__share--simple .single-post__share-buttons .single-post__share-btn {
  position: relative;
}
.single-post__share--simple .single-post__share-btn-icon {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  pointer-events: none;
}
.single-post__share--simple .single-post__share-btn-link {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.single-post__share--simple .single-post__share-buttons .single-post__share-btn img {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  pointer-events: none;
}

.single-post__content-bottom {
  width: 100%;
  height: 100px;
  background-color: #F5F5F7;
}

/* 関連記事セクション（Featured Articles Scroll Sectionと同じスタイルを使用） */
.related-articles__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  padding-left: 0;
}

/* title-listのリスト表示を削除 */
.title-list {
  list-style: none !important;
  padding-left: 0;
}

.title-list li {
  list-style: none !important;
}

.title-list li::marker {
  display: none !important;
  content: none !important;
}

.single-post__content h2:not(.hp-card__name) {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 20px 0;
  color: #333;
  padding: 20px 10px;
}

.single-post__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 12px;
  color: #333;
}

.toc-title,
.withmind-supervisor-name,
.comment-title,
.doctor-name,
.withmind-custom-table td,
.withmind-pros-cons__description,
.withmind-pros-cons__card-title,
.withmind-pros-cons__item,
.withmind-patient-reviews__name,
.withmind-patient-reviews__text {
  color: #333!important;
}

.single-post__content p {
  font-size: 1.125rem;
  line-height: 2.0;
  margin: 1.0em 0;
}

.single-post__content ul {
  padding: 20px 0px!important;
  font-size: 1rem;
  list-style: disc;
}

/* シェアボタン用リストはマーカー・余白なし（上記ulより後に記述） */
.single-post__content .single-post__share-list,
.single-post__content ul.single-post__share-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
}
.single-post__content .single-post__share-list li,
.single-post__content ul.single-post__share-list li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
}
.single-post__content .single-post__share-list li::marker,
.single-post__content ul.single-post__share-list li::marker {
  display: none !important;
  content: "" !important;
}

.single-post__content .single-post__share-list li::before,
.single-post__content .single-post__share-list li::after,
.single-post__content ul.single-post__share-list li::before,
.single-post__content ul.single-post__share-list li::after {
  display: none !important;
  content: none !important;
}

.single-post__content ul li {
  font-size: 1rem;
  padding-right: 12px;
  position: relative;
  margin-bottom: 6px;
}

/* 通常のulリストのpadding-leftを打ち消し（global-styles等に負けないよう !important）（pros-cons・bulleted-listは除外） */
.single-post__content ul:not(.withmind-pros-cons__list):not(.withmind-bulleted-list__list):not(.toc-list),
.single-post-content ul:not(.withmind-pros-cons__list):not(.withmind-bulleted-list__list):not(.toc-list),
.wp-block-post-content ul:not(.withmind-pros-cons__list):not(.withmind-bulleted-list__list):not(.toc-list),
.entry-content ul:not(.withmind-pros-cons__list):not(.withmind-bulleted-list__list):not(.toc-list) {
  padding-left: 0 !important;
}

/* シェアボタン用のul・liは右余白なし（.single-post__content ul li より後に記述） */
.single-post__content .single-post__share-list,
.single-post__content ul.single-post__share-list {
  padding-right: 0 !important;
  margin-right: 0;
}
.single-post__content .single-post__share-list li,
.single-post__content ul.single-post__share-list li {
  padding-right: 0 !important;
  margin-right: 0;
}

.single-post__content ol {
  padding: 20px 0px!important;
  font-size: 1rem;
  list-style: decimal;
}

.single-post__content ol li {
  font-size: 1rem;
  padding-right: 12px;
  position: relative;
  margin-bottom: 6px;
}


.single-post__content table {
  width: 100%;
  border-collapse: collapse;
}

.single-post__content table th,
.single-post__content table td {
  font-size: 1rem !important;
}

/* カスタムブロック内のテーブル（2列の場合も含む）のfont-sizeを明示的に指定 */
.single-post__content .withmind-custom-table th,
.single-post__content .withmind-custom-table td,
.single-post__content .withmind-custom-table th *,
.single-post__content .withmind-custom-table td * {
  font-size: inherit !important;
}

.single-post__content table th {
  background-color: #2c2c2c;
  color: #ffffff;
  font-weight: 600;
}

.single-post__content table a {
  color: #5b8cba;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.single-post__content table a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.single-post__content mark:not(.medical-marker):not([class*="medical-marker"]):not([data-marker-color]) {
  background-color: #ffff00;
  padding: 2px 4px;
}

/* カスタムマーカー（medical-marker）を細いマーカーに（文字の下半分に表示） */
.single-post__content mark.medical-marker,
.single-post__content mark[class*="medical-marker"],
.single-post__content mark[data-marker-color] {
  padding: 0 2px !important;
  display: inline !important;
  background-color: transparent !important;
  background-image: linear-gradient(to bottom, var(--medical-marker-bg, rgba(255, 188, 4, 0.2)), var(--medical-marker-bg, rgba(255, 188, 4, 0.2))) !important;
  background-size: 100% 0.4em !important;
  background-position: left bottom !important;
  background-repeat: no-repeat !important;
  box-shadow: none !important;
  box-decoration-break: clone !important;
  -webkit-box-decoration-break: clone !important;
  vertical-align: baseline !important;
  position: relative !important;
}

/* 投稿内で直接挿入した画像のみに適用（カスタムブロック内の画像は除外） */
.single-post__content > img,
.single-post__content > p > img,
.single-post__content .wp-block-image:not([class*="withmind-"]):not([class*="medical-"]),
.single-post__content figure:not([class*="withmind-"]):not([class*="medical-"]) {
  display: block;
  margin: 1.0em auto;
  max-width: 100%;
  height: auto;
  text-align: center;
  border-radius: 0 !important;
}

.single-post__content .wp-block-image:not([class*="withmind-"]):not([class*="medical-"]) img,
.single-post__content figure:not([class*="withmind-"]):not([class*="medical-"]) img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 0 !important;
}

/* 投稿内のすべての画像からborder-radiusを削除 */
.single-post__content img {
  border-radius: 0 !important;
}

/* ブロックのキャプション（画像説明文）の文字サイズ */
.wp-element-caption {
  font-size: 0.8125rem;
}

.single-post__content blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 4px solid #333;
  background-color: #f9f9f9;
  font-style: italic;
  color: #555;
  quotes: "\201C""\201D""\2018""\2019";
}

.single-post__content blockquote p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.8;
}

.single-post__content blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.875rem;
  font-style: normal;
  color: #666;
}

.single-post__content blockquote cite::before {
  content: "— ";
}

/* コールアウトボックス */
.callout-box {
  padding: 20px;
  margin: 24px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 100%;
}

.callout-box--left {
  margin-left: 0;
  margin-right: auto;
}

.callout-box--right {
  margin-left: auto;
  margin-right: 0;
  flex-direction: row-reverse;
}

.callout-box--info,
.callout-box--success,
.callout-box--warning {
  background-color: #f0f0f0;
}

.callout-box__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.callout-box--right .callout-box__icon {
  order: 2;
}

.callout-box__content {
  flex: 1;
}

.callout-box--right .callout-box__content {
  order: 1;
}

.callout-box__title {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333333;
}

.callout-box__text {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.6;
}

/* メリット・デメリット */
.single-post__merits-demerits {
  margin: 50px 0;
}

.merits-demerits-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000000;
}

.merits-demerits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.merits-section,
.demerits-section {
  background-color: #f9f9f9;
  padding: 24px;
}

.merits-header,
.demerits-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.merits-header h3,
.demerits-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.merits-list,
.demerits-list {
  list-style: none;
  padding-left: 0;
}

.merits-list li,
.demerits-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #333333;
}

.merit-marker,
.demerit-marker {
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 600;
}

/* 受講生の声 */
.single-post__testimonials {
  margin: 50px 0;
}

.testimonials-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000000;
}

.testimonials-subtitle {
  font-size: 0.875rem;
  font-weight: 400;
  color: #666666;
}

.testimonials-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.testimonials-container {
  display: flex;
  gap: 24px;
  padding-bottom: 16px;
}

.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 24px;
}

.testimonial-image {
  margin-bottom: 16px;
}

.testimonial-image img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
}

.testimonial-placeholder {
  width: 60px;
  height: 60px;
  background-color: #e0e0e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #666666;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 4px;
}

.testimonial-date {
  font-size: 0.75rem;
  color: #666666;
  margin-bottom: 8px;
}

.testimonial-rating {
  margin-bottom: 12px;
}

.star {
  font-size: 1rem;
  margin-right: 2px;
}

.star-empty {
  color: #cccccc;
}

.testimonial-text {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.6;
}

/* ========================================
   ページネーション
   ======================================== */
.pagination-wrapper {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  flex-direction: row !important;
  width: 100% !important;
  margin: 50px auto !important;
  padding: 0 !important;
  clear: both !important;
  text-align: center !important;
}

.pagination-wrapper * {
  text-align: center !important;
}

.pagination-wrapper > span,
.pagination-wrapper > a {
  display: inline-block !important;
  margin: 0 4px !important;
  text-align: center !important;
  float: none !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
}

.pagination-wrapper > nav,
.pagination-wrapper > div:not(.page-numbers),
.pagination-wrapper nav,
.pagination-wrapper .nav-links,
.pagination-wrapper .navigation,
.pagination-wrapper .pagination,
.pagination-wrapper .navigation.pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 auto !important;
  width: auto !important;
  text-align: center !important;
  float: none !important;
  flex-direction: row !important;
}

.pagination-wrapper a,
.pagination-wrapper span,
.pagination-wrapper .page-numbers,
.pagination-wrapper a.page-numbers,
.pagination-wrapper span.page-numbers,
.pagination-wrapper .prev.page-numbers,
.pagination-wrapper .next.page-numbers,
.pagination-wrapper nav a,
.pagination-wrapper nav span,
.pagination-wrapper .nav-links a,
.pagination-wrapper .nav-links span {
  display: inline-block !important;
  margin: 0 4px !important;
  text-align: center !important;
  float: none !important;
  vertical-align: middle !important;
}

.pagination,
.nav-links,
.navigation.pagination .nav-links,
nav.navigation.pagination .nav-links,
.navigation.pagination,
nav.navigation.pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px;
  margin: 0 auto !important;
  width: 100%;
  text-align: center;
}

.pagination-wrapper .pagination,
.pagination-wrapper .nav-links,
.pagination-wrapper .navigation.pagination,
.pagination-wrapper nav.navigation.pagination {
  margin: 0 auto !important;
}

.new-articles__container .pagination-wrapper,
.new-articles .pagination-wrapper {
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-direction: row !important;
}

.new-articles__container .pagination-wrapper > *,
.new-articles .pagination-wrapper > * {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 auto !important;
  width: fit-content !important;
}

.page-numbers,
a.page-numbers,
span.page-numbers,
.prev.page-numbers,
.next.page-numbers {
  display: inline-block !important;
  padding: 8px 16px !important;
  border: 1px solid #e0e0e0 !important;
  color: #333333 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.pagination .page-numbers,
.nav-links .page-numbers,
.navigation.pagination .page-numbers,
.navigation.pagination .nav-links .page-numbers,
.navigation.pagination a.page-numbers,
.navigation.pagination span.page-numbers,
.navigation.pagination .prev.page-numbers,
.navigation.pagination .next.page-numbers,
nav.navigation.pagination .page-numbers,
nav.navigation.pagination .nav-links .page-numbers,
nav.navigation.pagination a.page-numbers,
nav.navigation.pagination span.page-numbers {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current,
a.page-numbers:hover,
span.page-numbers.current {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current,
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current,
.navigation.pagination .page-numbers:hover,
.navigation.pagination .page-numbers.current,
.navigation.pagination a.page-numbers:hover,
.navigation.pagination span.page-numbers.current,
nav.navigation.pagination .page-numbers:hover,
nav.navigation.pagination .page-numbers.current,
nav.navigation.pagination a.page-numbers:hover,
nav.navigation.pagination span.page-numbers.current {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.page-numbers.dots,
.pagination .page-numbers.dots,
.nav-links .page-numbers.dots,
.navigation.pagination .page-numbers.dots {
  border: none !important;
  cursor: default !important;
}

.page-numbers.dots:hover,
.pagination .page-numbers.dots:hover,
.nav-links .page-numbers.dots:hover,
.navigation.pagination .page-numbers.dots:hover {
  background-color: transparent !important;
  color: #333333 !important;
}

/* ========================================
   ユーティリティ
   ======================================== */
.pickup__title,
.pickup__subtitle,
.new-articles__subtitle {
  text-align: left !important;
}

.no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 20px;
  color: #666666;
  font-size: 1rem;
}

/* ========================================
   レスポンシブデザイン
   ======================================== */
@media (max-width: 1200px) {
  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1000px) {
  .header {
    padding: 16px 10px;
    min-height: 50px;
  }

  .header__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .header__logo img {
    width: 200px;
    height: auto;
    max-width: 100%;
  }

  .header__hamburger {
    display: flex;
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 400;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 300;
    padding: 80px 20px 32px;
    gap: 0;
    overflow-y: auto;
  }

  .header__nav.is-active {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
  }

  .header__nav-list li {
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
  }

  .header__nav-link {
    display: flex;
    width: 100%;
    padding: 16px 0;
    font-size: 1rem;
    border-radius: 0;
  }

  .header__nav-link::after {
    display: none;
  }

  .header__nav-link:hover {
    color: #333333;
  }

  /* モバイルのログインボタン */
  .header__login-btn {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header {
  padding: 16px 10px;
  }

  .feature-slider {
    height: 220px;
  }
  .withmind-concept {
    padding: 0;
  }

  .new-interview {
    padding: 0;
  }

  .new-interview__container {
    padding: 30px 20px 0 20px;
  }

  .new-interview__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .withmind-concept__title {
    font-size: 1.5rem;
  }

  .withmind-concept__description {
    font-size: 0.875rem;
  }

  .withmind-concept__manga {
    font-size: 0.875rem;
    margin-bottom: 0;
  }

  .featured-articles-scroll {
    padding: 30px 0;
  }

  .featured-article-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 240px;
  }

  .featured-article-card__title {
    font-size: 0.875rem;
    margin-top: 30px;
    margin-bottom: 12px;
  }

  .featured-article-card__author-image img {
    width: 50px !important;
    height: 50px !important;
  }

  .featured-article-card__author-name {
    font-size: 0.6875rem;
  }

  .featured-article-card__author-role {
    font-size: 0.625rem;
  }

  .pickup {
    padding: 0 0 20px 0;
  }

  .pickup__container {
    margin: 0 auto;
  }

  .pickup__title {
    font-size: 1.75rem;
  }

  .pickup__subtitle {
    font-size: 0.875rem;
    margin: 14px 0 30px 48px;
  }

  .pickup__image-wrapper {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    aspect-ratio: 4 / 3;
  }

  .pickup__overlay {
    padding: 20px;
  }

  .pickup__author-image {
    width: 50px;
    height: 50px;
  }

  .pickup__article-title {
    font-size: 1rem;
    width: 100%;
    margin-bottom: 20px;
  }

  .new-articles {
    padding: 0;
  }

  .new-articles__subtitle {
    font-size: 0.875rem;
    margin: 10px 0 20px 48px;
  }

  .new-articles__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }

  .new-articles__filters {
    margin-top: -30px;
    margin-bottom: 10px;
    gap: 8px;
  }

  /* カテゴリーページのpickup__headerのpadding調整 */
  body.category .pickup__header {
    padding: 20px 0 10px !important;
  }

  /* カスタムテーブルのfont-size調整 */
  .withmind-custom-table th,
  .withmind-custom-table td,
  .single-post__content table th,
  .single-post__content table td {
    font-size: 14px !important;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .article-card__title {
    font-size: 0.8125rem;
  }

  .article-card__excerpt {
    font-size: 0.8125rem;
  }

  .btn-more {
    width: 100%;
    padding: 10px 20px;
  }

  .footer {
    padding: 40px 40px 10px 40px;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bottom-links {
    justify-content: center;
  }

  .single-post__title {
    font-size: 1.5rem;
  }

  .single-post__content h2 {
    font-size: 1.5rem;
  }

  .single-post__content h3 {
    font-size: 1.25rem;
  }

  .single-post__content p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0.85em 0;
  }

  .single-post__content {
    padding: 20px;
  }

  /* 固定ページ専用 */
  body.page .single-post__content {
    padding: 20px 25px;
    margin-bottom: 0!important;
  }

  .merits-demerits-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .withmind-concept {
    padding: 20px 0;
  }

  .withmind-concept__title {
    font-size: 1.25rem;
  }

  .withmind-concept__description {
    font-size: 0.8125rem;
  }

  .withmind-concept__manga {
    font-size: 0.8125rem;
  }

  .related-articles__title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .single-post__share-label {
    font-size: 1rem !important;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .new-interview__container {
    padding: 30px 20px 0 20px;
    margin: 0 auto;
  }

  .new-interview__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-articles-scroll {
    padding: 20px 0;
  }

  .featured-article-card {
    flex: 0 0 85%;
    min-width: 200px;
  }

  .featured-article-card__title {
    font-size: 0.8125rem;
    margin-top: 24px;
    margin-bottom: 10px;
  }

  .featured-article-card__author-image img {
    width: 50px !important;
    height: 50px !important;
  }

  .featured-article-card__author-name {
    font-size: 0.625rem;
  }

  .featured-article-card__author-role {
    font-size: 0.5625rem;
  }


  .pickup__article-title {
    font-size: 0.875rem;
  }

  .pickup__author-image {
    width: 50px;
    height: 50px;
  }

  .new-articles__grid {
    grid-template-columns: 1fr;
  }

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

  .btn-more {
    padding: 10px 20px;
  }

  .single-post__content {
    padding: 20px;
    margin-bottom: 40px!important;
  }

  /* 固定ページ専用 */
  body.page .single-post__content {
    padding: 20px 25px;
    margin-bottom: 0!important;
  }

  .single-post__content-bottom {
    width: 100%;
    height: 60px;
    background-color: #F5F5F7;
  }

  .related-articles__title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .single-post__share-label {
    font-size: 1rem !important;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .single-post__content p {
    line-height: 1.7;
    margin: 0.85em 0;
  }
  
  .single-post__content > img,
  .single-post__content > p > img,
  .single-post__content .wp-block-image:not([class*="withmind-"]):not([class*="medical-"]),
  .single-post__content figure:not([class*="withmind-"]):not([class*="medical-"]) {
    margin: 0.85em auto;
  }

  .pickup-title-logo {
    height: 0.95em;
  }

  .hp-top-search__title-wrap {
    gap: 10px!important;
  }

  .hp-top-search__method-desc {
    font-size: 11px!important;
  }

  .hp-top-search__method-title {
    font-size: 0.9rem!important;
  }

  .more-banner {
   padding: 0.9rem 1.5rem!important;
  }

  .more-banner__text {
    font-size: 14px!important;
  }
}

/* ========================================
   お問い合わせフォーム（Googleフォーム）
   ======================================== */
/* YouTube埋め込み動画を画面いっぱいに広げる */
.single-post__content iframe[src*="youtube.com"],
.single-post__content iframe[src*="youtu.be"],
.single-post__content .wp-block-embed-youtube,
.single-post__content .wp-block-embed-youtube iframe,
.single-post__content .wp-block-embed iframe[src*="youtube.com"],
.single-post__content .wp-block-embed iframe[src*="youtu.be"] {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 0;
  margin: 24px 0;
  display: block;
}

.single-post__content iframe[src*="docs.google.com"],
.single-post__content iframe[src*="forms.gle"],
.single-post__content iframe[src*="google.com/forms"] {
  width: 100%;
  max-width: 100%;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  min-height: 600px;
}

/* Googleフォームのコンテナ */
.single-post__content .google-form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}

.single-post__content .google-form-wrapper iframe {
  width: 100%;
  max-width: 100%;
  border: none;
  border-radius: 8px;
  margin: 0;
  min-height: 600px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  /* YouTube埋め込み動画のレスポンシブ対応 */
  .single-post__content iframe[src*="youtube.com"],
  .single-post__content iframe[src*="youtu.be"],
  .single-post__content .wp-block-embed-youtube iframe,
  .single-post__content .wp-block-embed iframe[src*="youtube.com"],
  .single-post__content .wp-block-embed iframe[src*="youtu.be"] {
    width: 100% !important;
    margin: 20px 0;
  }

  .single-post__content iframe[src*="docs.google.com"],
  .single-post__content iframe[src*="forms.gle"],
  .single-post__content iframe[src*="google.com/forms"],
  .single-post__content .google-form-wrapper iframe {
    min-height: 800px;
  }

  .single-post__content .google-form-wrapper {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  /* YouTube埋め込み動画のレスポンシブ対応 */
  .single-post__content iframe[src*="youtube.com"],
  .single-post__content iframe[src*="youtu.be"],
  .single-post__content .wp-block-embed-youtube iframe,
  .single-post__content .wp-block-embed iframe[src*="youtube.com"],
  .single-post__content .wp-block-embed iframe[src*="youtu.be"] {
    width: 100% !important;
    margin: 16px 0;
  }

  .single-post__content iframe[src*="docs.google.com"],
  .single-post__content iframe[src*="forms.gle"],
  .single-post__content iframe[src*="google.com/forms"],
  .single-post__content .google-form-wrapper iframe {
    min-height: 1000px;
  }

  .single-post__content .google-form-wrapper {
    padding: 12px;
  }
}

@media (max-width: 798px) {
  /* 病院検索ページのpadding-top削除 */
  .single-post--no-title .single-post__container {
    padding-top: 0;
  }

  /* 検索結果ページのulのpadding */
  .single-post__content ul,
  .single-post-content ul,
  .wp-block-post-content ul,
  .entry-content ul {
    padding: 0 !important;
  }

  /* カテゴリーページのnew-articlesとall-articlesのみpadding調整 */
  body.category .new-articles,
  body.category .all-articles,
  .all-articles.new-articles {
    padding: 0 0 40px 0 !important;
  }

  /* カテゴリーページのpickup__subtitleのみmargin調整 */
  body.category .pickup__subtitle,
  body.category .category-subtitle {
    margin: 14px 0 !important;
  }
}

/* ========================================
   TOPへ戻るボタン
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 52px;
  height: 52px;
  background-color: #333333;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
  padding: 8px 6px 6px;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #000000;
}

.back-to-top__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 84px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========================================
   スクロールフェードイン
   ======================================== */
.js-fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease var(--delay, 0s),
              transform 0.75s ease var(--delay, 0s);
}
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ロゴアイテム: 初期状態は非表示 */
.interview-clinic__logo-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* セクションが見えたとき、3秒間隔で1件ずつ順番に表示 */
.interview-clinic--in-view .interview-clinic__logo-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.interview-clinic--in-view .interview-clinic__logo-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 3s; }
.interview-clinic--in-view .interview-clinic__logo-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 6s; }
.interview-clinic--in-view .interview-clinic__logo-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 9s; }
.interview-clinic--in-view .interview-clinic__logo-item:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 12s; }
.interview-clinic--in-view .interview-clinic__logo-item:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 15s; }

/* ========================================
   Interview Clinic 背景テキストアニメーション
   ======================================== */
.clinic-bg-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.clinic-bg-text__track {
  display: flex;
  white-space: nowrap;
  font-size: 120px;
  font-weight: 800;
  color: #2a5c40;
  opacity: 0.04;
  animation: bgScroll 40s linear infinite;
  will-change: transform;
}
.clinic-bg-text__track--reverse {
  animation-direction: reverse;
}
@keyframes bgScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.clinic-bg-text__track span {
  padding-right: 80px;
}

/* ========================================
   背景テキストマーキー
   ======================================== */
.bg-text-marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.bg-text-marquee__track {
  display: flex;
  white-space: nowrap;
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 800;
  color: #2a5c40;
  opacity: 0.045;
  letter-spacing: 0.06em;
  animation: bgMarqueeForward 45s linear infinite;
  will-change: transform;
}
.bg-text-marquee__track--reverse {
  animation-name: bgMarqueeReverse;
  animation-duration: 38s;
  opacity: 0.03;
}
@keyframes bgMarqueeForward {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes bgMarqueeReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.bg-text-marquee__track span {
  padding-right: 80px;
}

/* ========================================
   Interview Clinic セクション
   ======================================== */
.interview-clinic {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #d4ece0;
}
.interview-clinic__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.interview-clinic__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.interview-clinic__logo-item {
  position: relative;
}
.interview-clinic__logo-placeholder {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 2 / 1;
  background: linear-gradient(135deg, #e8f4ed 0%, #c8e6d4 100%);
  border: 1px solid #b8d4c0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.interview-clinic__logo-placeholder:hover {
  box-shadow: 0 6px 20px rgba(42, 92, 64, 0.12);
  transform: translateY(-2px);
}
.interview-clinic__logo-name {
  font-size: 15px;
  font-weight: 700;
  color: #2a5c40;
  letter-spacing: 0.06em;
  text-align: center;
}
.interview-clinic__logo-sub {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .interview-clinic {
    padding: 56px 0;
  }
  .interview-clinic__container {
    padding: 0 20px;
  }
  .interview-clinic__logos {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   クリニック検索セクション（TOP ページ）
   ============================================================ */

.hp-top-search {
  background: #f5f7f6;
  padding: 80px 20px;
}

.hp-top-search__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* タイトル */
.hp-top-search__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hp-top-search__subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0 0 4px 0;
  line-height: 1;
  padding-left: 10px;
  color: #2D6A4F;
}
.hp-top-search__title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hp-top-search__title-logo {
  height: 0.85em;
  font-size: 4rem;
  width: auto;
  flex-shrink: 0;
}
.hp-top-search__main-title {
  font-family: 'Chiron GoRound TC', sans-serif !important;
  font-size: 3.5rem;
  font-weight: 400;
  color: #000;
  margin: 0;
  line-height: 1.1;
}
.hp-top-search__desc {
  font-size: 0.875rem;
  color: #888;
  margin: 16px 0 0;
}

@media (max-width: 768px) {
  .hp-top-search__title-logo {
    height: 0.65em;
    font-size: 3rem;
  }
  .hp-top-search__main-title {
    font-size: 2.5rem;
  }
  .hp-top-search__subtitle {
    padding-left: 50px;
  }
  .hp-top-search__desc {
    margin-top: 10px;
  }
}
@media (max-width: 526px) {
  .hp-top-search__spec-note-dash {
    display: none;
  }
}
@media (max-width: 480px) {
  .hp-top-search__title-logo {
    height: 0.65em;
    font-size: 2.5rem;
  }
  .hp-top-search__main-title {
    font-size: 2rem;
  }
  .hp-top-search__inner {
    gap: 20px;
  }
  .hp-top-search__bar-icon {
    padding: 0 8px!important;
  }
  .hp-top-search__bar-icon {
    display: none !important;
  }
}
/* 検索バー */
.hp-top-search__bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2.5px solid #2c6345;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  overflow: hidden;
  height: 64px;
}
.hp-top-search__bar-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 14px 0 20px;
}
.hp-top-search__bar-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: #1a1a1a;
  background: transparent;
  padding: 0;
}
.hp-top-search__bar-input::placeholder {
  color: #b5c7bf;
}
.hp-top-search__bar-divider {
  width: 1px;
  height: 40px;
  background: rgba(224,224,224,0.7);
  flex-shrink: 0;
}
.hp-top-search__bar-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2c6345;
  color: #fff;
  border: none;
  height: 64px;
  padding: 0 36px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.hp-top-search__bar-btn:hover {
  background: #1f4430;
}

/* よく検索されています */
.hp-top-search__popular {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.875rem;
}
.hp-top-search__popular-label {
  color: #888;
  white-space: nowrap;
}
.hp-top-search__popular-tag {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.875rem;
  color: #5c5c5c;
  text-decoration: none !important;
  transition: border-color 0.15s, color 0.15s;
}
.hp-top-search__popular-tag:hover {
  border-color: #2c6345;
  color: #2c6345;
}

/* 4つの検索方法カード */
.hp-top-search__methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hp-top-search__method {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 28px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
  text-align: center;
  box-shadow: 0 4px 12px rgba(235,241,238,0.8);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hp-top-search__method:hover {
  border-color: #2d6a4f;
  box-shadow: 0 6px 20px rgba(42,126,100,0.15);
  transform: translateY(-2px);
}
.hp-top-search__method--active {
  border: 2px solid #398061;
  box-shadow: 0 4px 16px rgba(42,126,100,0.15);
}
.hp-top-search__method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8F0EC;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.hp-top-search__method-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: invert(32%) sepia(44%) saturate(600%) hue-rotate(107deg) brightness(80%) contrast(90%);
  transition: filter 0.2s;
}
.hp-top-search__method:hover .hp-top-search__method-icon {
  background: #2D6A4F;
}
.hp-top-search__method:hover .hp-top-search__method-img {
  filter: brightness(0) invert(1);
}
.hp-top-search__method-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.hp-top-search__method-desc {
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.7;
}

/* 診療科フィルターパネル */
.hp-top-search__spec {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(232,240,236,0.9);
  overflow: hidden;
}
.hp-top-search__spec-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-bottom: 1px solid #e0e8e4;
}
.hp-top-search__spec-accent {
  display: block;
  width: 3px;
  height: 16px;
  background: #2d6a4f;
  border-radius: 2px;
  flex-shrink: 0;
}
.hp-top-search__spec-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
}
.hp-top-search__spec-note {
  font-size: 0.75rem;
  color: #888;
}
.hp-top-search__spec-more {
  margin-left: auto;
  font-size: 0.825rem;
  color: #2d6a4f;
  text-decoration: none !important;
  white-space: nowrap;
}
.hp-top-search__spec-more:hover {
  text-decoration: underline !important;
}
.hp-top-search__spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 24px;
}
.hp-top-search__spec-tag {
  display: inline-block;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 0.925rem;
  color: #1a1a1a;
  text-decoration: none !important;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.hp-top-search__spec-tag:hover {
  border-color: #2d6a4f;
  color: #2d6a4f;
}
/* 会員登録バナー */
.hp-top-search__banner {
  background: #1a3d2e;
  border-radius: 14px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.hp-top-search__banner::before,
.hp-top-search__banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.6s ease, right 0.6s ease;
}
.hp-top-search__banner:hover::before {
  transform: translateY(-50%) translateX(-20px);
}
.hp-top-search__banner:hover::after {
  transform: translateY(-50%) translateX(20px);
}
.hp-top-search__banner::before {
  right: -70px;
  top: 200px;
  width: 660px;
  height: 620px;
  background: rgba(255, 255, 255, 0.05);
}
.hp-top-search__banner::after {
  right: -60px;
  top: -10px;
  width: 440px;
  height: 370px;
  background: rgba(255, 255, 255, 0.05);
}
.hp-top-search__banner-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hp-top-search__banner-sub {
  font-size: 0.75rem;
  color: #5c96af;
  letter-spacing: 0.06em;
  margin: 0;
}
.hp-top-search__banner-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.hp-top-search__banner-desc {
  font-size: 0.75rem;
  color: #828f87;
  margin: 0;
}
.hp-top-search__banner-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hp-top-search__banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 18px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.hp-top-search__banner-btn:hover {
  opacity: 0.85;
}
.hp-top-search__banner-btn--primary {
  border-radius: 6px;
  border: 0 solid rgba(255, 238, 0, 0.60);
  background: linear-gradient(90deg, #D7841D 0%, #E6AB27 77.82%, #F4D330 111.64%);
  color: #fff;
}
.hp-top-search__banner-btn--outline {
  border: 1px solid #ddd;
  color: #fff;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .hp-top-search__methods {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-top-search__title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .hp-top-search__popular {
    font-size: 12px;
  }
  .hp-top-search__popular-tag {
    font-size: 12px;
  }
  .hp-top-search {
    padding: 48px 16px 56px;
  }
  .hp-top-search__title {
    font-size: 26px;
  }
  .hp-top-search__bar {
    height: 52px;
  }
  .hp-top-search__bar-btn {
    height: 52px;
    padding: 0 10px;
    font-size: 14px;
  }
  .hp-top-search__bar-input {
    font-size: 10px;
    padding-left: 12px;
  }
  .hp-top-search__methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .hp-top-search__method {
    padding: 20px 12px 18px;
  }
  .hp-top-search__spec-header {
    flex-wrap: wrap;
    gap: 6px;
  }
  .hp-top-search__spec-more {
    margin-top: 10px;
    text-align: right;
  }
  .hp-top-search__banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 16px;
  }
  .hp-top-search__banner-title {
    font-size: 15px;
  }
  .hp-top-search__banner::before {
    right: -40px;
    top: auto;
    bottom: -80px;
    width: 260px;
    height: 260px;
  }
  .hp-top-search__banner::after {
    right: 60px;
    top: -60px;
    width: 200px;
    height: 200px;
  }
}
