/* ============================================================
   plus-art.com 完全再現版 · 画像プレースホルダー補完CSS
   既存 style.css には触らず、画像の代替だけを追加
============================================================ */

/* === ロゴ === */
#header-logo a {
  text-decoration: none;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #202020;
  line-height: 1;
  letter-spacing: 0.01em;
  display: inline-block;
}
.logo-text .plus { color: #A50005; }

.logo-text-large {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #202020;
  line-height: 1;
  letter-spacing: 0.02em;
  display: inline-block;
}
.logo-text-large .plus { color: #A50005; }

.logo-shop-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.04em;
}

/* === main-visual 背景 (4枚スライダー) === */
#main-visual-slider .swiper-slide.photo01 {
  background: linear-gradient(135deg, #5D4E37 0%, #8B7355 100%);
  background-size: cover;
  background-position: center;
}
#main-visual-slider .swiper-slide.photo02 {
  background: linear-gradient(135deg, #4A4039 0%, #6B6560 100%);
  background-size: cover;
  background-position: center;
}
#main-visual-slider .swiper-slide.photo03 {
  background: linear-gradient(135deg, #6B5C3F 0%, #A89070 100%);
  background-size: cover;
  background-position: center;
}
#main-visual-slider .swiper-slide.photo04 {
  background: linear-gradient(135deg, #2C2622 0%, #5D4E37 100%);
  background-size: cover;
  background-position: center;
}

/* === Service の画像代替 === */
.top-service-body-list-img.gallery-placeholder {
  background: linear-gradient(135deg, #8B7355 0%, #5D4E37 100%);
  aspect-ratio: 4/3;
  width: 100%;
  min-height: 380px;
}
.top-service-body-list-img.shop-placeholder {
  background: linear-gradient(135deg, #4A4039 0%, #6B6560 100%);
  aspect-ratio: 4/3;
  width: 100%;
  min-height: 380px;
}

/* === Top Links (WORKS / ARTIST) の画像代替 === */
.top-links-list-img.works-placeholder {
  background: linear-gradient(135deg, #5D4E37 0%, #8B7355 100%);
  aspect-ratio: 1/1;
  width: 100%;
}
.top-links-list-img.artists-placeholder {
  background: linear-gradient(135deg, #2C2622 0%, #5D4E37 100%);
  aspect-ratio: 1/1;
  width: 100%;
}

/* === Company の画像代替 === */
.top-company-photo-img.placeholder {
  background: linear-gradient(135deg, #6B5C3F 0%, #A89070 100%);
  width: 100%;
  aspect-ratio: 21/6;
}

/* === News thumbnail 代替 (画像なしの場合) === */
.news-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center;
}

/* === Decorate arrow 代替 (元: img/decorate_arrow.png) === */
.decorate-arrow-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 63px;
  height: 24px;
  font-size: 18px;
  color: #fff;
  background: #A50005;
  font-weight: 700;
}
.decorate-arrow-text::after {
  content: '→';
}

/* === Instagram フィードの代替 === */
.ig-placeholder {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  width: 100%;
}
.ig-placeholder .ig-cell {
  aspect-ratio: 1/1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .ig-placeholder { grid-template-columns: repeat(3, 1fr); }
}

/* === Slider Prev/Next ボタンのアイコン代替 === */
.swiper-btn-prev::before,
.swiper-btn-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  color: #202020;
}
.swiper-btn-prev::before { content: "\f053"; } /* chevron-left */
.swiper-btn-next::before { content: "\f054"; } /* chevron-right */
.swiper-btn-prev img,
.swiper-btn-next img { display: none; }

/* === Contact form 代替 (HubSpot 無いので簡易フォーム) === */
.fallback-contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 48px 40px;
  border: 1px solid #E8E8E8;
}
.fallback-contact-form .row { margin-bottom: 20px; }
.fallback-contact-form label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #202020;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.fallback-contact-form label .required { color: #A50005; }
.fallback-contact-form input,
.fallback-contact-form textarea,
.fallback-contact-form select {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #E8E8E8;
  background: #F8F8F8;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
}
.fallback-contact-form textarea { min-height: 160px; resize: vertical; }
.fallback-contact-form .submit-row { margin-top: 28px; text-align: center; }
.fallback-contact-form button {
  background: #000;
  color: #fff;
  padding: 16px 48px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.fallback-contact-form button::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 7px;
  background: #A50005;
  transition: width 0.3s;
}
.fallback-contact-form button:hover::before { width: 100%; }
.fallback-contact-form button span { position: relative; z-index: 2; }

/* === スマホでのインライン CTAボタン === */
@media screen and (max-width: 767px) {
  .header-nav-list .btn-conversion a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px !important;
  }
}

/* === Sharing (single 記事用、既存になければ補完) === */
.share-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.share-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 8px;
}
.share-row a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E8E8E8;
  border-radius: 50%;
  color: #202020;
  font-size: 12px;
  transition: background 0.2s, color 0.2s;
}
.share-row a:hover { background: #202020; color: #fff; }
.single-section-head-share,
.single-section-foot-share {
  padding: 16px 0;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}
.single-section-foot-share {
  border-bottom: none;
  margin-top: 32px;
}

/* === ニュースカテゴリ色 (既存にあるものを補完) === */
.news-info-cat.cat-information { background: #2777BA; color: #fff; }
.news-info-cat.cat-press { background: #A50005; color: #fff; }
.news-info-cat.cat-event { background: #155F37; color: #fff; }
.news-info-cat.cat-exhibition { background: #6E4310; color: #fff; }
.news-info-cat.cat-award { background: #C9931F; color: #fff; }
.news-info-cat.cat-art { background: #155F37; color: #fff; }
.news-info-cat.cat-business { background: #0F4C8C; color: #fff; }
.news-info-cat.cat-essay { background: #6E4310; color: #fff; }
.news-info-cat.cat-interview { background: #7A0070; color: #fff; }
.news-info-cat.cat-all { background: #333; color: #fff; }

/* ========== SERVICEカテゴリブロック (3カテゴリ並ぶ用) ========== */
.service-cat-block {
  padding: 100px 0;
  border-bottom: 1px solid #E8E8E8;
}
.service-cat-block:last-of-type { border-bottom: none; }
.service-cat-block .top-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.service-cat-block.reverse .top-section-inner {
  direction: rtl;
}
.service-cat-block.reverse .top-section-inner > * {
  direction: ltr;
}
.service-cat-img {
  width: 100%;
  aspect-ratio: 4/3;
}
.service-cat-img.business-img {
  background: linear-gradient(135deg, #0F4C8C 0%, #2C2622 100%);
}
.service-cat-img.collection-img {
  background: linear-gradient(135deg, #6B5C3F 0%, #B5A89F 100%);
}
.service-cat-img.exhibition-img {
  background: linear-gradient(135deg, #4A4039 0%, #8B7355 100%);
}
.service-cat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #A50005;
  letter-spacing: 0.24em;
  margin-bottom: 16px;
}
.service-cat-main {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
  color: #202020;
}
.service-cat-subs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #777;
}
.service-cat-subs > span {
  display: inline-block;
}
.service-cat-subs > span + span::before {
  content: '/';
  margin: 0 12px;
  color: #C0C0C0;
}
.service-cat-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 2.1;
  color: #202020;
  margin: 0 0 32px;
}
.service-cat-cta a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #000;
  color: #fff;
  padding: 16px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.service-cat-cta a::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 7px;
  background: #A50005;
  transition: width 0.3s;
  z-index: 0;
}
.service-cat-cta a:hover::before { width: 100%; }
.service-cat-cta a span,
.service-cat-cta a i { position: relative; z-index: 1; }

@media screen and (max-width: 767px) {
  .service-cat-block { padding: 56px 0; }
  .service-cat-block .top-section-inner {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
    gap: 28px;
    padding: 0 20px;
  }
  .service-cat-main { font-size: 44px; }
  .service-cat-desc { font-size: 14px; line-height: 1.95; }
}

/* ========== CASE STUDY セクション ========== */
.case-section {
  padding: 100px 0;
  background: #F8F8F8;
}
article#page-article.work-article section.case-section,
article#page-article section.case-section {
  padding: 100px 0;
}
.case-section .top-section-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 32px;
  margin-bottom: 0;
}
.case-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* フィルタ全体: 密接配置 (Service/Genre ラベル同期) */
.case-filter-wrap {
  margin-bottom: 56px;
  background: #fff;
  padding: 24px 28px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.case-filter-row {
  display: flex;
  align-items: center;
  gap: 16px;          /* ラベル ↔ ボタン群の間隔を詰める */
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.case-filter-row:last-child { margin-bottom: 0; }
.case-filter-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #A50005;
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 64px;     /* Service と Genre のラベル幅を揃える */
}
.case-filter {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
/* 丸みのあるボタン (既存サイトのトーン: Poppins, 14px, 適切な余白) */
.case-filter-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 999px;
  color: #555;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  line-height: 1;
}
.case-filter-btn:hover {
  border-color: #202020;
  color: #202020;
}
.case-filter-btn.active {
  background: #202020;
  border-color: #202020;
  color: #fff;
}
.case-filter-btn.active.cat-business { background: #0F4C8C; border-color: #0F4C8C; }
.case-filter-btn.active.cat-collection { background: #6E4310; border-color: #6E4310; }
.case-filter-btn.active.cat-exhibition { background: #155F37; border-color: #155F37; }

/* サブカテゴリ行 (デフォルト非表示) */
.case-subfilter-row {
  display: none;
  animation: subFilterFadeIn 0.4s ease-out;
  padding-top: 12px;
  border-top: 1px solid #F0F0F0;
}
.case-subfilter-row.is-visible { display: flex; }
@keyframes subFilterFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CASEリスト = 既存NEWSのカード形と完全に同じ仕様 */
ul.case-list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: unset !important;
}
ul.case-list > li {
  list-style: none;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
}
ul.case-list > li.hidden { display: none !important; }
ul.case-list > li a {
  display: block;
  text-decoration: none;
  color: #202020;
  transition: opacity 0.2s;
}
ul.case-list > li a:hover { opacity: 0.95; }
ul.case-list > li a .news-thumbnail {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #E8E8E8;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;     /* オーバーレイの基準点 */
}
ul.case-list > li a:hover .news-thumbnail {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}
/* === 大カテゴリ (右下にオーバーレイ) === */
ul.case-list > li a .case-cat-overlay {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
/* === サブカテゴリ (左上にオーバーレイ) === */
ul.case-list > li a .case-subcat-overlay {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 3;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  color: #fff;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
}
ul.case-list > li a .news-thumbnail .news-thumb-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: block;
}
/* news-info / news-title は既存サイズに合わせる */
ul.case-list > li a .news-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  flex-wrap: wrap;
}
ul.case-list > li a .news-info-date {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;          /* 既存 NEWS と同じ */
  color: #444;
  font-weight: 500;
  margin: 0;
  line-height: 1;
}
ul.case-list > li a .news-info-cat {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;          /* 既存 NEWS と同じ */
  padding: 5px 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
ul.case-list > li a .case-subcat {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  color: #777;
  background: transparent;
  border: 1px solid #C0C0C0;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
}
ul.case-list > li a .news-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;          /* 既存 NEWS と同じ */
  font-weight: 700;
  line-height: 1.75;        /* 既存 NEWS と同じ */
  color: #202020;
  margin-top: 12px;
}

.case-empty {
  text-align: center;
  padding: 80px 0;
  color: #777;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.12em;
  grid-column: 1 / -1;
}

/* CASE 大カテゴリ色 (NEWSと同じ news-info-cat を使う想定) */
.news-info-cat.cat-business { background: #0F4C8C; color: #fff; }
.news-info-cat.cat-collection { background: #6E4310; color: #fff; }
.news-info-cat.cat-exhibition { background: #155F37; color: #fff; }
.news-info-cat.cat-business:before,
.news-info-cat.cat-collection:before,
.news-info-cat.cat-exhibition:before { content: none !important; }

/* ============================================================
   TOP SERVICE 3カード (BUSINESS / COLLECTION / EXHIBITION)
   既存 .top-service-body-list のトーンを踏襲しつつ、
   3つ並ぶカード形式に
============================================================ */
#top-service-cards {
  padding: 0 0 80px;
}
#top-service-cards .top-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}
.top-service-cards-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-service-card { 
  list-style: none; 
  position: relative;
  overflow: visible;
}
.top-service-card-link {
  display: block;
  text-decoration: none;
  color: #202020;
  position: relative;
  transition: transform 0.4s ease;
}
.top-service-card-link:hover {
  transform: translateY(-6px);
}
/* === 巨大 Watermark 数字 === */
.top-service-card-watermark {
  font-family: 'Poppins', sans-serif;
  font-size: 200px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(165, 0, 5, 0.18);
  text-stroke: 1.5px rgba(165, 0, 5, 0.18);
  position: absolute;
  top: -40px;
  left: -16px;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}
.top-service-card-img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 6px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.4s ease;
}
.top-service-card-link:hover .top-service-card-img {
  box-shadow: 0 30px 80px rgba(0,0,0,0.22), 0 10px 30px rgba(0,0,0,0.12);
}
.top-service-card-body {
  padding: 0 8px;
  position: relative;
  z-index: 2;
}
/* 既存の小さい数字ラベルは廃止 (Watermark で代替) */
.top-service-card-num {
  display: none;
}
.top-service-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;       /* 既存 .top-section-head-title (28-56px) と整合性 */
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0 0 14px;
  color: #202020;
}
.top-service-card-subs {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #777;
  margin-bottom: 16px;
  line-height: 1.6;
}
.top-service-card-subs > span {
  display: inline-block;
}
.top-service-card-subs > span + span::before {
  content: '/';
  margin: 0 8px;
  color: #C0C0C0;
}
.top-service-card-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;             /* 既存 NEWS の本文サイズに合わせる */
  line-height: 1.95;
  color: #444;
  margin: 0 0 20px;
}
.top-service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #202020;
  padding-bottom: 4px;
  border-bottom: 1px solid #202020;
  transition: color 0.2s, border-color 0.2s;
}
.top-service-card-link:hover .top-service-card-cta {
  color: #A50005;
  border-bottom-color: #A50005;
}

@media screen and (max-width: 960px) {
  .top-service-cards-list { grid-template-columns: 1fr; gap: 48px; }
  #top-service-cards .top-section-inner { padding: 0 20px; }
  .top-service-card-img { aspect-ratio: 16/10; }
}

@media screen and (max-width: 960px) {
  ul.case-list { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
}
@media screen and (max-width: 600px) {
  ul.case-list { grid-template-columns: 1fr; gap: 32px 0; }
  .case-section,
  article#page-article.work-article section.case-section,
  article#page-article section.case-section { padding: 56px 0; }
  .case-filter-row { gap: 12px; margin-bottom: 12px; }
  .case-filter-label { font-size: 12px; }
  .case-filter-btn { font-size: 12px; padding: 8px 16px; }
}

/* ============================================================
   WORKS Article 個別記事
   既存 article#page-article section { padding: 80px 0; } を上書きするため
   セレクタ詳細度を上げて記述
============================================================ */
/* ============================================================
   WORKS Article 個別記事
   既存 a { display: block } 等の影響を遮断するため
   .work-article 配下では明示的に display を指定し直す
============================================================ */
article#page-article.work-article {
  background: #F8F8F8;
}
article#page-article.work-article section {
  padding: 0;  /* 既存の80px 0; を打ち消す */
}
article#page-article.work-article section:last-of-type {
  padding-bottom: 0;  /* 既存の110px; を打ち消す */
}

/* 既存 a { display: block } の影響を遮断 */
article#page-article.work-article a {
  display: inline;
  transition: color 0.2s;
}
/* ただしカード/ボタン系は block / flex に明示的に戻す */
article#page-article.work-article .work-related-grid > li a,
article#page-article.work-article .work-dual-cta a,
article#page-article.work-article .work-cta-banner,
article#page-article.work-article .work-closing .btn-primary {
  display: block;
}
article#page-article.work-article .work-dual-cta a,
article#page-article.work-article .work-closing .btn-primary {
  display: inline-flex;
}

/* span のborder汚染も遮断 (既存 span にborderが付くスタイルがある) */
article#page-article.work-article span {
  border: none;
  display: inline;
}
article#page-article.work-article .work-breadcrumb > span,
article#page-article.work-article .work-breadcrumb > span > a {
  display: inline;
}

/* === Hero (パンくず + Works タイトル) === */
article#page-article.work-article section.work-hero {
  padding: 60px 0 32px;
  background: #F8F8F8;
}
.work-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}
.work-hero-en {
  font-family: 'Poppins', sans-serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #202020;
  margin: 0 0 20px;
}
.work-hero-en .plus { color: #A50005; }
.work-breadcrumb {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #777;
  margin: 0;
}
.work-breadcrumb a {
  color: #777;
  text-decoration: none;
  transition: color 0.2s;
}
.work-breadcrumb a:hover { color: #A50005; }
.work-breadcrumb > span + span::before {
  content: '>';
  margin: 0 12px;
  color: #C0C0C0;
}
.work-breadcrumb .current { color: #202020; }

@media screen and (max-width: 767px) {
  article#page-article.work-article section.work-hero { padding: 32px 0 20px; }
  .work-hero-en { font-size: 56px; }
  .work-breadcrumb { font-size: 11px; }
}

/* === メインビジュアル (左thumb + 中央メイン + 右thumb) === */
article#page-article.work-article section.work-visual {
  padding: 32px 0 80px;
}
/* === メインビジュアル (Swiper) === */
article#page-article.work-article section.work-visual {
  padding: 32px 0 80px;
}
.work-visual-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}
.work-visual-swiper {
  width: 100%;
  overflow: visible;
  padding: 20px 0 50px;  /* ドット用余白 */
}
.work-visual-swiper .swiper-slide {
  width: 65%;            /* 中央スライド */
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #E8E8E8;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
  border-radius: 2px;
  cursor: pointer;
}
.work-visual-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.55;
  transform: scale(0.9);
}
.work-visual-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
/* ドット (Swiper pagination) */
.work-visual-swiper .swiper-pagination {
  bottom: 0;
  text-align: center;
}
.work-visual-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #C0C0C0;
  opacity: 1;
  margin: 0 5px !important;
  transition: background 0.2s;
}
.work-visual-swiper .swiper-pagination-bullet-active {
  background: #A50005;
}
/* 前後ボタン (option) */
.work-visual-swiper .swiper-button-prev,
.work-visual-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  color: #202020;
  margin-top: -20px;
  transition: background 0.2s;
}
.work-visual-swiper .swiper-button-prev:after,
.work-visual-swiper .swiper-button-next:after {
  font-size: 14px;
  font-weight: 700;
}
.work-visual-swiper .swiper-button-prev:hover,
.work-visual-swiper .swiper-button-next:hover {
  background: #A50005;
  color: #fff;
}

@media screen and (max-width: 767px) {
  article#page-article.work-article section.work-visual { padding: 16px 0 48px; }
  .work-visual-inner { padding: 0 20px; }
  .work-visual-swiper .swiper-slide { width: 85%; }
}

/* === 2カラム本文 === */
article#page-article.work-article section.work-body {
  padding: 0 0 80px;
}
.work-body-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

/* 左サイドバー */
.work-sidebar {
  position: sticky;
  top: 100px;
}
/* カテゴリラベルは既存の .news-info-cat と同じスタイル (block化を避けるためinline-blockに) */
article#page-article.work-article .work-sidebar-label {
  display: inline-block !important;
  padding: 3px 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 20px;
}
article#page-article.work-article .work-sidebar-label.cat-business { background: #0F4C8C; }
article#page-article.work-article .work-sidebar-label.cat-collection { background: #6E4310; }
article#page-article.work-article .work-sidebar-label.cat-exhibition { background: #155F37; }
.work-sidebar-summary {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: #202020;
  margin: 0 0 32px;
}

.work-sidebar-artist {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 28px;
}
.work-sidebar-artist .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #E8E8E8;
  flex-shrink: 0;
}
.work-sidebar-artist .info .role {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.work-sidebar-artist .info .name {
  font-size: 15px;
  font-weight: 700;
  color: #202020;
}

.work-sidebar-meta-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-top: 8px;
}
.work-sidebar-meta {
  margin: 0 0 32px;
}
.work-sidebar-meta dl {
  margin: 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 16px;
}
.work-sidebar-meta dt {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 2px;
}
.work-sidebar-meta dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #202020;
}

.work-sidebar-tags-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.work-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.work-sidebar-tags a {
  font-size: 12px;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid #E0E0E0;
  color: #555;
  text-decoration: none;
  transition: all 0.2s;
}
.work-sidebar-tags a:hover {
  border-color: #A50005;
  color: #A50005;
}

/* 右本文 */
.work-main-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #202020;
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8E8E8;
}
.work-main-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 2.1;
  color: #202020;
  margin: 0 0 32px;
}
.work-body-image {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #E8E8E8;
  margin: 56px 0 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}
/* === Lazy Load + Image Decode 動作の視覚化 === */
.work-body-image.lazy-img {
  filter: blur(20px) saturate(0.4);
  opacity: 0.5;
  transform: scale(1.04);
  transition: filter 1s ease-out, opacity 1s ease-out, transform 1s ease-out;
}
.work-body-image.lazy-img.is-loaded {
  filter: blur(0) saturate(1);
  opacity: 1;
  transform: scale(1);
}
.work-body-image.lazy-img::after {
  content: 'Lazy Loading...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.4);
  padding: 6px 16px;
  text-transform: uppercase;
  transition: opacity 0.6s;
  pointer-events: none;
}
.work-body-image.lazy-img.is-loaded::after {
  opacity: 0;
}
.work-body-caption {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #999;
  font-weight: 500;
  margin: 0 0 32px;
  text-transform: uppercase;
}
.work-body-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 2.1;
  color: #202020;
  margin: 0 0 32px;
}
/* H2 を既存 #single-section-body h2 と同じトーンに (font-size 26px / 黒線) */
article#page-article.work-article .work-body-h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin: 60px 0 20px;
  padding: 7px 0 15px;
  border-bottom: 2px solid #181818;
  color: #202020;
  display: block;
}

@media screen and (max-width: 960px) {
  .work-body-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .work-sidebar {
    position: static;
    padding: 24px;
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  article#page-article.work-article section.work-body { padding: 0 0 48px; }
  .work-body-inner { padding: 0 20px; }
  .work-main-title { font-size: 22px; }
  .work-main-lead { font-size: 14px; margin-bottom: 32px; }
  .work-body-image { margin: 32px 0 16px; }
  .work-body-text { font-size: 14px; line-height: 1.95; }
  .work-body-h2 { font-size: 18px; margin: 32px 0 16px; }
}

/* === クロージング CTA === */
article#page-article.work-article section.work-closing {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}
.work-closing-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 30px;
}
.work-closing-headline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
  color: #202020;
  margin: 0 0 12px;
}
.work-closing-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #777;
  margin: 0 0 36px;
}
.work-closing .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: #000;
  color: #fff;
  padding: 22px 56px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.work-closing .btn-primary::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 7px;
  background: #A50005;
  transition: width 0.3s;
  z-index: 0;
}
.work-closing .btn-primary:hover::before { width: 100%; }
.work-closing .btn-primary span,
.work-closing .btn-primary i { position: relative; z-index: 1; }

@media screen and (max-width: 767px) {
  article#page-article.work-article section.work-closing { padding: 56px 0; }
  .work-closing-headline { font-size: 18px; }
  .work-closing .btn-primary { padding: 18px 36px; font-size: 12px; }
}

/* === Related (アクセント色背景) === */
article#page-article.work-article section.work-related {
  padding: 100px 0;
  background: #2C2622;
  color: #fff;
}
.work-related-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.work-related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.work-related-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
  position: relative;
  padding-left: 24px;
}
.work-related-head h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: calc(100% - 16px);
  background: #A50005;
}
.work-related-head .view-all {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #fff;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid #fff;
  transition: color 0.2s, border-color 0.2s;
}
.work-related-head .view-all:hover {
  color: #A50005;
  border-color: #A50005;
}
.work-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.work-related-grid > li { list-style: none; }
.work-related-grid > li a {
  display: block;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
}
.work-related-grid > li a:hover { opacity: 0.85; }
.work-related-grid .thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.work-related-grid .thumb.lazy-img {
  filter: blur(20px) saturate(0.4);
  opacity: 0.5;
  transform: scale(1.04);
  transition: filter 1s ease-out, opacity 1s ease-out, transform 1s ease-out;
}
.work-related-grid .thumb.lazy-img.is-loaded {
  filter: blur(0) saturate(1);
  opacity: 1;
  transform: scale(1);
}
.work-related-grid .title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 6px;
}
.work-related-grid .client {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 960px) {
  .work-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 600px) {
  article#page-article.work-article section.work-related { padding: 56px 0; }
  .work-related-head h2 { font-size: 32px; }
  .work-related-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* === CTAバナー + 装飾タイポ + 2カードCTA === */
article#page-article.work-article section.work-cta-section {
  padding: 100px 0;
  background: #F8F8F8;
}
.work-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* バナーリンク */
.work-cta-banner {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  aspect-ratio: 21/6;
  background: linear-gradient(135deg, #5D4E37, #2C2622);
  background-size: cover;
  background-position: center;
  margin-bottom: 80px;
  overflow: hidden;
  transition: opacity 0.2s;
}
.work-cta-banner:hover { opacity: 0.9; }
.work-cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
}
.work-cta-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 2;
}
.work-cta-banner-content h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.work-cta-banner-content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.work-cta-banner-arrow {
  width: 56px;
  height: 56px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
}
.work-cta-banner:hover .work-cta-banner-arrow {
  background: #A50005;
  border-color: #A50005;
}

/* 装飾タイポ "Hello ART!" */
.work-deco-typo {
  font-family: 'Poppins', sans-serif;
  font-size: 120px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px #202020;
  text-stroke: 1.5px #202020;
  line-height: 1;
  margin: 0 0 60px;
  white-space: nowrap;
  overflow: hidden;
}
.work-deco-typo .plus { color: #A50005; -webkit-text-stroke: 0; text-stroke: 0; }

/* 2カードCTA */
.work-dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.work-dual-cta a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #202020;
  background: #fff;
  padding: 40px 36px;
  position: relative;
  transition: transform 0.2s;
}
.work-dual-cta a:hover { transform: translateY(-4px); }
.work-dual-cta .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  color: #A50005;
  font-size: 20px;
  margin-bottom: 24px;
}
.work-dual-cta .en {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  color: #202020;
}
.work-dual-cta .jp {
  font-size: 14px;
  color: #777;
  margin-bottom: 32px;
}
.work-dual-cta .arrow {
  position: absolute;
  bottom: 36px;
  right: 36px;
  font-size: 16px;
  color: #202020;
  transition: color 0.2s;
}
.work-dual-cta a:hover .arrow { color: #A50005; }

@media screen and (max-width: 767px) {
  article#page-article.work-article section.work-cta-section { padding: 56px 0; }
  .work-cta-banner { aspect-ratio: 4/3; margin-bottom: 48px; }
  .work-cta-banner-content { padding: 0 24px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 24px; }
  .work-cta-banner-content h3 { font-size: 18px; }
  .work-deco-typo { font-size: 56px; margin-bottom: 32px; }
  .work-dual-cta { grid-template-columns: 1fr; gap: 16px; }
  .work-dual-cta a { padding: 28px 24px; }
}

/* ============================================================
   ARTIST ページ
============================================================ */

/* === ARTIST 一覧 (artists/index.html) === */
.artist-list-section {
  padding: 80px 0;
}
.artist-list-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.artist-list-50sort {
  margin-bottom: 56px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
}
.artist-list-50sort a {
  display: inline-block;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 999px;
  color: #555;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: all 0.2s;
}
.artist-list-50sort a:hover,
.artist-list-50sort a.active {
  background: #A50005;
  border-color: #A50005;
  color: #fff;
}
ul.artist-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.artist-list > li {
  list-style: none;
}
ul.artist-list > li a {
  display: block;
  text-decoration: none;
  color: #202020;
  transition: opacity 0.2s;
}
ul.artist-list > li a:hover { opacity: 0.95; }
.artist-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: #E8E8E8;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
ul.artist-list > li a:hover .artist-card-img {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}
.artist-card-50 {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  color: #fff;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-transform: uppercase;
  line-height: 1;
}
.artist-card-name-en {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #777;
  margin: 0 0 4px;
  line-height: 1;
}
.artist-card-name-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #202020;
  line-height: 1.5;
  margin: 0;
}

@media screen and (max-width: 960px) {
  ul.artist-list { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 600px) {
  ul.artist-list { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .artist-list-section { padding: 48px 0; }
}

/* === ARTIST 個別ページ === */
article#page-article.artist-article {
  background: #F8F8F8;
}
article#page-article.artist-article section { padding: 0; }
article#page-article.artist-article section:last-of-type { padding-bottom: 0; }

/* a/spanのデフォルト遮断 */
article#page-article.artist-article a { display: inline; transition: color 0.2s; }
article#page-article.artist-article span { border: none; display: inline; }

/* HERO */
.artist-hero {
  padding: 60px 0 32px;
}
.artist-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}
.artist-hero-en {
  font-family: 'Poppins', sans-serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #202020;
  margin: 0 0 20px;
}
.artist-hero-breadcrumb {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #777;
  margin: 0;
}
.artist-hero-breadcrumb > span + span::before {
  content: '>';
  margin: 0 12px;
  color: #C0C0C0;
}
.artist-hero-breadcrumb .current { color: #202020; }
@media screen and (max-width: 767px) {
  .artist-hero-en { font-size: 56px; }
}

/* 代表作品 HERO (横3枚) */
.artist-works-hero {
  padding: 32px 0 80px;
}
.artist-works-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}
.artist-works-swiper {
  width: 100%;
  overflow: visible;
  padding: 20px 0 50px;
}
.artist-works-swiper .swiper-slide {
  width: 65%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #E8E8E8;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 2px;
}
.artist-works-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.55;
  transform: scale(0.9);
}
.artist-works-swiper .swiper-slide-active {
  opacity: 1; transform: scale(1); z-index: 2;
}
.artist-works-swiper .swiper-pagination-bullet {
  width: 8px; height: 8px; background: #C0C0C0; opacity: 1;
}
.artist-works-swiper .swiper-pagination-bullet-active { background: #A50005; }
.artist-works-swiper .swiper-button-prev,
.artist-works-swiper .swiper-button-next {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  color: #202020; margin-top: -20px;
}
.artist-works-swiper .swiper-button-prev:after,
.artist-works-swiper .swiper-button-next:after { font-size: 14px; font-weight: 700; }

/* 2カラム本文 */
.artist-body {
  padding: 0 0 80px;
}
.artist-body-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

/* 左サイドバー (Sticky) */
.artist-sidebar {
  position: sticky;
  top: 100px;
}
.artist-sidebar-avatar {
  width: 100%;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-color: #E8E8E8;
  margin-bottom: 24px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.artist-sidebar-name-en {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #777;
  margin: 0 0 4px;
  line-height: 1;
}
.artist-sidebar-name-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #202020;
  line-height: 1.4;
  margin: 0 0 24px;
}
.artist-sidebar-meta-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-top: 12px;
  border-top: 1px solid #E8E8E8;
}
.artist-sidebar-meta {
  margin: 0 0 24px;
}
.artist-sidebar-meta dl {
  margin: 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px 12px;
}
.artist-sidebar-meta dt {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 2px;
}
.artist-sidebar-meta dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #202020;
}
.artist-sidebar-sns {
  display: flex;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #E8E8E8;
}
.artist-sidebar-sns a {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid #E0E0E0;
  display: inline-flex; align-items: center; justify-content: center;
  color: #555; transition: all 0.2s;
}
.artist-sidebar-sns a:hover { background: #A50005; color: #fff; border-color: #A50005; }

/* 右本文 */
.artist-main-h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 24px;
  padding: 7px 0 15px;
  border-bottom: 2px solid #181818;
  color: #202020;
}
.artist-main-h2:not(:first-child) { margin-top: 64px; }
.artist-main-intro {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 2.1;
  color: #202020;
  margin: 0 0 24px;
}

/* 経歴カード型 */
ul.artist-cv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
ul.artist-cv-list > li {
  background: #fff;
  padding: 20px 24px;
  border-left: 4px solid #A50005;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: baseline;
}
.artist-cv-year {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #A50005;
  letter-spacing: 0.04em;
}
.artist-cv-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #202020;
}

/* 動画埋め込み */
.artist-video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 24px;
  background: #000;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.artist-video-wrap iframe {
  width: 100%; height: 100%; border: 0;
}

/* SNSカード */
ul.artist-sns-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
ul.artist-sns-cards > li a {
  display: flex !important;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 20px 24px;
  text-decoration: none;
  color: #202020;
  transition: transform 0.2s, box-shadow 0.2s;
}
ul.artist-sns-cards > li a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.artist-sns-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: #F8F8F8;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; color: #A50005; flex-shrink: 0;
}
.artist-sns-text-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
}
.artist-sns-text-handle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #202020;
}

/* 関連 WORKS */
.artist-related-works {
  padding: 80px 0;
  background: #fff;
}
.artist-related-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* 最後の GALLERY (宣伝写真) */
.artist-gallery {
  padding: 0 0 80px;
}
.artist-gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}
.artist-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 600px;
}
.artist-gallery-grid > div {
  background-size: cover;
  background-position: center;
  background-color: #E8E8E8;
}
.artist-gallery-grid > div:nth-child(1) { grid-row: span 2; }

@media screen and (max-width: 960px) {
  .artist-body-inner { grid-template-columns: 1fr; gap: 48px; }
  .artist-sidebar { position: static; padding: 24px; background: #fff; }
  ul.artist-sns-cards { grid-template-columns: 1fr; }
  .artist-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    height: 800px;
  }
  .artist-gallery-grid > div:nth-child(1) { grid-row: span 2; grid-column: span 2; }
}
@media screen and (max-width: 600px) {
  .artist-body { padding: 0 0 48px; }
  .artist-body-inner { padding: 0 20px; }
  .artist-main-h2 { font-size: 20px; }
  ul.artist-cv-list > li { grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; }
  .artist-works-swiper .swiper-slide { width: 85%; }
}

/* ============================================================
   COMPANY ページ
============================================================ */
article#page-article.company-article {
  background: #F8F8F8;
}
article#page-article.company-article section { padding: 0; }
article#page-article.company-article section:last-of-type { padding-bottom: 0; }
article#page-article.company-article a { display: inline; transition: color 0.2s; }
article#page-article.company-article span { border: none; display: inline; }

/* === MISSION === */
.company-mission {
  padding: 120px 0 100px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.company-mission-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
.company-mission-watermark {
  font-family: 'Poppins', sans-serif;
  font-size: 280px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(165, 0, 5, 0.12);
  text-stroke: 1.5px rgba(165, 0, 5, 0.12);
  position: absolute;
  top: 40px;
  right: -30px;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  white-space: nowrap;
}
.company-mission-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #A50005;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.company-mission-headline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.6;
  color: #202020;
  margin: 0 0 40px;
  letter-spacing: 0.02em;
}
.company-mission-headline .accent { color: #A50005; }
.company-mission-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 2.1;
  color: #444;
  margin: 0 0 16px;
  max-width: 720px;
}

@media screen and (max-width: 767px) {
  .company-mission { padding: 64px 0 56px; }
  .company-mission-watermark { font-size: 120px; top: 20px; right: -10px; }
  .company-mission-headline { font-size: 24px; }
  .company-mission-text { font-size: 14px; line-height: 1.95; }
}

/* === MEMBER === */
.company-member {
  padding: 100px 0;
  background: #F8F8F8;
}
.company-member-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.company-member-head {
  margin-bottom: 56px;
  text-align: center;
}
.company-member-en {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #202020;
  margin: 0 0 8px;
  line-height: 1;
}
.company-member-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #777;
  letter-spacing: 0.18em;
  margin: 0;
}

/* メンバーカード (最大3名) */
ul.company-member-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.company-member-list > li {
  list-style: none;
  background: #fff;
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
ul.company-member-list > li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.member-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: #E8E8E8;
  position: relative;
}
.member-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}
.member-body {
  padding: 28px 28px 32px;
}
.member-role {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #A50005;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1;
}
.member-name-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #202020;
  margin: 0 0 4px;
  line-height: 1.4;
}
.member-name-en {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #777;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  line-height: 1;
}
.member-bio {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  line-height: 1.95;
  color: #555;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid #E8E8E8;
}

@media screen and (max-width: 960px) {
  ul.company-member-list { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media screen and (max-width: 767px) {
  .company-member { padding: 56px 0; }
  .company-member-en { font-size: 40px; }
  .member-body { padding: 20px 22px 24px; }
}

/* === COMPANY INFO テーブル === */
.company-info {
  padding: 100px 0;
  background: #fff;
}
.company-info-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}
.company-info-head {
  margin-bottom: 40px;
  text-align: center;
}
.company-info-en {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #202020;
  margin: 0 0 8px;
  line-height: 1;
}
.company-info-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #777;
  letter-spacing: 0.18em;
  margin: 0;
}
table.company-info-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Noto Sans JP', sans-serif;
}
table.company-info-table th,
table.company-info-table td {
  text-align: left;
  vertical-align: top;
  padding: 20px 16px;
  border-bottom: 1px solid #E8E8E8;
  font-size: 14px;
  line-height: 1.8;
}
table.company-info-table th {
  width: 200px;
  color: #777;
  font-weight: 600;
  letter-spacing: 0.04em;
}
table.company-info-table td { color: #202020; }
@media screen and (max-width: 767px) {
  .company-info { padding: 56px 0; }
  .company-info-en { font-size: 40px; }
  table.company-info-table th,
  table.company-info-table td { display: block; padding: 12px 0; border-bottom: none; }
  table.company-info-table th { width: auto; padding-top: 16px; }
  table.company-info-table tr { display: block; border-bottom: 1px solid #E8E8E8; padding: 8px 0 16px; }
}



/* Hide RECRUIT in header nav on desktop — keep in mobile hamburger + footer */
@media (min-width: 768px) {
  #header-nav ul.header-nav-list > li:has(> a[href*="pls-art.jbplt.jp"]) {
    display: none;
  }
}


/* Footer ONLINE SHOP logo — force white text */
footer#common-footer .footer-onlineshop-link .logo-text,
footer#common-footer .footer-onlineshop-link .logo-text .plus {
  color: #fff !important;
}


/* Footer service sub items */
footer#common-footer .footer-nav-list li.footer-sub-item a {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  padding-left: 4px;
}
footer#common-footer .footer-nav-list li.footer-sub-item:not(:last-child) {
  margin-top: 4px !important;
}
footer#common-footer .footer-nav-list li.footer-sub-item + li.en-page {
  margin-top: 16px !important;
}
footer#common-footer .footer-nav-list li.footer-sub-item a:hover {
  color: #fff;
}
footer#common-footer .footer-sub-dash {
  display: inline-block;
  margin-right: 6px;
  color: rgba(255,255,255,0.35);
}


/* Splash Screen — shown briefly on every full page load */
html.splash-active { overflow: hidden; }
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: splashIn .35s ease both;
}
.splash-screen.done {
    animation: splashOut .55s cubic-bezier(.7,0,.2,1) forwards;
    pointer-events: none;
}
@keyframes splashIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes splashOut {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.04); }
}
.splash-inner {
    text-align: center;
    color: #fff;
    position: relative;
}
.splash-mark {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(56px, 12vw, 144px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
    display: inline-flex;
    align-items: center;
    transform-origin: center;
}
.splash-plus {
    color: #A50005;
    display: inline-block;
    margin-right: 8px;
    transform-origin: center center;
    animation: splashPlusIn 0.9s cubic-bezier(.22,.7,.2,1) both;
}
.splash-art {
    color: #fff;
    display: inline-block;
    overflow: hidden;
    clip-path: inset(0 100% 0 0);
    animation: splashArtReveal 0.7s cubic-bezier(.7,0,.2,1) 0.5s forwards;
}
@keyframes splashPlusIn {
    0%   { opacity: 0; transform: rotate(-180deg) scale(0.3); }
    60%  { opacity: 1; transform: rotate(180deg) scale(1.15); }
    100% { opacity: 1; transform: rotate(360deg) scale(1); }
}
@keyframes splashArtReveal {
    0%   { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}
.splash-tagline {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.24em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    margin-top: 28px;
    opacity: 0;
    transform: translateY(8px);
    animation: splashTaglineIn 0.6s ease 0.9s forwards;
}
@keyframes splashTaglineIn {
    to { opacity: 1; transform: translateY(0); }
}
.splash-progress {
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.18);
    margin: 32px auto 0;
    overflow: hidden;
    border-radius: 999px;
}
.splash-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: #A50005;
    animation: splashProgress 1.2s cubic-bezier(.7,0,.2,1) 0.1s forwards;
}
@keyframes splashProgress {
    to { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    .splash-mark, .splash-plus, .splash-art, .splash-tagline, .splash-progress span {
        animation: none !important;
        clip-path: none !important;
        opacity: 1 !important;
        transform: none !important;
        width: 100% !important;
    }
}


/* Letter Hop — animate each letter of section titles on scroll into view + hover */
.top-section-head-title.letter-hop {
    display: inline-block;
}
.top-section-head-title.letter-hop .lh {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.5em);
    transition: transform .35s cubic-bezier(.22,.9,.3,1.2), opacity .35s ease;
}
.top-section-head-title.letter-hop.visible .lh {
    opacity: 1;
    transform: translateY(0);
}
.top-section-head-title.letter-hop:hover .lh {
    animation: letterHop 0.55s cubic-bezier(.22,.7,.2,1.2);
}
@keyframes letterHop {
    0% { transform: translateY(0); }
    45% { transform: translateY(-0.4em); }
    100% { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .top-section-head-title.letter-hop .lh {
        opacity: 1; transform: none; animation: none !important;
    }
}


/* Image Decode — scanline reveal */
.decode-anim {
    position: relative;
    animation: imageDecode 0.9s cubic-bezier(.6,.0,.2,1) both;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 100%);
    -webkit-mask-size: 100% 0%;
    mask-size: 100% 0%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top;
    mask-position: top;
}
@keyframes imageDecode {
    0%   { -webkit-mask-size: 100% 0%; mask-size: 100% 0%; filter: contrast(1.15) brightness(0.85); }
    10%  { filter: contrast(1.2) brightness(0.85); }
    100% { -webkit-mask-size: 100% 100%; mask-size: 100% 100%; filter: none; }
}
.decode-anim::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    animation: scanlineSweep 0.9s cubic-bezier(.6,.0,.2,1) both;
    z-index: 5;
}
@keyframes scanlineSweep {
    0%   { top: 0; opacity: 0; }
    10%  { opacity: 0.9; }
    90%  { opacity: 0.9; }
    100% { top: 100%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .decode-anim, .decode-anim::after {
        animation: none !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }
}


/* Floating Contact bubble — speech-bubble CTA fixed bottom-right */
.float-contact {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px) scale(0.85);
    transition: opacity .4s cubic-bezier(.22,.9,.3,1.2), transform .4s cubic-bezier(.22,.9,.3,1.2);
}
.float-contact.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.float-contact-bubble {
    pointer-events: auto;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: #A50005;
    color: #fff;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    box-shadow: 0 14px 32px rgba(165, 0, 5, 0.35), 0 2px 6px rgba(0,0,0,0.12);
    text-decoration: none;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.float-contact-bubble::after {
    content: "";
    position: absolute;
    bottom: -6px;
    right: 28px;
    width: 14px;
    height: 14px;
    background: #A50005;
    transform: rotate(45deg);
    border-bottom-right-radius: 3px;
    z-index: -1;
    transition: background .25s ease;
}
.float-contact-bubble:hover {
    transform: translateY(-3px);
    background: #7A0004;
    box-shadow: 0 18px 36px rgba(165, 0, 5, 0.45), 0 4px 8px rgba(0,0,0,0.15);
}
.float-contact-bubble:hover::after {
    background: #7A0004;
}
.float-contact-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 12px;
    line-height: 1;
}
@media (min-width: 768px) {
    .float-contact {
        right: 28px;
        bottom: 28px;
    }
    .float-contact-bubble {
        padding: 16px 26px;
        font-size: 14px;
    }
}

/* Avoid covering hamburger / mobile nav button area */
@media (max-width: 767px) {
    .float-contact {
        right: 12px;
        bottom: 16px;
    }
    .float-contact-bubble {
        padding: 12px 18px;
        font-size: 12px;
    }
}


/* Pre-footer CTA — FOR INDIVIDUALS / FOR BUSINESSES split panels */
.prefooter-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}
.pfc-col {
    display: block !important;
    text-decoration: none;
    color: inherit;
    padding: 100px 80px 90px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: background-color .3s ease;
}
.pfc-individual {
    background: #F6F4EF;
    color: #0A0A0A;
}
.pfc-individual:hover {
    background: #EDE9DF;
}
.pfc-business {
    background: #A50005;
    color: #fff;
}
.pfc-business:hover {
    background: #7A0004;
}
.pfc-inner {
    max-width: 540px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.pfc-kicker {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin: 0 0 32px;
    opacity: 0.85;
}
.pfc-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0 0 36px;
}
.pfc-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.95;
    margin: 0 0 32px;
    opacity: 0.9;
}
.pfc-divider {
    height: 1px;
    background: currentColor;
    opacity: 0.18;
    margin: 0 0 28px;
}
.pfc-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
}
.pfc-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 14px;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}
.pfc-col:hover .pfc-arrow {
    transform: translateX(6px);
    background: currentColor;
}
.pfc-individual:hover .pfc-arrow { color: #F6F4EF; }
.pfc-business:hover .pfc-arrow { color: #7A0004; }

@media screen and (max-width: 900px) {
    .pfc-col { padding: 72px 48px 64px; }
    .pfc-title { font-size: 48px; }
}
@media screen and (max-width: 600px) {
    .prefooter-cta { grid-template-columns: 1fr; }
    .pfc-col { padding: 56px 6% 56px; }
    .pfc-title { font-size: 52px; margin-bottom: 28px; }
    .pfc-kicker { font-size: 13px; margin-bottom: 22px; }
    .pfc-desc { font-size: 14px; margin-bottom: 26px; }
    .pfc-link { font-size: 14px; }
    .pfc-arrow { width: 36px; height: 36px; font-size: 14px; }
}


/* Pre-footer CTA — 3 services left, CONTACT US right */
.prefooter-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}
.pfc-col {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 88px 80px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: background-color .3s ease;
}
.pfc-services {
    background: #F6F4EF;
    color: #0A0A0A;
}
.pfc-business {
    background: #A50005;
    color: #fff;
}
.pfc-business:hover {
    background: #7A0004;
}
.pfc-inner {
    max-width: 540px;
    margin: 0 auto;
}
.pfc-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(56px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0 0 32px;
}
.pfc-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    line-height: 1.95;
    margin: 0 0 36px;
    opacity: 0.9;
}
.pfc-divider {
    height: 1px;
    background: currentColor;
    opacity: 0.18;
    margin: 0 0 28px;
    position: relative;
    overflow: hidden;
}
.pfc-business .pfc-divider { opacity: 0.35; }
.pfc-business .pfc-divider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateX(-101%);
    transition: transform .55s cubic-bezier(.7,0,.2,1);
}
.pfc-business:hover .pfc-divider { opacity: 1; }
.pfc-business:hover .pfc-divider::after { transform: translateX(0); }
.pfc-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
}
.pfc-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 16px;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}
.pfc-business:hover .pfc-arrow {
    transform: translateX(6px);
    background: #fff;
    color: #A50005;
}
.pfc-svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(10,10,10,0.12);
}
.pfc-svc-list li {
    border-bottom: 1px solid rgba(10,10,10,0.12);
}
.pfc-svc-list a {
    display: grid;
    grid-template-columns: 36px 1fr auto 32px;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    color: #0A0A0A;
    text-decoration: none;
    transition: padding .25s ease, color .25s ease;
}
.pfc-svc-list a:hover {
    padding-left: 6px;
    padding-right: 6px;
    color: #A50005;
}
.pfc-svc-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: #A50005;
}
.pfc-svc-en {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.01em;
    line-height: 1;
}
.pfc-svc-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-align: right;
}
.pfc-svc-arrow {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #0A0A0A;
    transition: transform .25s ease;
}
.pfc-svc-list a:hover .pfc-svc-arrow {
    transform: translateX(6px);
    color: #A50005;
}

@media screen and (max-width: 900px) {
    .pfc-col { padding: 64px 48px; }
}
@media screen and (max-width: 700px) {
    .prefooter-cta { grid-template-columns: 1fr; }
    .pfc-col { padding: 56px 6%; }
    .pfc-title { font-size: 48px; margin-bottom: 24px; }
    .pfc-desc { font-size: 13px; margin-bottom: 28px; }
    .pfc-svc-list a { grid-template-columns: 30px 1fr 24px; }
    .pfc-svc-jp { display: none; }
    .pfc-svc-en { font-size: 18px; }
    .pfc-link { font-size: 14px; }
    .pfc-arrow { width: 36px; height: 36px; font-size: 14px; }
}


/* Footer plusart mark — replaces the old big "CONTACT" link */
.common-contact-link.footer-plusart-mark a {
    display: inline-block !important;
    line-height: 0;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    transition: opacity .25s ease, transform .25s ease;
}
.common-contact-link.footer-plusart-mark a::before,
.common-contact-link.footer-plusart-mark a::after { display: none !important; }
.common-contact-link.footer-plusart-mark img {
    height: 56px;
    width: auto;
    display: block;
}
.common-contact-link.footer-plusart-mark a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}
