/*
Theme Name: Chikara Theme
Theme URI: https://chikara-5.com
Author: Chikara
Author URI: https://chikara-5.com
Description: 一般社団法人チカラの公式テーマ
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chikara
*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --navy: #1e3a5f;
  --navy-deep: #152d4a;
  --gold: #c9a84c;
  --gold-light: #ddc06a;
  --gold-pale: rgba(201, 168, 76, 0.08);
  --ivory: #faf8f4;
  --warm-white: #f5f2ec;
  --text: #2a2a2a;
  --text-light: #777;
  --border: rgba(201, 168, 76, 0.2);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── Utility ── */
.con {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.stagger-5 {
  transition-delay: 0.5s;
}

/* ── Header ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30, 58, 95, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.4s ease;
}
header.scrolled {
  background: rgba(30, 58, 95, 0.95);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1300px;
  margin: 0 auto;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo svg {
  height: 44px;
  width: auto;
}
.logo img {
  height: 44px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo-text strong {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 8px;
  color: #fff;
  line-height: 1.2;
}
.logo-text small {
  font-family: "Outfit", sans-serif;
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(201, 168, 76, 0.7);
  font-weight: 300;
}
.logo strong {
  font-weight: 600;
  font-size: 15px;
  display: block;
  letter-spacing: 10px;
}

/* Nav / WP Menu */
nav ul,
nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.desktop-nav ul {
  display: flex;
  gap: 35px;
  align-items: center;
}
nav a,
nav .menu-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  position: relative;
}
nav a::after,
nav .menu-item a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
nav a:hover,
nav .menu-item a:hover {
  color: #fff;
}
nav a:hover::after,
nav .menu-item a:hover::after {
  width: 100%;
}
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0;
  font-weight: 500;
}
.nav-cta a {
  color: var(--gold) !important;
  display: block;
  padding: 8px 24px;
}
.nav-cta:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}
.nav-cta::after,
.nav-cta a::after {
  display: none !important;
}
.mobile-nav .nav-cta {
  border: none;
  padding: 0;
}
/* ── Search Trigger ── */
.search-trigger {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.search-trigger:hover {
  color: var(--gold);
}
.search-trigger svg {
  display: block;
}

/* ── Search Overlay ── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(21, 45, 74, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}
.search-overlay-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}
.search-overlay-close:hover {
  color: var(--gold);
}
.search-overlay-inner {
  width: 100%;
  max-width: 600px;
  padding: 0 40px;
  text-align: center;
}
.search-overlay-label {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* ── Search Form ── */
.search-form-inner {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 5px;
}
.search-field {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  padding: 10px 0;
}
.search-field::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-size: 16px;
  letter-spacing: 0.1em;
}
.search-submit {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  padding: 10px;
  transition: opacity 0.3s;
}
.search-submit:hover {
  opacity: 0.7;
}
.search-submit svg {
  display: block;
}

/* Page content search form (404 etc) */
.page-content .search-form-inner {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
.page-content .search-field {
  color: var(--text);
  font-size: 16px;
}
.page-content .search-field::placeholder {
  color: var(--text-light);
}
.page-content .search-submit {
  color: var(--navy);
}

/* ── Hamburger Menu ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--navy-deep);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-left: 1px solid rgba(201, 168, 76, 0.15);
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transition: all 0.3s;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav li {
  margin-bottom: 0;
}
.mobile-nav li a {
  display: block;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: all 0.3s;
}
.mobile-nav li a::after {
  display: none;
}
.mobile-nav li a:hover {
  color: #fff;
  padding-left: 10px;
}
.mobile-nav li:last-child a {
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  text-align: center;
  margin-top: 20px;
  padding: 14px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
}
.mobile-nav li:last-child a:hover {
  background: rgba(201, 168, 76, 0.1);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 80%,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 60%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
}
.hero-label {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 8px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.5s forwards;
}
.hero h2 {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(28px, 5vw, 52px);
  color: #fff;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 1s 0.7s forwards;
}
.hero h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 2;
  opacity: 0;
  animation: fadeSlideUp 1s 0.9s forwards;
}
.hero-cta {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 18px 60px;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  animation: fadeSlideUp 1s 1.1s forwards;
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-cta:hover {
  color: var(--navy);
}
.hero-cta:hover::before {
  transform: scaleX(1);
}
.hero-cta span {
  position: relative;
  z-index: 1;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeSlideUpCenter 1s 1.5s forwards;
}
@keyframes fadeSlideUpCenter {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(rgba(201, 168, 76, 0.5), transparent);
  margin: 10px auto 0;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(0.6);
  }
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Section Common ── */
section {
  padding: 120px 0;
}
.page section {
  padding: 0;
}
.section-label {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--navy);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.section-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 60px;
}

/* ── Limited Access ── */
.limited {
  background: #1a3452;
  padding: 100px 0;
}
.archive-cat-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.archive-cat-btn {
  display: inline-block;
  padding: 8px 22px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.3s;
}
.archive-cat-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.archive-cat-btn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.limited-inner {
  max-width: 850px;
  margin: 0 auto;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(201, 168, 76, 0.03);
  padding: 50px;
}
.limited-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.limited-badge {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.limited-badge::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.limited-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  text-decoration: none;
  color: #fff;
  transition: all 0.4s;
}
.limited-item:last-child {
  border-bottom: none;
}
.limited-item:hover {
  padding-left: 10px;
}
.limited-date {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  min-width: 70px;
}
.limited-tag {
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 2px;
  white-space: nowrap;
  font-weight: 500;
}
.cat-label {
  padding: 0 10px;
}
.tag-alert {
  background: rgba(178, 34, 34, 0.8);
  color: #fff;
}
.tag-offer {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.tag-new {
  background: rgba(34, 139, 34, 0.7);
  color: #fff;
}
.tag-info {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.limited-item strong {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  flex: 1;
}
.limited-item .arrow {
  color: var(--gold);
  opacity: 0.4;
  transition: opacity 0.3s;
  font-size: 11px;
  white-space: nowrap;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}
.limited-item:hover .arrow {
  opacity: 1;
}
.limited-more {
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.limited-more a {
  display: inline-block;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  padding: 10px 40px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.limited-more a:hover {
  background: rgba(201, 168, 76, 0.15);
}

/* ── Seminar ── */
.seminar {
  background: var(--warm-white);
  padding: 100px 0;
}
.sem-grid {
  position: relative;
}
.sem-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sem-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}
.sem-header {
  background: var(--navy);
  padding: 20px 25px;
  position: relative;
}
.sem-date {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.sem-header h4 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.6;
}
.sem-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: "Outfit", sans-serif;
  font-size: 8px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 2px;
  font-weight: 500;
}
.sem-tag-open {
  background: rgba(34, 139, 34, 0.7);
  color: #fff;
}
.sem-tag-soon {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.sem-tag-full {
  background: rgba(178, 34, 34, 0.8);
  color: #fff;
}
.sem-tag-ended {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sem-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sem-btn {
  margin-top: auto;
}
.sem-body p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 2;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
}
.sem-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.sem-info-item {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sem-info-item span {
  color: var(--gold);
  font-size: 13px;
}
.sem-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  transition: all 0.4s;
}
.sem-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* Seminar archive grid */
.sem-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.sem-archive-grid--col2 {
  grid-template-columns: repeat(2, 1fr);
}
.sem-archive-grid--col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .sem-archive-grid,
  .sem-archive-grid--col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .sem-archive-grid,
  .sem-archive-grid--col3,
  .sem-archive-grid--col2 {
    grid-template-columns: 1fr;
  }
}

/* ── Swiper Overrides ── */
.swiper {
  overflow: hidden;
}
.swiper-slide {
  height: auto;
}
.swiper-slide .sem-card {
  height: 100%;
}
.sem-grid .swiper-button-prev,
.sem-grid .swiper-button-next {
  color: var(--gold);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}
.sem-grid .swiper-button-prev::after,
.sem-grid .swiper-button-next::after {
  font-size: 14px;
}
.sem-grid .swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.3;
  width: 8px;
  height: 8px;
}
.sem-grid .swiper-pagination-bullet-active {
  opacity: 1;
}
.sem-grid .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

/* ── Detail Sections ── */
.detail-section {
  background: var(--ivory);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.detail-header {
  margin-bottom: 50px;
}
.detail-header p {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  line-height: 2;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.detail-stat {
  background: #fff;
  padding: 35px 25px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
}
.detail-stat .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.detail-stat .label {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.detail-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 50px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.detail-compare-col {
  padding: 35px 30px;
  background: #fff;
}
.detail-compare-col:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.detail-compare-col h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.compare-bad h4 {
  color: #b22222;
}
.compare-good h4 {
  color: var(--gold);
}
.detail-compare-col p {
  font-size: 13px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 12px;
}
.detail-compare-col .highlight {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  margin: 15px 0;
}
.compare-bad .highlight {
  color: #b22222;
}
.compare-good .highlight {
  color: #2a7d2a;
}
.detail-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.detail-step {
  background: #fff;
  padding: 20px 25px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  min-width: 140px;
}
.detail-step .step-num {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 6px;
}
.detail-step .step-text {
  font-size: 13px;
  letter-spacing: 0.03em;
}
.detail-flow-arrow {
  color: var(--gold);
  font-size: 18px;
  opacity: 0.4;
}
.detail-note {
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.03em;
}
.detail-cta {
  text-align: center;
  margin-top: 50px;
}
.detail-cta a {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 18px 60px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: all 0.4s;
}
.detail-cta a:hover {
  background: var(--navy);
}
.detail-gate {
  position: relative;
  margin-top: 50px;
}
.detail-gate-content {
  filter: blur(6px);
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
}
.detail-gate-wall {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(250, 248, 244, 0) 0%,
    rgba(250, 248, 244, 0.95) 30%,
    rgba(250, 248, 244, 1) 60%
  );
  padding: 60px 20px;
}
.detail-gate-wall .gate-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--gold);
}
.detail-gate-wall h4 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 10px;
}
.detail-gate-wall p {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 25px;
  line-height: 1.8;
}
.detail-gate-wall a {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 14px 50px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: all 0.4s;
}
.detail-gate-wall a:hover {
  background: var(--navy);
}
@media (max-width: 600px) {
  .detail-compare {
    grid-template-columns: 1fr;
  }
  .detail-compare-col:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
}

/* ── Challenges ── */
.challenges {
  background: var(--warm-white);
}
.c-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.c-card {
  background: #fff;
  padding: 45px 35px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  cursor: default;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.c-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-card:hover::before {
  transform: scaleX(0);
}
.c-card:hover {
  background: #fff;
  cursor: default;
}
.c-icon {
  font-size: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--gold-pale);
}
.c-card-text {
  flex: 1;
}
.c-card h4 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  color: var(--navy);
}
.c-card p {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  line-height: 2;
}
@media (max-width: 600px) {
  .c-grid {
    grid-template-columns: 1fr;
  }
  .c-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.manifesto {
  border: 1px solid var(--border);
  padding: 60px;
  text-align: center;
  background: #fff;
  position: relative;
}
.manifesto::before,
.manifesto::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold);
}
.manifesto::before {
  top: 15px;
  left: 15px;
  border-top: 1px solid;
  border-left: 1px solid;
}
.manifesto::after {
  bottom: 15px;
  right: 15px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}
.manifesto h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 15px;
}
.manifesto p {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

/* ── Advisory (Marquee) ── */
/* Advisory Swiper */
.adv-swiper-wrap {
  position: relative;
  padding: 10px 0 70px;
}
.adv-swiper-wrap .swiper-slide {
  height: auto;
}
.adv-swiper-wrap .adv-card-rich {
  height: 100%;
}
.adv-swiper-wrap .swiper-button-prev,
.adv-swiper-wrap .swiper-button-next {
  color: var(--gold);
}
.adv-swiper-wrap .swiper-pagination {
  position: relative;
  margin-top: 25px;
}
.adv-swiper-wrap .swiper-pagination-bullet-active {
  background: var(--gold);
}
.adv-card {
  min-width: 300px;
  flex-shrink: 0;
  background: #fff;
  padding: 40px 30px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}
.adv-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.adv-card:hover::after {
  transform: translateX(0);
}
.adv-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.adv-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  margin-bottom: 20px;
}
.adv-card b {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.adv-card p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 2;
  letter-spacing: 0.03em;
}

/* ── Members ── */
.members {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.members::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(201, 168, 76, 0.03) 0%,
      transparent 50%
    );
}
.members .section-title {
  color: #fff;
}
.member-group-photo {
  margin: 0 auto 90px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
  max-width: 100%;
}
.member-group-photo img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
.m-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.m-card {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: all 0.5s;
  overflow: hidden;
}
.m-card:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.25);
}
.m-photo {
  width: 33.333%;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 220px;
}
.m-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m-photo-placeholder {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(201, 168, 76, 0.3);
  text-transform: uppercase;
}
.m-body {
  flex: 1;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.m-role {
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.m-card .m-name {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.m-card .m-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  line-height: 1.8;
}
.m-detail {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: 20px;
  display: block;
}
.m-detail h5 {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}
.m-detail p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2;
  margin-bottom: 18px;
}
.m-toggle {
  display: none;
}
@media (max-width: 700px) {
  .m-card {
    flex-direction: column;
  }
  .m-photo {
    width: 100%;
    min-height: 200px;
  }
  .m-body {
    padding: 30px 25px;
  }
  .m-detail {
    display: none;
  }
  .m-card.open .m-detail {
    display: block;
  }
  .m-toggle {
    display: inline-block;
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    padding: 8px 24px;
    font-size: 11px;
    letter-spacing: 3px;
    cursor: pointer;
    font-family: "Noto Serif JP", serif;
    transition: all 0.3s;
    align-self: flex-start;
    margin-bottom: 20px;
  }
  .m-toggle:hover {
    background: rgba(201, 168, 76, 0.1);
  }
}

/* ── Chairman Message ── */
.chairman {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.chairman-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  max-width: 1000px;
  margin: 0 auto;
}
.chairman-photo {
  width: 38%;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}
.chairman-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chairman-photo-placeholder {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(201, 168, 76, 0.3);
  text-transform: uppercase;
}
.chairman-body {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.chairman-body .msg-role {
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.chairman-body .msg-name {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.chairman-body .msg-text {
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.03em;
  line-height: 2.2;
  margin-bottom: 15px;
}
.chairman-body .msg-text:last-of-type {
  margin-bottom: 30px;
}
.chairman-body .msg-sign {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
}
@media (max-width: 700px) {
  .chairman-inner {
    flex-direction: column;
  }
  .chairman-photo {
    width: 100%;
    min-height: 300px;
  }
  .chairman-body {
    padding: 40px 25px;
  }
}

/* ── About ── */
.about-table {
  max-width: 700px;
  margin: 0 auto;
}
.about-row {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.about-row dt {
  width: 140px;
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-light);
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  padding-top: 2px;
}
.about-row dd {
  font-size: 14px;
  letter-spacing: 0.03em;
}

/* ── Contact ── */
.contact {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 50%
  );
}
.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact .section-title {
  color: #fff;
}
.contact input,
.contact textarea {
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
  outline: none;
  transition: border-color 0.3s;
}
.contact input::placeholder,
.contact textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.contact input:focus,
.contact textarea:focus {
  border-bottom-color: var(--gold);
}
.contact textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-btn {
  width: 100%;
  padding: 18px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.contact-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-btn:hover {
  color: var(--navy);
}
.contact-btn:hover::before {
  transform: scaleX(1);
}
.contact-btn span {
  position: relative;
  z-index: 1;
}

/* ── Footer ── */
footer {
  background: var(--navy-deep);
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav ul li a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer-nav ul li a:hover {
  color: var(--gold);
}
.footer-sns {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-sns a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.footer-sns a:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.4);
}
.footer-sns svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer-copy {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-sns {
    justify-content: center;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .header-inner {
    padding: 14px 20px;
  }
  nav.desktop-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .c-grid {
    grid-template-columns: 1fr 1fr;
  }
  .con {
    padding: 0 20px;
  }
  section {
    padding: 80px 0;
  }
  .limited-inner {
    padding: 30px;
  }
  .manifesto {
    padding: 40px 25px;
  }
}
@media (max-width: 600px) {
  .c-grid {
    grid-template-columns: 1fr;
  }
  .hero h2 {
    font-size: 24px;
  }
  .about-row {
    flex-direction: column;
  }
  .about-row dt {
    margin-bottom: 5px;
    width: auto;
  }
}

/* ── Book List ── */
.book_list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 10px !important;
  margin: 0;
}
.book_list li {
  padding: 18px 0 18px 20px;
  margin-left: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.book_list li:last-child {
  border-bottom: none;
}
.book_list li::before {
  content: "◇";
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--gold);
  font-size: 13px;
}
.book_list li small {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ── WordPress Specific ── */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}
.alignleft {
  float: left;
  margin-right: 20px;
}
.alignright {
  float: right;
  margin-left: 20px;
}
.aligncenter {
  display: block;
  margin: 0 auto;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* ── Single / Archive Pages ── */
.page-header {
  background: var(--navy-deep);
  padding: 160px 0 80px;
  text-align: center;
}
.page-header h1 {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(24px, 4vw, 40px);
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.page-header .breadcrumb {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
}
.page-header .breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}
.page-header .breadcrumb a:hover {
  text-decoration: underline;
}
.page-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 40px;
}
.page-content section {
  padding: 0;
}
.page-content h1,
.page-content h2,
.page-content h3 {
  color: var(--navy);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.page-content p {
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.page-content ul {
  list-style-position: outside;
  padding-left: 20px;
  margin-left: 10px;
}
.page-content h2 {
  padding-bottom: 12px;
  border: none;
  background-image: linear-gradient(to right, var(--gold) 30%, var(--navy) 30%);
  background-size: 100% 3px;
  background-position: bottom left;
  background-repeat: no-repeat;
}
.page-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 40px;
}
.archive-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.5s;
  text-decoration: none;
  color: var(--text);
}
.archive-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}
.archive-card-body {
  padding: 25px;
}
.archive-card-body .cat-label {
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 2px;
  white-space: nowrap;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}
.archive-card-body h3 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 10px;
}
.archive-card-body .date {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-light);
}
.archive-card-body .arrow-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s;
}
.archive-card-body .arrow-link:hover {
  opacity: 0.7;
}
.back-link {
  display: inline-block;
  margin-top: 40px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  border: 1px solid var(--gold);
  padding: 12px 40px;
  transition: all 0.4s;
}
.back-link:hover {
  background: var(--gold);
  color: #fff;
}

/* Seminar single */
.seminar-single-header {
  background: var(--navy);
  padding: 25px 30px;
  margin-bottom: 30px;
}
.seminar-single-header .sem-date {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
}
.seminar-single-header h1 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.6;
}
.seminar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.seminar-meta-item {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.seminar-meta-item span {
  color: var(--gold);
  font-size: 15px;
}
.seminar-apply-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 16px 50px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: all 0.4s;
  margin-top: 30px;
}
.seminar-apply-btn:hover {
  background: var(--navy);
}

/* ── Advisory Rich Card (Marquee + Grid) ── */
.adv-card-rich {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
}
.adv-card-rich:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.adv-card-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e8e8e8;
}
.adv-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.adv-card-photo-placeholder {
  width: 100%;
  height: 100%;
  background: #d5d5d5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
.adv-card-body {
  padding: 25px 25px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.adv-card-body .adv-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  margin-bottom: 10px;
}
.adv-field {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}
.adv-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.6;
}
.adv-catch {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.adv-desc {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
  flex: 1;
}
.adv-link {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 24px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  transition: all 0.4s;
  align-self: flex-start;
}
.adv-link:hover {
  background: var(--gold);
  color: #fff;
}

/* ── Five Powers ── */
.five-powers {
  background: #fff;
  padding: 100px 0;
}
.five-powers .section-label,
.five-powers .section-title,
.five-powers-sub,
.five-powers-grid {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
.five-powers-sub {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.five-powers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.five-powers-card {
  text-align: center;
  padding: 30px 15px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #faf8f4;
  transition: all 0.3s;
}
.five-powers-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}
.five-powers-card.is-active {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.five-powers-card.is-active .five-powers-label {
  color: var(--gold);
}
.power-empty-msg {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 40px 0;
}
.five-powers-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.15),
    inset 0 -4px 8px rgba(0, 0, 0, 0.35),
    inset 0 4px 8px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.five-powers-icon::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 55%;
  height: 45%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 80%);
  pointer-events: none;
  z-index: 1;
}
.five-powers-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 120%, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.five-powers-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 4px;
}
.five-powers-en {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-light);
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .five-powers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .five-powers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Power Badge on Cards ── */
.power-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow:
    0 3px 10px rgba(0, 0, 0, 0.3),
    0 1px 2px rgba(0, 0, 0, 0.15),
    inset 0 -3px 6px rgba(0, 0, 0, 0.35),
    inset 0 3px 6px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.power-badge::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  width: 55%;
  height: 45%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 80%);
  pointer-events: none;
  z-index: 1;
}
.power-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 120%, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.adv-card-rich {
  position: relative;
}
.power-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.power-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* Advisory rank variants */
.adv-card--advisory {
  border-top: 3px solid var(--gold);
}
.adv-card--advisory .adv-num {
  color: rgba(201, 168, 76, 0.3);
}
.adv-card--advisory .adv-field {
  color: var(--gold);
}

.adv-card--alliance {
  border-top: 3px solid var(--navy);
}
.adv-card--alliance .adv-num {
  color: rgba(30, 58, 95, 0.15);
}
.adv-card--alliance .adv-field {
  color: var(--navy);
}

/* Advisory detail link button */
.adv-detail-link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 24px;
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  transition: all 0.4s;
}
.adv-detail-link:hover {
  background: var(--gold);
  color: #fff;
}
.adv-card--alliance .adv-detail-link {
  color: var(--navy);
  border-color: var(--navy);
}
.adv-card--alliance .adv-detail-link:hover {
  background: var(--navy);
  color: #fff;
}

/* Alliance Partner scroll wrap */
.adv-scroll-wrap--alliance .adv-card-photo-placeholder {
  background: #b8c4d0;
}

/* Advisory archive grid */
.adv-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.adv-card-rich--grid {
  min-width: 0;
}
.adv-archive-grid--col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .adv-archive-grid--col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .adv-archive-grid,
  .adv-archive-grid--col3 {
    grid-template-columns: 1fr;
  }
}

/* Advisory single profile */
.adv-single-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 40px;
  padding-top: 40px;
}
.adv-single-photo {
  overflow: hidden;
}
.adv-single-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.adv-single-photo-placeholder {
  width: 100%;
  height: 400px;
  background: #d5d5d5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
.adv-single-info {
  padding-top: 10px;
}
.adv-single-rank {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.adv-single-rank--alliance {
  color: var(--navy);
}
.adv-single-name {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.4;
}
.adv-single-title-role {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.adv-single-specialty {
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.adv-single-specialty .typing-text {
  display: inline;
}
.adv-single-specialty .typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--gold);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink-caret 0.6s step-end infinite;
}
.adv-single-specialty::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  width: 0;
  transition: none;
}
.adv-single-specialty.typed .typing-cursor {
  display: none;
}
.adv-single-specialty.typed::after {
  animation: underline-expand 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes blink-caret {
  from, to { opacity: 0; }
  50% { opacity: 1; }
}
@keyframes underline-expand {
  from { width: 0; }
  to { width: 100%; }
}
.adv-single-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 2;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}
.adv-single-links {
  margin-bottom: 50px;
}
.adv-single-links-heading {
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold);
}
.adv-single-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid var(--gold);
  text-decoration: none;
  color: var(--text);
  margin-bottom: 10px;
  transition: all 0.3s;
  background: transparent;
}
.adv-single-link-card:last-child {
  margin-bottom: 0;
}
.adv-single-link-card:hover {
  background: var(--gold-pale);
  border-color: var(--gold-light);
}
.adv-single-link-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.adv-single-link-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.adv-single-link-sub {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.03em;
}
.adv-single-link-arrow {
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 15px;
}
.adv-single-content {
  margin-bottom: 60px;
}
@media (max-width: 700px) {
  .adv-single-profile {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Archive pagination (navy bg) */
.archive-pagination {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.archive-pagination .nav-links a,
.archive-pagination .nav-links span {
  display: inline-block;
  padding: 8px 16px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s;
}
.archive-pagination .nav-links a {
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.archive-pagination .nav-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.archive-pagination .nav-links .current {
  color: var(--gold);
  border: 1px solid var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

/* ── MW WP Form Overrides ── */
.contact .mw_wp_form input[type="text"],
.contact .mw_wp_form input[type="email"],
.contact .mw_wp_form input[type="tel"] {
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
  outline: none;
  transition: border-color 0.3s;
}
.contact .mw_wp_form input[type="text"]::placeholder,
.contact .mw_wp_form input[type="email"]::placeholder,
.contact .mw_wp_form input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.contact .mw_wp_form input[type="text"]:focus,
.contact .mw_wp_form input[type="email"]:focus,
.contact .mw_wp_form input[type="tel"]:focus {
  border-bottom-color: var(--gold);
}
.contact .mw_wp_form input:-webkit-autofill,
.contact .mw_wp_form input:-webkit-autofill:hover,
.contact .mw_wp_form input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--navy-deep) inset !important;
  -webkit-text-fill-color: #fff !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4) !important;
  transition: background-color 5000s ease-in-out 0s;
}
.contact .mw_wp_form textarea {
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
  outline: none;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.3s;
}
.contact .mw_wp_form textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.contact .mw_wp_form textarea:focus {
  border-bottom-color: var(--gold);
}
.contact .mw_wp_form .contact-checks-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  display: block;
}
.contact .mw_wp_form .contact-checks-label:first-child {
  margin-top: 0;
}
.contact .mw_wp_form p {
  margin-bottom: 0;
}
.contact .mw_wp_form .contact-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 30px;
}
section.contact .mw_wp_form .contact-checks br {
  display: none !important;
}
section.contact
  .mw_wp_form
  .contact-checks
  .mwform-checkbox-field.horizontal-item {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
}
section.contact .mw_wp_form .contact-checks .mwform-checkbox-field label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 15px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.3s;
  font-weight: normal;
  margin: 0;
}
section.contact .mw_wp_form .contact-checks .mwform-checkbox-field label:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.05);
}
section.contact .mw_wp_form .contact-checks input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  background: none !important;
  cursor: pointer;
  flex-shrink: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  margin: 0 !important;
  border-radius: 0 !important;
}
section.contact .mw_wp_form .contact-checks input[type="checkbox"]:checked {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
section.contact
  .mw_wp_form
  .contact-checks
  input[type="checkbox"]:checked::after {
  content: "\2713";
  color: var(--navy);
  font-size: 12px;
  font-weight: bold;
}
section.contact .mw_wp_form .contact-checks .mwform-checkbox-field-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .contact .mw_wp_form .contact-checks {
    grid-template-columns: 1fr;
  }
}
.contact .mw_wp_form input[type="submit"] {
  width: 100%;
  padding: 18px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}
.contact .mw_wp_form input[type="submit"]:hover {
  background: var(--gold);
  color: var(--navy);
}
/* Back button */
.contact .mw_wp_form input[name="submitBack"],
.contact .mw_wp_form input[type="submit"][name="back"] {
  width: 100% !important;
  padding: 18px !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 5px !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0;
}
.contact .mw_wp_form input[name="submitBack"]:hover,
.contact .mw_wp_form input[type="submit"][name="back"]:hover {
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
  background: transparent !important;
}
/* Autofill override */
.contact .mw_wp_form input:-webkit-autofill,
.contact .mw_wp_form input:-webkit-autofill:hover,
.contact .mw_wp_form input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--navy-deep) inset !important;
  -webkit-text-fill-color: #fff !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4) !important;
  transition: background-color 5000s ease-in-out 0s;
}
/* Confirm screen spacing */
.contact .mw_wp_form .mw_wp_form_confirm .contact-checks-label,
.contact .mw_wp_form.mw_wp_form_confirm .contact-checks-label,
.contact .mw_wp_form_confirm .contact-checks-label,
.contact .mw_wp_form[data-style="confirm"] .contact-checks-label {
  margin-top: 25px !important;
  margin-bottom: 8px !important;
}
.contact .mw_wp_form .mw_wp_form_confirm .contact-checks-label:first-child,
.contact .mw_wp_form.mw_wp_form_confirm .contact-checks-label:first-child,
.contact .mw_wp_form .mw_wp_form_confirm .contact-checks,
.contact .mw_wp_form.mw_wp_form_confirm .contact-checks,
.contact .mw_wp_form_confirm .contact-checks {
  margin-bottom: 15px !important;
}

/* ── WP Admin Bar → Bottom ── */
#wpadminbar {
  top: auto !important;
  bottom: 0 !important;
  position: fixed !important;
}
html {
  margin-top: 0 !important;
}
body.admin-bar {
  padding-bottom: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar {
    padding-bottom: 46px;
  }
}
