/*
Theme Name: Takehiro Theme
Author: Takehiro
Version: 1.1
*/

/* =========================
   Base
========================= */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   Header / Navigation
========================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 28px 40px;
  box-sizing: border-box;
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  padding: 16px 40px;
  background: rgba(10, 10, 10, 0.52);
}

.header-container,
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.logo {
  margin: 0;
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1;
}

.logo a {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.logo-main {
  font-size: 1em;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
}

.logo-sub {
  margin-top: 0;
  font-size: 0.62em;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #e60012;
}

.nav,
.nav-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav li,
.nav-menu li {
  flex: 0 0 auto;
}

.nav a,
.nav-menu a {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav a::after,
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #e10600;
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav-menu a:hover::after,
.nav .current-menu-item > a::after,
.nav .current_page_item > a::after,
.nav .current-menu-parent > a::after,
.nav .current-menu-ancestor > a::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after,
.nav-menu .current-menu-parent > a::after,
.nav-menu .current-menu-ancestor > a::after {
  width: 100%;
}

/* =========================
   Common Parts
========================= */
.hero-label,
.section-label {
  color: #e60012;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 800;
}

.button,
.stripe-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 30px;
  border: 1px solid #e10600;
  background: transparent;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s;
}

.button:hover,
.stripe-button:hover {
  background: #e10600;
  color: #fff;
  transform: translateY(-2px);
}

.section {
  padding: 110px 40px;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.section h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: 4px;
  margin: 16px 0 28px;
}

.section p {
  line-height: 1.9;
  color: #ddd;
  font-weight: 500;
}

.section-button {
  text-align: center;
  margin-top: 48px;
}

.dark-section {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.cta-section {
  text-align: center;
}

/* =========================
   Front Page / Hero
========================= */
.front-page {
  background: #0a0a0a;
}

.hero {
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 40px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.18) 100%);
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 18s infinite;
}

.slide2 { animation-delay: 6s; }
.slide3 { animation-delay: 12s; }

@keyframes heroSlide {
  0% { opacity: 0; transform: scale(1); }
  8% { opacity: 1; }
  30% { opacity: 1; transform: scale(1.05); }
  38% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
}

.hero h2 {
  margin: 32px 0 24px;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 5px;
}

.hero-text {
  max-width: 620px;
  line-height: 1.9;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero-sns {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 20px 0 40px;
  background: #0a0a0a;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.hero-sns a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s;
}

.hero-sns a:hover {
  color: #e10600;
  border-color: #e10600;
  transform: translateY(-3px);
}

/* =========================
   Profile Blocks
========================= */
.profile-section {
  border-top: 1px solid #222;
}

.profile-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.profile-image {
  flex: 0 0 42%;
}

.profile-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.profile-text {
  max-width: 520px;
}

/* =========================
   News Cards / Horizontal Slider
========================= */
.news-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  margin-top: 32px;
  -webkit-overflow-scrolling: touch;
}

.news-card {
  flex: 0 0 340px;
  min-height: 360px;
  display: block;
  background: #151515;
  padding: 28px;
  border: 1px solid #222;
  box-sizing: border-box;
  scroll-snap-align: start;
  transition: 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: #e10600;
}

.news-card a {
  display: block;
  height: 100%;
  color: #fff;
  text-decoration: none;
}

.news-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 18px;
  display: block;
}

.news-placeholder {
  height: 200px;
  margin-bottom: 18px;
  border: 1px solid #333;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  letter-spacing: 2px;
  font-size: 12px;
}

.news-date {
  color: #999;
  font-size: 13px;
  font-weight: 700;
}

.news-card h3 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.5;
}

.news-grid::-webkit-scrollbar {
  height: 8px;
}

.news-grid::-webkit-scrollbar-track {
  background: #111;
}

.news-grid::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 999px;
}

.news-grid::-webkit-scrollbar-thumb:hover {
  background: #e10600;
}

/* =========================
   News Page by Category
========================= */
.news-archive-section {
  max-width: 1100px;
}

.news-category-section {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid #222;
}

.news-category-heading h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 4px;
  margin: 12px 0 28px;
}

.news-category-name {
  display: inline-block;
  margin: 0 0 8px;
  color: #e10600 !important;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
}

.news-empty {
  color: #777;
  letter-spacing: 1px;
}

/* =========================
   Category Archive List
   /category/daily/ etc.
========================= */
.category-news-section {
  max-width: 1000px;
}

.category-news-list {
  margin-top: 48px;
  display: grid;
  gap: 36px;
}

.category-news-item {
  display: block;
  background: #111;
  border: 1px solid #222;
  border-left: 5px solid #e10600;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.category-news-item:hover {
  transform: translateY(-6px);
  border-color: #e10600;
  box-shadow: 0 12px 28px rgba(0,0,0,0.6);
}

.category-news-item a {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 28px;
  color: #fff;
  text-decoration: none;
}

.category-news-thumb img,
.category-news-thumb .news-placeholder {
  width: 220px;
  height: 145px;
  object-fit: cover;
  margin: 0;
  border: 1px solid #222;
  box-sizing: border-box;
}

.category-news-text .news-date {
  color: #888;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.category-news-text h2 {
  margin: 8px 0 12px;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 1px;
}

.category-news-text p {
  margin: 0;
  color: #aaa;
  font-size: 15px;
  line-height: 1.8;
}

/* =========================
   Page / Single Common
========================= */
.page-main,
.single-page {
  padding: 180px 40px 100px;
  background: #0a0a0a;
  min-height: 70vh;
}

.page-section,
.single-article {
  max-width: 900px;
  margin: 0 auto;
}

.page-section h1,
.single-article h1 {
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: 4px;
}

.page-content,
.single-content {
  margin-top: 40px;
  line-height: 2;
  color: #ddd;
}

.single-thumb img {
  width: 100%;
  height: auto;
  margin: 40px 0;
}

/* =========================
   Single News Page
========================= */
.single-news-page {
  padding-top: 190px;
}

.single-news-article {
  max-width: 880px;
}

.single-news-header {
  margin-bottom: 42px;
  text-align: center;
}

.single-news-category {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 14px;
  border: 1px solid #e10600;
  color: #e10600;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.single-news-header .news-date {
  margin: 0 0 18px;
  color: #999;
  font-size: 13px;
  letter-spacing: 1px;
}

.single-news-header h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.25;
  letter-spacing: 2px;
}

.single-news-thumb {
  margin: 0 0 56px;
  border: 1px solid #222;
  background: #111;
  overflow: hidden;
}

.single-news-thumb img {
  width: 100%;
  display: block;
  margin: 0;
  object-fit: cover;
}

.single-news-content {
  background: #0f0f0f;
  border: 1px solid #222;
  border-left: 5px solid #e10600;
  padding: 48px;
  box-sizing: border-box;
  color: #ddd;
  font-size: 16px;
  line-height: 2.1;
}

.single-news-content p {
  margin: 0 0 1.8em;
}

.single-news-content h2 {
  margin: 2.2em 0 1em;
  padding-bottom: 12px;
  border-bottom: 1px solid #333;
  color: #fff;
  font-size: 28px;
  letter-spacing: 1px;
}

.single-news-content h3 {
  margin: 2em 0 1em;
  color: #fff;
  font-size: 22px;
}

.single-news-content a {
  color: #e10600;
  text-decoration: underline;
}

.single-news-content img {
  margin: 32px 0;
  border: 1px solid #222;
}

.single-news-content blockquote {
  margin: 36px 0;
  padding: 24px 28px;
  border-left: 4px solid #e10600;
  background: #151515;
  color: #fff;
  font-style: italic;
}

.single-news-back {
  margin-top: 56px;
  text-align: center;
}

/* =========================
   Contact Form 7
========================= */
.wpcf7 {
  max-width: 720px;
  margin: 0 auto;
}

.wpcf7 label {
  display: block;
  margin-bottom: 22px;
  color: #ddd;
  font-size: 14px;
  letter-spacing: 1px;
}

.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  box-sizing: border-box;
  font-family: inherit;
}

.wpcf7 textarea {
  min-height: 180px;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #e10600;
}

.wpcf7-submit {
  width: auto !important;
  min-width: 220px;
  border: 1px solid #e10600 !important;
  background: transparent !important;
  color: #fff !important;
  cursor: pointer;
  letter-spacing: 2px;
  font-weight: 700;
}

.wpcf7-submit:hover {
  background: #e10600 !important;
}

.wpcf7-acceptance label {
  display: flex;
  gap: 10px;
  align-items: center;
}

.wpcf7-acceptance input {
  width: auto;
  margin-top: 0;
}

/* =========================
   Supporter Page
========================= */
.supporter-page {
  background: #000;
  color: #fff;
}

.supporter-hero {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 140px 20px 100px;
}

.supporter-hero .section-label {
  color: #e60012;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 20px;
}

.supporter-hero h1,
.hero-title {
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 0.9;
  margin: 20px 0 30px;
}

.hero-sub {
  color: #e60012;
  font-size: 18px;
  letter-spacing: 4px;
  font-weight: 700;
  margin-top: 24px;
}

.supporter-hero p,
.hero-lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #ddd;
  line-height: 2;
}

.supporter-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.supporter-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.supporter-section h2::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #e60012;
  margin-bottom: 18px;
}

.supporter-section p {
  color: #ddd;
  line-height: 2;
}

.supporter-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.supporter-plan-card,
.bank-box,
.supporter-form {
  background: #111;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 32px;
  box-sizing: border-box;
}

.supporter-plan-card h3,
.bank-box h3 {
  font-size: 24px;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 16px;
}

.plan-price {
  color: #e60012 !important;
  font-size: 24px;
  font-weight: 700;
}

.supporter-plan-card ul {
  padding-left: 1.2em;
  margin-top: 24px;
}

.supporter-plan-card li {
  color: #ddd;
  line-height: 1.9;
  margin-bottom: 8px;
}

.plan-note,
.payment-note {
  font-size: 13px;
  color: #aaa !important;
  margin-top: 24px;
}

.payment-cta-box {
  background: linear-gradient(135deg, #111, #1a1a1a);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 36px;
  margin-top: 32px;
  text-align: center;
}

.payment-catch {
  font-size: 20px;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 8px;
}

.bank-lead {
  margin-top: 40px;
}

.bank-box {
  margin-top: 24px;
}

.supporter-form {
  margin-top: 28px;
}

.legal-section dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.legal-section dt,
.legal-section dd {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.legal-section dt {
  color: #aaa;
  font-weight: 700;
}

.legal-section dd {
  margin: 0;
  color: #fff;
  line-height: 1.8;
}

/* =========================
   Profile Page Pro Layout
========================= */
.profile-page {
  background: #000;
  color: #fff;
}

.profile-hero,
.profile-hero-pro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

.profile-hero {
  text-align: center;
}

.profile-hero-pro {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.profile-hero h1,
.profile-hero-text h1 {
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: 4px;
  margin: 0;
}

.profile-hero-sub {
  color: #e60012;
  font-weight: 800;
  letter-spacing: 4px;
  margin: 28px 0;
}

.profile-hero-text p {
  max-width: 560px;
  color: #ddd;
  line-height: 2;
}

.profile-hero-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  filter: grayscale(20%);
}

.profile-page .profile-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.profile-page .profile-section h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.15;
  margin-bottom: 32px;
}

.profile-page .profile-section p {
  color: #ddd;
  line-height: 2;
}

.profile-about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.profile-card-grid,
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.profile-card,
.achievement-grid div {
  background: #111;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 32px;
}

.profile-card span {
  color: #e60012;
  font-size: 28px;
  font-weight: 900;
}

.profile-card h3 {
  margin: 18px 0;
  font-size: 22px;
}

.achievement-grid {
  grid-template-columns: repeat(4, 1fr);
}

.achievement-grid strong {
  display: block;
  color: #e60012;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.profile-message {
  text-align: center;
}

.profile-message p {
  max-width: 760px;
  margin: 0 auto;
}

.profile-message .button {
  margin-top: 36px;
}

/* =========================
   Footer
========================= */
.site-footer {
  background: #000;
  padding: 90px 40px 30px;
  text-align: center;
}

.footer-sponsors h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: 4px;
  margin: 16px 0 40px;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 40px auto 60px;
  align-items: center;
}

.sponsor-grid a,
.sponsor-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
  border: 1px solid #222;
  padding: 30px;
  min-height: 120px;
  transition: 0.3s;
  box-sizing: border-box;
}

.sponsor-grid a:hover {
  border-color: #e10600;
  transform: translateY(-4px);
}

.sponsor-grid img,
.sponsor-item img {
  max-width: 170px;
  max-height: 74px;
  object-fit: contain;
}

.sponsor-sub-label {
  margin-top: 90px;
}

.sponsor-empty {
  grid-column: 1 / -1;
  color: #555;
  border: 1px solid #222;
  padding: 40px;
  letter-spacing: 2px;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 24px;
  color: #777;
  font-size: 12px;
  letter-spacing: 1px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .profile-inner,
  .profile-hero-pro,
  .profile-about-grid {
    grid-template-columns: 1fr;
  }

  .profile-inner {
    gap: 40px;
  }

  .profile-hero-image img {
    height: 420px;
  }

  .profile-card-grid,
  .achievement-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 0;
    padding: 18px;
  }

  .header-container,
  .site-header .container {
    flex-direction: column;
    gap: 12px;
  }

  .logo-main {
    font-size: 16px;
    letter-spacing: 1.4px;
  }

  .logo-sub {
    font-size: 10px;
    letter-spacing: 1.4px;
  }

  .nav,
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
  }

  .nav a,
  .nav-menu a {
    font-size: 11px;
    letter-spacing: 1.4px;
  }

  .hero {
    height: auto;
    min-height: 560px;
    padding: 96px 20px 56px;
    align-items: flex-end;
  }

  .hero::before {
    background: rgba(0,0,0,0.62);
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
  }

  .hero-label,
  .section-label {
    font-size: 11px;
    letter-spacing: 2.4px;
  }

  .hero h2 {
    margin: 18px 0 16px;
    font-size: clamp(42px, 13vw, 60px);
    letter-spacing: 2.2px;
  }

  .hero-text {
    font-size: 13px;
    line-height: 1.75;
  }

  .button,
  .stripe-button {
    margin-top: 20px;
    padding: 13px 22px;
    font-size: 12px;
    letter-spacing: 1.3px;
  }

  .hero-sns {
    margin-top: 0;
    padding: 16px 0 28px;
    gap: 22px;
  }

  .hero-sns a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .section {
    padding: 56px 20px;
  }

  .section h2 {
    margin: 12px 0 20px;
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: 2px;
  }

  .section p {
    font-size: 14px;
    line-height: 1.75;
  }

  .profile-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .profile-image {
    flex: none;
  }

  .profile-image img {
    max-height: 420px;
    object-fit: cover;
  }

  .news-grid {
    gap: 16px;
    padding-left: 2px;
    padding-right: 20px;
    padding-bottom: 18px;
  }

  .news-card {
    flex: 0 0 82%;
    width: 82%;
    min-width: 82%;
    min-height: auto;
    padding: 20px;
  }

  .news-thumb img,
  .news-placeholder {
    height: 180px;
    margin-bottom: 14px;
  }

  .news-category-section {
    margin-top: 48px;
    padding-top: 40px;
  }

  .category-news-list {
    gap: 18px;
  }

  .category-news-item {
    border-left-width: 4px;
    border-radius: 8px;
  }

  .category-news-item:hover {
    transform: none;
  }

  .category-news-item a {
    grid-template-columns: 110px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .category-news-thumb img,
  .category-news-thumb .news-placeholder {
    width: 110px;
    height: 82px;
  }

  .category-news-text .news-date {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .category-news-text h2 {
    font-size: 15px;
    margin: 4px 0 6px;
  }

  .category-news-text p {
    font-size: 12px;
    line-height: 1.5;
  }

  .page-main,
  .single-page {
    padding: 128px 20px 72px;
  }

  .page-section h1,
  .single-article h1 {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: 2px;
  }

  .page-content {
    margin-top: 28px;
  }

  .single-news-page {
    padding: 140px 20px 72px;
  }

  .single-news-header {
    margin-bottom: 30px;
    text-align: left;
  }

  .single-news-header h1 {
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: 1px;
  }

  .single-news-thumb {
    margin-bottom: 32px;
  }

  .single-news-content {
    padding: 28px 20px;
    border-left-width: 4px;
    font-size: 14px;
    line-height: 1.9;
  }

  .single-news-content h2 {
    font-size: 22px;
  }

  .single-news-content h3 {
    font-size: 18px;
  }

  .site-footer {
    padding: 56px 20px 24px;
  }

  .footer-sponsors h2 {
    font-size: clamp(22px, 7vw, 30px);
    letter-spacing: 2px;
    margin: 10px 0 20px;
  }

  .sponsor-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 22px auto 34px;
  }

  .sponsor-grid a,
  .sponsor-item {
    min-height: 76px;
    padding: 10px;
  }

  .sponsor-grid img,
  .sponsor-item img {
    max-width: 100%;
    max-height: 48px;
  }

  .sponsor-grid span {
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.5px;
  }

  .sponsor-sub-label {
    margin-top: 46px;
  }

  .sponsor-empty {
    padding: 24px 12px;
    font-size: 12px;
  }

  .supporter-hero {
    padding: 128px 20px 64px;
  }

  .supporter-hero h1,
  .hero-title {
    font-size: clamp(46px, 14vw, 72px);
    letter-spacing: 3px;
    margin: 14px 0 20px;
  }

  .supporter-hero p,
  .supporter-section p,
  .supporter-plan-card li {
    font-size: 14px;
    line-height: 1.75;
  }

  .supporter-section {
    padding: 52px 20px;
  }

  .supporter-section h2 {
    margin-bottom: 20px;
    font-size: clamp(28px, 8vw, 38px);
    letter-spacing: 1.5px;
  }

  .supporter-plan-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .supporter-plan-card,
  .bank-box,
  .supporter-form,
  .payment-cta-box {
    padding: 24px 20px;
  }

  .supporter-plan-card h3,
  .bank-box h3 {
    font-size: 20px;
  }

  .plan-price {
    font-size: 20px;
  }

  .payment-catch {
    font-size: 17px;
  }

  .bank-lead {
    margin-top: 28px;
  }

  .legal-section dl {
    grid-template-columns: 1fr;
  }

  .legal-section dt,
  .legal-section dd {
    padding: 12px 0;
  }

  .legal-section dt {
    padding-bottom: 4px;
    border-bottom: none;
  }

  .legal-section dd {
    padding-top: 0;
  }

  .profile-hero-pro {
    min-height: auto;
    gap: 28px;
    padding: 128px 20px 56px;
  }

  .profile-hero-text h1 {
    font-size: clamp(48px, 14vw, 76px);
    letter-spacing: 2px;
  }

  .profile-hero-sub {
    margin: 18px 0;
    font-size: 13px;
    letter-spacing: 2.4px;
  }

  .profile-hero-text p,
  .profile-page .profile-section p {
    font-size: 14px;
    line-height: 1.75;
  }

  .profile-hero-image img {
    height: 360px;
  }

  .profile-page .profile-section {
    padding: 54px 20px;
  }

  .profile-page .profile-section h2 {
    margin-bottom: 22px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .profile-about-grid {
    gap: 20px;
  }

  .profile-card-grid,
  .achievement-grid {
    gap: 16px;
  }

  .profile-card,
  .achievement-grid div {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 520px;
    padding-top: 88px;
  }

  .hero h2 {
    font-size: clamp(38px, 15vw, 52px);
  }

  .site-header {
    padding: 16px 14px;
  }

  .nav,
  .nav-menu {
    gap: 10px 12px;
  }

  .nav a,
  .nav-menu a {
    font-size: 10px;
  }

  .section,
  .supporter-section,
  .profile-page .profile-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .supporter-hero,
  .profile-hero-pro {
    padding-left: 18px;
    padding-right: 18px;
  }

  .profile-hero-image img {
    height: 300px;
  }

  .news-thumb img,
  .news-placeholder {
    height: 160px;
  }

  .category-news-item a {
    grid-template-columns: 96px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .category-news-thumb img,
  .category-news-thumb .news-placeholder {
    width: 96px;
    height: 74px;
  }
}

@media (max-width: 390px) {
  .sponsor-grid {
    gap: 8px;
  }

  .sponsor-grid a,
  .sponsor-item {
    min-height: 68px;
    padding: 8px;
  }

  .sponsor-grid img,
  .sponsor-item img {
    max-height: 42px;
  }
}
/* =========================
   Pagination Design
========================= */

.pagination {
  margin-top: 60px;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 12px 18px;
  border: 1px solid #222;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  transition: 0.3s;
}

.pagination .page-numbers:hover {
  border-color: #e10600;
  color: #e10600;
}

/* 今のページ */
.pagination .current {
  background: #e10600;
  border-color: #e10600;
  color: #fff;
}

/* 前へ・次へ */
.pagination .prev,
.pagination .next {
  padding: 12px 22px;
}
/* =========================
   Header Responsive
========================= */
@media (max-width: 768px) {
  .site-header {
    padding: 16px 14px;
    background: rgba(10, 10, 10, 0.38);
  }

  .site-header.is-scrolled {
    padding: 14px;
  }

  .header-container,
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    overflow: hidden;
  }

  .logo-main {
    letter-spacing: 1.4px;
  }

  .logo-sub {
    letter-spacing: 1.4px;
  }

  .nav,
  .nav-menu {
    width: 100%;
    max-width: 100vw;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 2px 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav a,
  .nav-menu a {
    font-size: 14px;
    letter-spacing: 1.8px;
  }

  .nav::-webkit-scrollbar,
  .nav-menu::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav,
  .nav-menu {
    gap: 16px;
  }

  .nav a,
  .nav-menu a {
    font-size: 13px;
    letter-spacing: 1.5px;
  }
}
/* =========================
   Profile Page Text Layout
========================= */

.profile-lead {
  margin-top: 28px;
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.6;
  font-weight: 800;
  color: #fff;
}

.achievement-list {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.achievement-list li {
  padding: 20px 24px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.14);
  border-left: 4px solid #e10600;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}

.profile-goal {
  text-align: center;
}

.profile-catch {
  margin: 40px 0 20px;
  color: #e10600 !important;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: 4px;
}

@media (max-width: 768px) {
  .profile-lead {
    font-size: 20px;
  }

  .achievement-list li {
    padding: 18px 16px;
    font-size: 14px;
  }

  .profile-goal {
    text-align: left;
  }

  .profile-catch {
    font-size: 26px;
    letter-spacing: 2px;
  }
}
/* =========================
   Profile Balanced Image Layout
========================= */

.profile-page .profile-section {
  padding: 56px 20px;
}

.profile-hero-pro {
  padding: 104px 20px 64px;
}

.profile-split,
.profile-split-reverse {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 40px;
  align-items: center;
}

.profile-split-reverse {
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
}

.profile-image-card {
  max-width: 380px;
  justify-self: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #111;
  overflow: hidden;
  opacity: 0.9;
}

.profile-image-card img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  filter: grayscale(35%) brightness(0.82) contrast(1.05);
  transform: scale(1.01);
}

.profile-hero-pro .profile-image-card {
  max-width: 420px;
}

.profile-hero-pro .profile-image-card img {
  height: 380px;
}

.profile-section .profile-image-card img {
  height: 300px;
}

/* 写真を少し背景寄りに見せる */
.profile-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.28)
  );
  pointer-events: none;
}

.profile-image-card {
  position: relative;
}

/* テキストの読みやすさ優先 */
.profile-page .profile-section h2 {
  margin-bottom: 24px;
}

.profile-page .profile-section p {
  max-width: 720px;
}

.profile-lead {
  max-width: 640px;
}

/* 実績は画像なしでも強く見えるように */
.achievement-list {
  max-width: 820px;
}

.achievement-list li {
  padding: 18px 22px;
}

/* スマホでは画像を文章の後に自然に配置 */
@media (max-width: 900px) {
  .profile-split,
  .profile-split-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .profile-split .profile-image-card,
  .profile-split-reverse .profile-image-card {
    order: 2;
    justify-self: start;
    width: 100%;
    max-width: 460px;
  }

  .profile-split > div,
  .profile-split-reverse > div {
    order: 1;
  }

  .profile-image-card img,
  .profile-section .profile-image-card img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .profile-page .profile-section {
    padding: 48px 20px;
  }

  .profile-hero-pro {
    padding: 112px 20px 52px;
  }

  .profile-image-card {
    max-width: 100%;
    border-radius: 14px;
  }

  .profile-hero-pro .profile-image-card img,
  .profile-image-card img,
  .profile-section .profile-image-card img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .profile-page .profile-section {
    padding: 42px 18px;
  }

  .profile-hero-pro {
    padding: 104px 18px 46px;
  }

  .profile-hero-pro .profile-image-card img,
  .profile-image-card img,
  .profile-section .profile-image-card img {
    height: 220px;
  }
}
/* =========================
   Profile Typography Polish (PC)
========================= */

@media (min-width: 769px) {

  /* 本文の読みやすさ */
  .profile-page .profile-section p {
    max-width: 680px;
    line-height: 2.0;
    font-size: 15.5px;
    letter-spacing: 0.02em;
  }

  /* HEROテキスト */
  .profile-lead {
    max-width: 600px;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.5;
    letter-spacing: 0.03em;
  }

  /* セクション見出し */
  .profile-page .profile-section h2 {
    font-size: clamp(30px, 2.4vw, 42px);
    letter-spacing: 0.08em;
    margin-bottom: 28px;
  }

  /* セクションラベル（01 / HEROなど） */
  .section-label {
    font-size: 11px;
    letter-spacing: 3.5px;
    opacity: 0.7;
    margin-bottom: 10px;
    display: inline-block;
  }

  /* 段落間の余白を均一化 */
  .profile-page .profile-section p + p {
    margin-top: 18px;
  }

  /* セクション内余白微調整 */
  .profile-page .profile-section {
    padding: 60px 20px;
  }

  /* 画像とテキストの距離バランス */
  .profile-split {
    gap: 48px;
  }

  /* 実績リスト */
  .achievement-list li {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.03em;
  }

  /* GOALのキャッチ */
  .profile-catch {
    font-size: clamp(28px, 3vw, 44px);
    letter-spacing: 0.12em;
    margin: 48px 0 24px;
  }
}
/* =========================
   Profile GOAL Texture Polish
========================= */

.profile-goal {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 72px 20px 84px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.018),
    rgba(255,255,255,0.05)
  );
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.profile-goal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(230,6,0,0.07),
    transparent 64%
  );
  pointer-events: none;
}

.profile-goal > * {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.profile-goal h2,
.profile-goal .section-label {
  text-align: left;
}

.profile-goal p {
  max-width: 760px;
  line-height: 1.9;
}

.profile-catch {
  margin: 38px auto 22px;
  color: #e10600 !important;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
}

@media (max-width: 768px) {
  .profile-goal {
    padding: 56px 20px 64px;
  }

  .profile-goal h2,
  .profile-goal .section-label,
  .profile-goal p,
  .profile-catch {
    text-align: left;
  }

  .profile-catch {
    font-size: 26px;
    letter-spacing: 0.08em;
  }
}
.section {
  padding: 100px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.4;
  margin-bottom: 10px;
}

h1, h2 {
  line-height: 1.5;
}

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero-text {
  margin-top: 20px;
  line-height: 1.8;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card span {
  opacity: 0.3;
  font-size: 14px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
}

.button-outline {
  border: 1px solid #000;
  margin-left: 10px;
}
.home-hero {
  min-height: calc(100vh - 80px);
  padding: 120px 24px 90px;
  display: flex;
  align-items: center;
}

.home-hero__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.home-hero__text {
  max-width: 620px;
}

.home-hero h1 {
  margin: 18px 0 24px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.18;
  letter-spacing: 0.04em;
}

.home-hero__lead {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 2;
  letter-spacing: 0.05em;
}

.home-hero__sub {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.75;
}

.home-hero__buttons {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.home-hero__image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.home-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.02),
    rgba(0,0,0,0.18)
  );
  pointer-events: none;
}

.home-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  opacity: 0.45;
}

@media (max-width: 900px) {
  .home-hero {
    padding: 100px 20px 70px;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .home-hero__image {
    aspect-ratio: 16 / 11;
    border-radius: 22px;
  }

  .home-hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }
}
.home-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 背景画像 */
.home-hero__bg {
  position: absolute;
  inset: 0;

  background-image: url("https://takehiro-irokawa.com/wp-content/uploads/2026/04/IMG_7139-2.jpg");
  background-size: cover;
  background-position: center;

  /* ★ここが重要（透かし） */
  opacity: 0.18;

  /* 少しぼかすと上品になる */
  filter: blur(2px);

  z-index: 0;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.82) 0%,
    rgba(255,255,255,0.58) 42%,
    rgba(255,255,255,0.18) 100%
  );

  z-index: 1;
}

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.9)
  );

  z-index: 1;
}

/* テキストを前に出す */
.home-hero__inner {
  position: relative;
  z-index: 2;

  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px;
}
/* =========================
   HERO（透かし背景 + テキスト主役）
========================= */

.home-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 120px 24px 90px;
}

/* 背景画像（透かし） */
.home-hero__bg {
  position: absolute;
  inset: 0;

  background-image: url("https://takehiro-irokawa.com/wp-content/uploads/2026/04/IMG_7139-2.jpg");
  background-size: cover;
  background-position: center;

  /* 写真しっかり見せる */
  opacity: 0.65;

  /* 軽く質感調整 */
  filter: contrast(1.05) brightness(1.03);

  z-index: 0;
}

/* 左だけ少し白を乗せて文字を読みやすく */
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.78) 0%,
    rgba(255,255,255,0.48) 45%,
    rgba(255,255,255,0.08) 100%
  );

  z-index: 1;
}

/* コンテンツ */
.home-hero__inner {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* テキスト */
.home-hero__text {
  max-width: 620px;
}

/* ラベル */
.hero-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  opacity: 0.5;
}

/* 見出し */
.home-hero h1 {
  margin: 18px 0 24px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

/* リード */
.home-hero__lead {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 2;
  letter-spacing: 0.05em;
}

/* ボタン */
.hero-buttons {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   共通セクション余白
========================= */

.section {
  padding: 110px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  opacity: 0.45;
  margin-bottom: 12px;
}

/* =========================
   レスポンシブ
========================= */

@media (max-width: 900px) {
  .home-hero {
    padding: 100px 20px 70px;
  }

  .home-hero h1 {
    font-size: clamp(36px, 10vw, 54px);
  }

  .home-hero__bg {
    opacity: 0.55;
  }

  .home-hero::after {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.85) 0%,
      rgba(255,255,255,0.6) 50%,
      rgba(255,255,255,0.15) 100%
    );
  }
}
/* =========================
   HERO レイアウト調整
========================= */

.home-hero__inner {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.home-hero__text {
  max-width: 560px;
}

/* PCのみ：テキストを左に寄せる */
@media (min-width: 1024px) {
  .home-hero__inner {
    max-width: 1280px;
    padding-left: 80px;
    padding-right: 40px;
  }

  .home-hero__text {
    max-width: 580px;
  }
}

/* 大きめPCではさらに少し左へ */
@media (min-width: 1400px) {
  .home-hero__inner {
    max-width: 1360px;
    padding-left: 110px;
  }
}

/* スマホ・タブレットは中央寄りを維持 */
@media (max-width: 900px) {
  .home-hero__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-hero__text {
    max-width: 100%;
  }
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.view-all-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.view-all-link:hover {
  opacity: 1;
}

@media (max-width: 700px) {
  .section-heading {
    align-items: flex-start;
  }
}
/* =========================
   ACTIVITY
========================= */

.activity {
  max-width: 1100px;
}

.activity h2 {
  margin-bottom: 42px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.activity .card {
  min-height: 240px;
  padding: 34px 30px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  backdrop-filter: blur(10px);
}

.activity .card span {
  display: block;
  margin-bottom: 42px;

  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.38);
}

.activity .card h3 {
  margin: 0 0 18px;

  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

.activity .card p {
  margin: 0;

  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.68);
}

/* スマホ */
@media (max-width: 900px) {
  .activity-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .activity .card {
    min-height: auto;
    padding: 28px 24px;
  }

  .activity .card span {
    margin-bottom: 28px;
  }
}
/* =========================
   NEWS / Latest Posts
========================= */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  overflow: hidden;
}

.news-card a {
  display: block;
  height: 100%;
  text-decoration: none;
}

.news-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 18px;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card h3 {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* スマホ */
@media (max-width: 700px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .news-card {
    width: 100%;
  }

  .news-thumb {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }

  .news-card h3 {
    font-size: 14px;
    line-height: 1.8;
  }
}
/* =========================
   HOME HERO 最終調整
========================= */

.home-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 120px 24px 90px;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://takehiro-irokawa.com/wp-content/uploads/2026/04/IMG_7139-2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.72;
  filter: contrast(1.08) brightness(1.02);
  z-index: 0;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.62) 0%,
    rgba(255,255,255,0.30) 46%,
    rgba(255,255,255,0.02) 100%
  );
  z-index: 1;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.home-hero__text {
  max-width: 580px;
}

.hero-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(180, 20, 28, 0.78);
  font-weight: 700;
}

.home-hero h1 {
  margin: 18px 0 24px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0,0,0,0.35);
}

.home-hero__lead {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 2;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.hero-buttons {
  margin-top: 38px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.72);
  color: #111;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-decoration: none;
  transition: 0.28s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #fff;
}

.button-outline {
  background: rgba(0,0,0,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.52);
  backdrop-filter: blur(10px);
}

.button-outline:hover {
  background: rgba(0,0,0,0.38);
}

/* PCのみ：テキストを左寄せ */
@media (min-width: 1024px) {
  .home-hero__inner {
    padding-left: 80px;
    padding-right: 40px;
  }
}

@media (min-width: 1400px) {
  .home-hero__inner {
    padding-left: 110px;
  }
}


/* =========================
   スマホ HERO
========================= */

@media (max-width: 900px) {
  .home-hero {
    min-height: 78vh;
    padding: 96px 20px 72px;
  }

  .home-hero__bg {
    opacity: 0.78;
    background-position: center top;
  }

  .home-hero::after {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.18) 48%,
      rgba(0,0,0,0.40) 100%
    );
  }

  .home-hero__inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .home-hero__text {
    max-width: 100%;
  }

  .home-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.18;
  }

  .home-hero__lead {
    font-size: 17px;
    line-height: 2.05;
  }

  .hero-buttons {
    margin-top: 34px;
    gap: 12px;
  }

  .button {
    min-width: 136px;
    min-height: 46px;
    padding: 12px 20px;
  }
}


/* =========================
   スマホヘッダー横スライド調整
========================= */

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }

  .site-header,
  header {
    overflow: visible;
  }

  .main-navigation,
  .site-navigation,
  .header-nav,
  nav {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .main-navigation ul,
  .site-navigation ul,
  .header-nav ul,
  nav ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 26px;
    width: max-content;
    min-width: 100%;
  }

  .main-navigation li,
  .site-navigation li,
  .header-nav li,
  nav li {
    flex: 0 0 auto;
  }

  .main-navigation a,
  .site-navigation a,
  .header-nav a,
  nav a {
    white-space: nowrap;
  }
}

/* =========================
   スマホ HERO
========================= */

@media (max-width: 900px) {
  .home-hero {
    min-height: 78vh;
    padding: 96px 20px 72px;
  }

  .home-hero__bg {
    opacity: 0.78;
    background-position: center top;
  }

  .home-hero::after {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.18) 48%,
      rgba(0,0,0,0.40) 100%
    );
  }

  .home-hero__inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .home-hero__text {
    max-width: 100%;
  }

  .home-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.18;
  }

  .home-hero__lead {
    font-size: 17px;
    line-height: 2.05;
  }

  .hero-buttons {
    margin-top: 34px;
    gap: 12px;
  }

  .button {
    min-width: 136px;
    min-height: 46px;
    padding: 12px 20px;
  }
}
/* =========================
   HOME HERO 最終調整
========================= */

.home-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 120px 24px 90px;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://takehiro-irokawa.com/wp-content/uploads/2026/04/IMG_7139-2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.72;
  filter: contrast(1.08) brightness(1.02);
  z-index: 0;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.62) 0%,
    rgba(255,255,255,0.30) 46%,
    rgba(255,255,255,0.02) 100%
  );
  z-index: 1;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.home-hero__text {
  max-width: 580px;
}

.hero-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(180, 20, 28, 0.78);
  font-weight: 700;
}

.home-hero h1 {
  margin: 18px 0 24px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0,0,0,0.35);
}

.home-hero__lead {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 2;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.hero-buttons {
  margin-top: 38px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.72);
  color: #111;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-decoration: none;
  transition: 0.28s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #fff;
}

.button-outline {
  background: rgba(0,0,0,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.52);
  backdrop-filter: blur(10px);
}

.button-outline:hover {
  background: rgba(0,0,0,0.38);
}

/* PCのみ：テキストを左寄せ */
@media (min-width: 1024px) {
  .home-hero__inner {
    padding-left: 80px;
    padding-right: 40px;
  }
}

@media (min-width: 1400px) {
  .home-hero__inner {
    padding-left: 110px;
  }
}


/* =========================
   スマホ HERO
========================= */

@media (max-width: 900px) {
  .home-hero {
    min-height: 78vh;
    padding: 96px 20px 72px;
  }

  .home-hero__bg {
    opacity: 0.78;
    background-position: center top;
  }

  .home-hero::after {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.18) 48%,
      rgba(0,0,0,0.40) 100%
    );
  }

  .home-hero__inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .home-hero__text {
    max-width: 100%;
  }

  .home-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.18;
  }

  .home-hero__lead {
    font-size: 17px;
    line-height: 2.05;
  }

  .hero-buttons {
    margin-top: 34px;
    gap: 12px;
  }

  .button {
    min-width: 136px;
    min-height: 46px;
    padding: 12px 20px;
  }
}


/* =========================
   スマホヘッダー横スライド調整
========================= */

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }

  .site-header,
  header {
    overflow: visible;
  }

  .main-navigation,
  .site-navigation,
  .header-nav,
  nav {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .main-navigation ul,
  .site-navigation ul,
  .header-nav ul,
  nav ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 26px;
    width: max-content;
    min-width: 100%;
  }

  .main-navigation li,
  .site-navigation li,
  .header-nav li,
  nav li {
    flex: 0 0 auto;
  }

  .main-navigation a,
  .site-navigation a,
  .header-nav a,
  nav a {
    white-space: nowrap;
  }
}
/* =========================
   スマホヘッダー横スクロール（確定版）
========================= */

@media (max-width: 900px) {

  /* ナビ全体 */
  .main-navigation,
  .site-navigation,
  .header-nav,
  nav {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  /* ulを1行固定 */
  .main-navigation ul,
  .site-navigation ul,
  .header-nav ul,
  nav ul {
    display: flex;
    flex-wrap: nowrap; /* ←これが最重要 */
    gap: 24px;

    width: max-content; /* 中身に合わせて伸びる */
    min-width: 100%;
    padding-right: 20px;
  }

  /* liも固定 */
  .main-navigation li,
  .site-navigation li,
  .header-nav li,
  nav li {
    flex: 0 0 auto;
  }

  /* リンク折り返し禁止 */
  .main-navigation a,
  .site-navigation a,
  .header-nav a,
  nav a {
    white-space: nowrap;
  }

}
/* =========================
   MOBILE HEADER FIX
   1行横スクロール化
========================= */

@media (max-width: 768px) {
  .site-header {
    overflow: visible;
  }

  .header-container,
  .site-header .container {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    align-items: flex-start;
  }

  .nav,
  .nav-menu {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    align-items: center;
    gap: 26px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 10px 0 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar,
  .nav-menu::-webkit-scrollbar {
    display: none;
  }

  .nav li,
  .nav-menu li {
    flex: 0 0 auto;
  }

  .nav a,
  .nav-menu a {
    display: inline-block;
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: 1.8px;
  }
}

@media (max-width: 480px) {
  .nav,
  .nav-menu {
    gap: 24px;
  }

  .nav a,
  .nav-menu a {
    font-size: 13px;
    letter-spacing: 1.6px;
  }
}
/* =========================
   HOME FINAL SPACING TUNE
========================= */

/* 基本セクション余白 */
.front-page .section {
  padding-top: 84px;
  padding-bottom: 84px;
}

/* HERO下の余白を少し引き締め */
.home-hero {
  min-height: 86vh;
  padding-top: 104px;
  padding-bottom: 82px;
}

/* STATEMENT：導入なので少しコンパクト */
.front-page .statement {
  padding-top: 72px;
  padding-bottom: 72px;
}

/* ACTIVITY：見せ場なので少し余白を残す */
.front-page .activity {
  padding-top: 88px;
  padding-bottom: 88px;
}

/* GOAL：締まりを出す */
.front-page .goal {
  padding-top: 72px;
  padding-bottom: 76px;
}

/* NEWS：カードがあるので余白を保つ */
.front-page .news {
  padding-top: 84px;
  padding-bottom: 88px;
}

/* SUPPORT CTA：少し強調 */
.front-page .support-cta {
  padding-top: 76px;
  padding-bottom: 84px;
}

/* CONTACT：最後は軽め */
.front-page .contact {
  padding-top: 68px;
  padding-bottom: 76px;
}

/* 見出し下の余白を少し整える */
.front-page .section h2 {
  margin-bottom: 24px;
}

/* Activityカードの上下密度調整 */
.activity .card {
  min-height: 220px;
  padding: 30px 28px;
}

.activity .card span {
  margin-bottom: 34px;
}

/* News見出し周り */
.section-heading {
  margin-bottom: 30px;
}

/* スマホ調整 */
@media (max-width: 768px) {
  .front-page .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .home-hero {
    min-height: 84vh;
    padding-top: 78px;
    padding-bottom: 68px;
  }

  .front-page .statement {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .front-page .activity,
  .front-page .news {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .front-page .goal,
  .front-page .support-cta,
  .front-page .contact {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .activity .card {
    min-height: auto;
    padding: 26px 22px;
  }

  .activity .card span {
    margin-bottom: 24px;
  }

  .section-heading {
    margin-bottom: 24px;
  }
}
/* =========================
   SUPPORTER PAGE
========================= */

.supporter-page {
  background: #050505;
  color: #fff;
  overflow: hidden;
}

.support-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 100px;
  background:
    radial-gradient(circle at 80% 30%, rgba(225, 6, 0, 0.18), transparent 34%),
    linear-gradient(135deg, #050505 0%, #0d0d0d 55%, #160404 100%);
}

.support-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

.support-hero__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.support-hero h1 {
  margin: 22px 0 32px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.support-hero__lead {
  max-width: 820px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
}

.support-hero__text {
  max-width: 780px;
  margin-top: 24px;
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.72);
}

.support-section {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 96px 24px;
  box-sizing: border-box;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.support-section h2 {
  margin: 16px 0 30px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.support-section p {
  max-width: 760px;
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.72);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 46px;
}

.support-card,
.plan-item,
.support-season__box {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  box-sizing: border-box;
}

.support-card {
  min-height: 260px;
  padding: 32px 28px;
}

.support-card span {
  display: block;
  margin-bottom: 44px;
  color: rgba(230, 0, 18, 0.82);
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.support-card h3,
.plan-item h3,
.support-season__box h3 {
  margin: 0 0 18px;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.support-card p,
.plan-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.support-season__box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  margin-top: 42px;
  padding: 38px;
}

.support-season__box ul {
  margin: 0;
  padding-left: 1.2em;
}

.support-season__box li {
  margin-bottom: 14px;
  color: rgba(255,255,255,0.86);
  line-height: 1.8;
  font-weight: 700;
}

.support-plan__lead {
  margin-bottom: 42px;
}

.support-plan__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.plan-item {
  padding: 28px 24px;
}

.plan-item span {
  display: inline-block;
  margin-bottom: 20px;
  color: #e60012;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.support-note {
  margin-top: 28px;
  font-size: 13px !important;
  color: rgba(255,255,255,0.55) !important;
}

.support-company {
  background:
    radial-gradient(circle at 15% 35%, rgba(230, 0, 18, 0.12), transparent 28%);
}

.support-contact {
  max-width: none;
  text-align: center;
  padding: 110px 24px 120px;
  background: linear-gradient(180deg, #090909, #120202);
}

.support-contact > * {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.support-contact p {
  margin-left: auto;
  margin-right: auto;
}

.support-contact__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* =========================
   SUPPORTER PAGE MOBILE
========================= */

@media (max-width: 900px) {
  .support-hero {
    min-height: auto;
    padding: 128px 22px 76px;
  }

  .support-hero h1 {
    font-size: clamp(44px, 13vw, 68px);
    line-height: 1.12;
    letter-spacing: 0.04em;
  }

  .support-hero__lead {
    font-size: 16px;
    line-height: 1.9;
  }

  .support-section {
    padding: 68px 22px;
  }

  .support-section h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .support-grid,
  .support-season__box,
  .support-plan__list {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .support-card span {
    margin-bottom: 26px;
  }

  .support-season__box {
    gap: 30px;
    padding: 28px 24px;
  }

  .plan-item {
    padding: 26px 22px;
  }

  .support-contact {
    padding: 74px 22px 84px;
    text-align: left;
  }

  .support-contact__buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .support-hero {
    padding-top: 116px;
  }

  .support-hero__text,
  .support-section p {
    font-size: 14px;
    line-height: 1.85;
  }

  .support-contact__buttons .button {
    width: 100%;
  }
}
/* =========================
   SUPPORT PLAN DETAIL
========================= */

.support-plan-block {
  margin-top: 56px;
  padding-top: 46px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.support-plan-heading {
  margin-bottom: 24px;
}

.support-plan-heading h3 {
  margin: 10px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.08em;
}

.personal-plan-list {
  grid-template-columns: repeat(3, 1fr);
}

.company-plan-list {
  grid-template-columns: repeat(4, 1fr);
}

.company-plan-list .plan-item-wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .personal-plan-list,
  .company-plan-list {
    grid-template-columns: 1fr;
  }

  .company-plan-list .plan-item-wide {
    grid-column: auto;
  }

  .support-plan-block {
    margin-top: 44px;
    padding-top: 36px;
  }
}
.support-plan__message {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 1px solid rgba(180, 40, 40, 0.75);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.9);
  line-height: 2;
  letter-spacing: 0.06em;
}

.support-price-box {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin: 8px 0 28px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.support-price-box span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
}

.support-price-box strong {
  font-size: 1.45rem;
  font-weight: 400;
  color: #fff;
}

.support-plan-cta {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .support-plan__message {
    padding: 20px;
    line-height: 1.9;
  }

  .support-price-box {
    width: 100%;
    justify-content: center;
  }

  .support-plan-cta .button {
    width: 100%;
    text-align: center;
  }
}
/* ==================================================
  SUPPORTER PAGE - CTA / ENTRY / COMMON UI
================================================== */

html {
  scroll-behavior: smooth;
}

/* 固定ヘッダー分のスクロール位置調整 */
section,
[id] {
  scroll-margin-top: 100px;
}

/* 共通セクション余白 */
.section,
.support-entry-section {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section,
  .support-entry-section {
    padding: 80px 0;
  }
}

/* 共通ガラスカード */
.glass-card,
.support-entry-card,
.support-form-block,
.plan-item {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* 共通ボタン */
.button {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.button:hover {
  background: rgba(180, 40, 40, 0.15);
  border-color: rgba(180, 40, 40, 0.6);
  color: #fff;
}

/* CTA */
.support-plan-cta {
  margin-top: 40px;
}

.support-plan-cta .button,
.support-payment-actions .button {
  min-width: 260px;
  text-align: center;
}

@media (max-width: 768px) {
  .support-plan-cta .button,
  .support-payment-actions .button {
    width: 100%;
  }
}

/* 共通2カラム */
.grid-2,
.support-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .grid-2,
  .support-entry-grid {
    grid-template-columns: 1fr;
  }
}

/* テキスト */
.text-muted {
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
}

.text-small,
.support-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* アクセント */
.accent-line,
.support-plan__message {
  border-left: 1px solid rgba(180, 40, 40, 0.7);
  padding-left: 20px;
}

/* 個人サポーター メッセージ */
.support-plan__message {
  margin: 32px 0;
  padding: 24px 28px;
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.9);
  line-height: 2;
  letter-spacing: 0.06em;
}

/* 金額表示 */
.support-price-box {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin: 8px 0 28px;
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.support-price-box span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
}

.support-price-box strong {
  font-size: 1.45rem;
  font-weight: 400;
  color: #fff;
}

/* ENTRY セクション */
.support-entry-section {
  background: #050505;
}

.support-entry-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.support-entry-heading h2 {
  margin-bottom: 20px;
}

.support-entry-heading p,
.support-entry-card p,
.support-form-block p {
  color: rgba(255,255,255,0.68);
  line-height: 1.9;
}

/* 支払いカード・フォーム */
.support-entry-card,
.support-form-block {
  padding: 32px;
}

.support-entry-card h3,
.support-form-block h3 {
  margin-bottom: 16px;
}

.support-payment-actions {
  margin-top: 28px;
}

.payment-embed {
  margin-top: 24px;
}

/* 銀行振込 */
.bank-info {
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.bank-info div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.bank-info dt {
  color: rgba(255,255,255,0.48);
  font-size: 0.82rem;
}

.bank-info dd {
  color: rgba(255,255,255,0.88);
  margin: 0;
}

.support-form-block {
  margin-top: 32px;
}

.support-form {
  margin-top: 24px;
}

/* スマホ調整 */
@media (max-width: 768px) {
  section,
  [id] {
    scroll-margin-top: 82px;
  }

  .support-plan__message {
    padding: 20px;
    line-height: 1.9;
  }

  .support-price-box {
    width: 100%;
    justify-content: center;
  }

  .support-entry-card,
  .support-form-block,
  .glass-card,
  .plan-item {
    padding: 24px 20px;
  }

  .bank-info div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}