/* ==========================================
   パースおじさんHOUSE - Base Stylesheet
   骨組み＋基本レイアウト
   ========================================== */

/* ---------- Custom Fonts ---------- */
@font-face {
  font-family: "CineCaption";
  src: url("../fonts/cinecaption226.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Noto Sans JP", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  background-color: #fff;
  line-height: 1.8;
  overflow-x: hidden;
  cursor: none;
}

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: #1a1a1a;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.cursor--hover {
  width: 56px;
  height: 56px;
  background: rgba(26, 26, 26, 0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  mix-blend-mode: normal;
}

.cursor--hidden {
  opacity: 0;
  width: 8px;
  height: 8px;
}

/* Light cursor over dark sections (e.g. footer) — keeps the cursor visible on dark backgrounds */
.cursor--light {
  background: #fff;
}

.cursor--hover.cursor--light {
  background: rgba(255, 255, 255, 0.18);
}

/* Clickable elements: blur glow on hover (background only, text stays sharp) */
.is-clickable-hover {
  position: relative;
}

.is-clickable-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  opacity: 0;
  filter: blur(4px);
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.is-clickable-hover:hover::before {
  opacity: 1;
}

/* Hide custom cursor on touch / small screens */
@media (hover: none), (max-width: 1024px) {
  body { cursor: auto; }
  .cursor { display: none; }
  .is-clickable-hover::before { display: none; }
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 1;
}

ul {
  list-style: none;
}

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

/* ---------- Utility ---------- */
.section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header--hidden {
  transform: translateY(-100%);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "CineCaption", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.header__logo-icon {
  width: 24px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.header__logo-accent {
  font-family: "CineCaption", "Inter", sans-serif;
  font-weight: 600;
  margin-left: 2px;
}

.header__nav-list {
  display: flex;
  gap: 28px;
}

.header__nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #1a1a1a;
  transition: width 0.3s ease;
}

.header__nav-link:hover {
  opacity: 1;
}

.header__nav-link:hover::after {
  width: 100%;
}

/* Hamburger */
.header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #1a1a1a;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__menu-btn.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.header__menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero__sub {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: #666;
}

.hero__title {
  font-family: "CineCaption", "Noto Sans JP", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.hero__title-accent {
  font-family: "CineCaption", "Inter", sans-serif;
  font-weight: 700;
  display: inline-block;
}

.hero__desc {
  margin-top: 24px;
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

.hero__cta {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 40px;
  border: 1.5px solid #1a1a1a;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero__cta:hover {
  background: #1a1a1a;
  color: #fff;
  opacity: 1;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__image {
  width: 110%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
  transform: translateX(8%);
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.08));
  animation: heroImageIn 1s ease-out 0.3s both;
  pointer-events: none;
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translateX(8%) translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(8%) translateY(0) scale(1);
  }
}

.hero__badges {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  padding: 0 24px;
  box-sizing: border-box;
}

.hero__badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: #ccc;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ==========================================
   SECTIONS (Common)
   ========================================== */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: #fff;
}

.section:nth-child(even) {
  background: #fafafa;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__number {
  font-family: "CineCaption", "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #bbb;
  display: block;
  margin-bottom: 16px;
}

.section__title {
  font-family: "CineCaption", "Noto Sans JP", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.section__subtitle {
  font-family: "CineCaption", "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #bbb;
  text-transform: uppercase;
  margin-top: 12px;
}

.section__lead {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-top: 12px;
  line-height: 1.8;
}

/* ==========================================
   SKETCH → PHOTO TRANSITION
   ========================================== */
.sketch-transition {
  height: 300vh;
  position: relative;
  z-index: 0;
}

.sketch-transition__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem;
  box-sizing: border-box;
}

.sketch-transition__image-wrapper {
  position: relative;
  width: 100%;
  height: calc(100vh - 9rem);
  border-radius: 12px;
  overflow: hidden;
}

.sketch-transition__sketch,
.sketch-transition__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform, clip-path;
}

.sketch-transition__sketch {
  z-index: 2;
  clip-path: inset(0 0 0 0);
}

.sketch-transition__photo {
  z-index: 1;
}

/* スマホでは余白を減らし、写真全体を表示（引きに） */
@media (max-width: 768px) {
  .sketch-transition__sticky {
    padding: 1.25rem;
  }
  .sketch-transition__image-wrapper {
    height: calc(100vh - 2.5rem);
  }
  .sketch-transition__sketch,
  .sketch-transition__photo {
    object-fit: contain;
    background: #fff;
  }
}

/* ==========================================
   SECTION 1: ABOUT
   ========================================== */
.about__grid {
  display: grid;
  gap: 56px;
}

.about__heading {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.about__text {
  font-size: 0.95rem;
  color: #444;
  line-height: 2;
}

.about__list {
  display: grid;
  gap: 12px;
}

.about__list li {
  font-size: 0.95rem;
  color: #444;
  padding-left: 20px;
  position: relative;
}

.about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a1a1a;
}

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

.benefit-card {
  padding: 32px 24px;
  border: 1px solid #eee;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.benefit-card__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-card__text {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
}

/* ==========================================
   SECTION 2: MASTERKIT
   ========================================== */
.masterkit__features {
  display: grid;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.masterkit__feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 24px;
}

.masterkit__feature-num {
  font-family: "CineCaption", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ddd;
  grid-row: 1 / 3;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

.masterkit__feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.masterkit__feature-text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.9;
}

.masterkit__cta {
  text-align: center;
  margin-top: 64px;
}

.masterkit__cta-btn {
  display: inline-block;
  padding: 16px 52px;
  border: 1.5px solid #1a1a1a;
  color: #1a1a1a;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background 0.3s ease, color 0.3s ease;
}

.masterkit__cta-btn:hover {
  background: #1a1a1a;
  color: #fff;
  opacity: 1;
}

/* ==========================================
   SECTION 3: COMMUNITY
   ========================================== */
.community__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.community__item {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid #eee;
  transition: box-shadow 0.3s ease;
}

.community__item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.community__icon {
  width: 56px;
  height: 56px;
  background: #222;
  border-radius: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.community__item-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.community__item-text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.8;
}

/* ==========================================
   SECTION 4: CONTENTS
   ========================================== */
.contents__lead {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 48px;
  line-height: 1.9;
}

.contents__slider {
  position: relative;
  padding: 0 32px;
}

.contents__track-wrapper {
  overflow: hidden;
}

.contents__track {
  display: flex;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: grab;
  user-select: none;
  padding: 24px 0;
}

.contents__track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.contents__card {
  flex: 0 0 48%;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: scale(0.88);
  opacity: 0.5;
  padding: 0 6px;
  box-sizing: border-box;
}

.contents__card.is-center {
  transform: scale(1);
  opacity: 1;
}

.contents__card-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.6s ease;
}

.contents__card.is-center .contents__card-thumb {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.12);
}

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

.contents__card-title {
  display: none;
}

.contents__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, box-shadow 0.2s;
  color: #333;
  padding: 0;
}

.contents__arrow:hover {
  background: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contents__arrow--prev {
  left: 0;
}

.contents__arrow--next {
  right: 0;
}

.contents__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.contents__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.contents__dot.is-active {
  background: #1a1a1a;
  transform: scale(1.2);
}

.contents__update-notice {
  text-align: center;
  margin-top: 48px;
  padding: 16px 32px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* ==========================================
   SECTION 5: WORKS
   ========================================== */
/* Voices */
.section--voices {
  background: #f5f3f0;
  padding: 0;
}

.voices__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px 120px;
}

.voices__header {
  margin-bottom: 56px;
}

.voices__heading {
  font-family: "CineCaption", "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.voices__sub {
  font-size: 0.85rem;
  color: #888;
  letter-spacing: 0.12em;
}

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

.voices__card {
  text-align: left;
  background: #fff;
  padding: 28px 28px 36px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.voices__number {
  display: block;
  font-family: "CineCaption", "Inter", sans-serif;
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 14px;
  text-align: center;
  letter-spacing: 0.05em;
}

.voices__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 24px;
  background: #e8e5e0;
}

.voices__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.voices__card:hover .voices__photo img {
  transform: scale(1.03);
}

.voices__photo-placeholder {
  width: 100%;
  height: 100%;
  background: #e0ddd8;
}

.voices__photo--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.voices__name {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.7;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.voices__role {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.voices__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 22px;
  background: #1a1a1a;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  position: relative;
  transition: background 0.4s ease;
}

/* Disable the custom-cursor blur glow on the voices arrow button */
.voices__link.is-clickable-hover::before {
  display: none !important;
}

.voices__link--disabled {
  background: #d0cdc8;
  cursor: default;
  pointer-events: none;
}

.voices__arrow-svg {
  width: 14px;
  height: 14px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Trigger arrow slide animation when hovering on the photo OR the arrow button itself */
.voices__photo:hover ~ .voices__link:not(.voices__link--disabled) .voices__arrow-svg,
.voices__link:not(.voices__link--disabled):hover .voices__arrow-svg {
  animation: arrowSlideOut 0.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes arrowSlideOut {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(24px);
    opacity: 0;
  }
  51% {
    transform: translateX(-24px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==========================================
   SECTION 6: PROFILE
   ========================================== */
.profile__content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.profile__photo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.profile__avatar {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.profile__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile__aka {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 20px;
}

.profile__social {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.profile__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  color: #1a1a1a;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.profile__social-link:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.profile__bio-heading {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 24px;
  padding-left: 12px;
  border-left: 3px solid #1a1a1a;
}

.profile__bio-heading:first-child {
  margin-top: 0;
}

.profile__bio-text {
  font-size: 0.92rem;
  color: #555;
  line-height: 2;
}

/* (legacy voices__card-* styles removed — consolidated to new design above) */

/* ==========================================
   SECTION 8: ACTIVITY (付箋風デザイン)
   ========================================== */
.activity__timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.activity__note {
  background: #fffde7;
  padding: 28px 24px;
  border-left: 4px solid #fdd835;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
  transform: rotate(-0.5deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity__note:nth-child(2) {
  background: #e8f5e9;
  border-left-color: #66bb6a;
  transform: rotate(0.5deg);
}

.activity__note:nth-child(3) {
  background: #e3f2fd;
  border-left-color: #42a5f5;
  transform: rotate(-0.3deg);
}

.activity__note:nth-child(4) {
  background: #fce4ec;
  border-left-color: #ef5350;
  transform: rotate(0.4deg);
}

.activity__note:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.08);
}

.activity__note-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.activity__note-date {
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
}

.activity__note-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.06);
  color: #555;
}

.activity__note-text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
}

/* ==========================================
   SECTION 9: PRICING
   ========================================== */
.pricing__card {
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 40px;
  border: 2px solid #1a1a1a;
  text-align: center;
}

.pricing__badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  background: #1a1a1a;
  color: #fff;
  margin-bottom: 24px;
}

.pricing__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing__currency {
  font-size: 1.2rem;
  font-weight: 500;
}

.pricing__number {
  font-family: "CineCaption", "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pricing__period {
  font-size: 0.92rem;
  color: #666;
}

.pricing__tax {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 28px;
}

.pricing__details {
  text-align: left;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing__detail {
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing__detail-icon {
  font-weight: 700;
  color: #1a1a1a;
  flex-shrink: 0;
}

.pricing__note {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 28px;
}

.pricing__cta {
  display: inline-block;
  padding: 16px 56px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.3s ease;
}

.pricing__cta:hover {
  background: #333;
  opacity: 1;
}

.pricing__cta-yearly {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 18px;
  font-size: 0.82rem;
  color: #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  transition: opacity 0.25s ease, gap 0.25s ease;
}

.pricing__cta-yearly:hover {
  opacity: 0.7;
  gap: 14px;
}

.pricing__cta-yearly-label {
  font-weight: 500;
  letter-spacing: 0.04em;
}

.pricing__cta-yearly-save {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 2px;
}

.pricing__cta-yearly-arrow {
  font-size: 0.92rem;
  transition: transform 0.25s ease;
}

.pricing__cta-yearly:hover .pricing__cta-yearly-arrow {
  transform: translateX(2px);
}

/* ==========================================
   SECTION 10: DESIGN MEMO
   ========================================== */
.design-memo__content {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.design-memo__heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.design-memo__text {
  font-size: 0.9rem;
  color: #555;
  line-height: 2;
}

.design-memo__list {
  display: grid;
  gap: 8px;
}

.design-memo__list li a {
  font-size: 0.9rem;
  color: #1a73e8;
  text-decoration: underline;
}

/* ==========================================
   SECTION 11: FAQ
   ========================================== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid #eee;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: #555;
}

.faq__icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: #1a1a1a;
  transition: transform 0.3s ease;
}

.faq__icon::before {
  width: 16px;
  height: 1.5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq__icon::after {
  width: 1.5px;
  height: 16px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__answer.is-open {
  max-height: 400px;
}

.faq__answer p {
  padding: 0 0 24px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.9;
}

/* ==========================================
   FINAL CTA
   ========================================== */
.section--final-cta {
  text-align: center;
  background: #f0f0f0;
  color: #1a1a1a;
  padding: 100px 24px;
}

.final-cta__title {
  font-family: "CineCaption", "Noto Sans JP", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.final-cta__text {
  font-size: 0.92rem;
  color: #666;
  margin-bottom: 36px;
}

.final-cta__btn {
  display: inline-block;
  padding: 16px 52px;
  border: 1.5px solid #1a1a1a;
  color: #1a1a1a;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background 0.3s ease, color 0.3s ease;
}

.final-cta__btn:hover {
  background: #1a1a1a;
  color: #fff;
  opacity: 1;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 0 40px;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top: Logo left + Nav right */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 48px;
}

.footer__brand {
  flex-shrink: 0;
}

.footer__logo {
  font-family: "CineCaption", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

.footer__logo-accent {
  font-family: "CineCaption", "Inter", sans-serif;
  font-weight: 600;
}

.footer__tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}

.footer__nav {
  display: flex;
  gap: 64px;
}

.footer__nav-col {
  min-width: 0;
}

.footer__nav-list {
  display: grid;
  gap: 20px;
}

.footer__nav-list a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.footer__nav-list a:hover {
  color: #fff;
}

/* Social icons */
.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Bottom: Legal + copyright */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: #fff;
}

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

/* ==========================================
   RESPONSIVE - Tablet (max-width: 1024px)
   ========================================== */
@media (max-width: 1024px) {
  /* Header */
  .header__nav {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  .header__nav.is-open {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: #fff;
    z-index: 999;
    padding: 40px 24px;
    overflow-y: auto;
  }

  .header__nav.is-open .header__nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .header__nav.is-open .header__nav-link {
    display: block;
    font-size: 1rem;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
  }

  /* Hero */
  .hero {
    padding: 100px 24px 60px;
  }

  .hero__inner {
    gap: 40px;
  }

  /* Sections */
  .section {
    padding: 100px 0;
  }

  /* About */
  .about__benefit-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Community */
  .community__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contents */
  .contents__card {
    flex: 0 0 46%;
  }

  /* Profile */
  .profile__content {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }

  /* Voices */
  .voices__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Activity */
  .activity__timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__nav {
    gap: 40px;
  }
}

/* ==========================================
   RESPONSIVE - Mobile (max-width: 768px)
   ========================================== */
@media (max-width: 768px) {
  /* Header */
  .header__inner {
    height: 60px;
  }

  .header__logo {
    font-size: 0.95rem;
  }

  .header__nav.is-open {
    top: 60px;
    height: calc(100vh - 60px);
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__image {
    width: 90%;
    max-width: 360px;
    transform: translateX(0);
    margin: 0 auto;
  }

  @keyframes heroImageIn {
    from {
      opacity: 0;
      transform: translateX(0) translateY(16px) scale(0.97);
    }
    to {
      opacity: 1;
      transform: translateX(0) translateY(0) scale(1);
    }
  }

  .hero__badges {
    margin-top: 24px;
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }

  .hero__badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .hero__sub {
    font-size: 0.8rem;
  }

  .hero__cta {
    padding: 12px 32px;
    font-size: 0.82rem;
  }

  .hero__scroll-indicator {
    display: none;
  }

  /* Sections */
  .section {
    padding: 64px 0;
  }

  .section__inner {
    padding: 0 20px;
  }

  .section__header {
    margin-bottom: 36px;
  }

  .section__number {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  /* About */
  .about__grid {
    gap: 40px;
  }

  .about__benefit-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card {
    padding: 24px 20px;
  }

  /* Masterkit */
  .masterkit__feature {
    grid-template-columns: 40px 1fr;
    gap: 0 16px;
  }

  .masterkit__feature-num {
    font-size: 1.2rem;
  }

  /* Community */
  .community__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .community__item {
    padding: 28px 20px;
  }

  /* Contents */
  .contents__card {
    flex: 0 0 54%;
    padding: 0 5px;
  }

  .contents__update-notice {
    font-size: 0.82rem;
    padding: 12px 24px;
    margin-top: 32px;
  }

  /* Works */
  .voices__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Profile */
  .profile__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .profile__avatar {
    max-width: 180px;
    margin: 0 auto;
  }

  .profile__name {
    font-size: 1.3rem;
    text-align: center;
  }

  .profile__aka {
    text-align: center;
  }

  .profile__social {
    justify-content: center;
  }

  /* Voices */
  .voices__inner {
    padding: 60px 20px 80px;
  }

  .voices__heading {
    font-size: 1.6rem;
  }

  /* Activity */
  .activity__timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .activity__note {
    transform: rotate(0deg) !important;
    padding: 20px 18px;
  }

  /* Pricing */
  .pricing__card {
    padding: 36px 24px;
    border-width: 1.5px;
  }

  .pricing__number {
    font-size: 2.4rem;
  }

  .pricing__cta {
    padding: 14px 40px;
    font-size: 0.85rem;
    width: 100%;
  }

  /* Design Memo */
  .design-memo__content {
    gap: 28px;
  }

  /* FAQ */
  .faq__question {
    padding: 18px 0;
    font-size: 0.88rem;
  }

  /* Final CTA */
  .section--final-cta {
    padding: 64px 20px;
  }

  .final-cta__btn {
    padding: 14px 36px;
    font-size: 0.85rem;
  }

  /* Footer */
  .footer {
    padding: 48px 0 24px;
  }

  .footer__inner {
    padding: 0 20px;
  }

  .footer__top {
    flex-direction: column;
    gap: 32px;
  }

  .footer__nav {
    flex-direction: column;
    gap: 24px;
  }

  .footer__social {
    justify-content: flex-start;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__legal {
    gap: 20px;
  }

  /* Subpage */
  .subpage {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .subpage__inner {
    padding: 0 20px;
  }

  .subpage__title {
    font-size: 1.3rem;
  }
}

/* ==========================================
   RESPONSIVE - Small Mobile (max-width: 480px)
   ========================================== */
@media (max-width: 480px) {
  /* Header */
  .header__inner {
    height: 56px;
    padding: 0 16px;
  }

  .header__logo {
    font-size: 0.88rem;
  }

  .header__nav.is-open {
    top: 56px;
    height: calc(100vh - 56px);
    padding: 24px 16px;
  }

  /* Hero */
  .hero {
    padding: 80px 16px 48px;
  }

  .hero__image {
    width: 85%;
    max-width: 280px;
  }

  .hero__desc {
    font-size: 0.88rem;
  }

  /* Sections */
  .section {
    padding: 52px 0;
  }

  .section__inner {
    padding: 0 16px;
  }

  .section__header {
    margin-bottom: 28px;
  }

  /* Contents */
  .contents__card {
    flex: 0 0 62%;
    padding: 0 4px;
  }

  .contents__track {
    padding: 20px 0;
  }

  .contents__update-notice {
    font-size: 0.78rem;
    padding: 10px 16px;
  }

  /* Voices - small mobile */

  /* Profile */
  .profile__bio-heading {
    font-size: 0.88rem;
  }

  .profile__bio-text {
    font-size: 0.85rem;
  }

  /* Pricing */
  .pricing__card {
    padding: 28px 16px;
  }

  .pricing__number {
    font-size: 2rem;
  }

  .pricing__badge {
    font-size: 0.72rem;
    padding: 5px 14px;
  }

  .pricing__detail {
    font-size: 0.85rem;
  }

  /* FAQ */
  .faq__question {
    font-size: 0.82rem;
    padding: 16px 0;
  }

  .faq__answer p {
    font-size: 0.82rem;
  }

  /* Final CTA */
  .section--final-cta {
    padding: 52px 16px;
  }

  .final-cta__btn {
    width: 100%;
    text-align: center;
  }

  /* Footer */
  .footer__inner {
    padding: 0 16px;
  }

  .footer__legal {
    flex-direction: column;
    gap: 12px;
  }

  .footer__copyright {
    font-size: 0.7rem;
  }

  /* Subpage */
  .subpage {
    padding-top: 80px;
  }

  .subpage__inner {
    padding: 0 16px;
  }

  .subpage__title {
    font-size: 1.15rem;
  }
}

/* ==========================================
   SCROLL ANIMATIONS (via JS class toggle)
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   SUB PAGE STYLES
   ========================================== */
.subpage {
  padding-top: 120px;
  padding-bottom: 80px;
}

.subpage__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.subpage__title {
  font-family: "CineCaption", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid #1a1a1a;
}

.subpage__content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
}

.subpage__content p {
  font-size: 0.92rem;
  color: #444;
  line-height: 2;
  margin-bottom: 16px;
}

.subpage__content .subpage__lead {
  margin-bottom: 32px;
}

.subpage__content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
}

.subpage__content ol,
.subpage__content ul {
  font-size: 0.92rem;
  color: #444;
  line-height: 2;
  margin-bottom: 16px;
  padding-left: 1.6em;
}

.subpage__content li {
  margin-bottom: 6px;
}

.subpage__content a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.subpage__content strong {
  font-weight: 600;
  color: #1a1a1a;
}

.subpage__meta {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.9;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}

/* Legal table (特定商取引法) */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.legal-table th,
.legal-table td {
  font-size: 0.92rem;
  line-height: 2;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  text-align: left;
}

.legal-table th {
  width: 220px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  padding-right: 32px;
}

.legal-table td {
  color: #444;
}

.legal-table td a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-table td a:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table th {
    padding: 16px 0 4px;
    border-bottom: none;
    font-size: 0.85rem;
    color: #999;
  }

  .legal-table td {
    padding: 0 0 16px;
    border-bottom: 1px solid #eee;
  }
}

/* ==========================================
   ARTICLE (Voice Detail) — SANU-inspired
   ========================================== */
.article {
  background: #fff;
  color: #1a1a1a;
  padding-bottom: 120px;
}

/* TOP — SANU Magazine 2-column hero */
.article__top {
  padding: 120px 0 80px;
}

.article__top-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.article__top-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 4px;
}

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

.article__top-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 0;
}

.article__badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1.5px solid #d97757;
  color: #d97757;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border-radius: 999px;
  margin-bottom: 32px;
}

.article__date-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  margin-bottom: 40px;
}

.article__date-icon {
  flex-shrink: 0;
}

.article__date {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.article__top-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  margin-bottom: 56px;
}

.article__share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.article__share-label {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  margin-right: 8px;
}

.article__share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.article__share-icon:hover {
  opacity: 0.6;
  transform: translateY(-2px);
}

/* Title card section (after the hero) */
.article__head {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 64px;
  text-align: left;
  border-top: 1px solid #eee;
  padding-top: 64px;
}

.article__meta {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: "CineCaption", "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #888;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.article__category,
.article__tag {
  display: inline-block;
}

.article__title {
  font-family: "CineCaption", "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  color: #1a1a1a;
}

.article__byline {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.article__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article__back:hover {
  color: #1a1a1a;
}

.article__body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.article__lead {
  font-size: 1.05rem;
  line-height: 2.1;
  color: #1a1a1a;
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.article__body p {
  font-size: 0.98rem;
  line-height: 2.05;
  color: #333;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.article__subhead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 80px 0 28px;
  padding-left: 14px;
  border-left: 3px solid #1a1a1a;
  line-height: 1.6;
}

.article__figure {
  margin: 48px 0;
}

.article__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.article__figure figcaption {
  margin-top: 14px;
  font-size: 0.85rem;
  line-height: 1.9;
  color: #777;
  text-align: left;
  letter-spacing: 0.03em;
}

.article__quote {
  background: #f7f6f3;
  border-left: 3px solid #1a1a1a;
  padding: 36px 40px;
  margin: 40px 0 56px;
}

.article__quote p {
  font-size: 0.95rem;
  line-height: 2.1;
  color: #333;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.article__quote p:last-child {
  margin-bottom: 0;
}

/* Editorial — full-bleed hero & feature bands (voice detail) */
.article__hero {
  width: 100%;
  margin-top: 72px; /* clear fixed header (72px) */
  background: #f0f0f0;
}

.article__hero img {
  width: 100%;
  height: auto;
  display: block;
}

.article__headline {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.article__headline-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  margin: 24px 0;
}

.article__band {
  margin: 56px 0;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

.article__band img {
  width: 100%;
  height: auto;
  display: block;
}

.article__band figcaption {
  padding: 14px 4px 0;
  font-size: 0.85rem;
  line-height: 1.9;
  color: #777;
  letter-spacing: 0.03em;
}

/* Embedded interview video (16:9, responsive) */
.article__video {
  margin: 40px 0 8px;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.article__video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* Profile card */
.article__profile {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid #eee;
}

.article__profile-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.article__profile-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 4px;
}

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

.article__profile-info {
  padding-top: 4px;
}

.article__profile-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.article__profile-en {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.article__profile-role {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.article__profile-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.article__profile-table th,
.article__profile-table td {
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  text-align: left;
}

.article__profile-table th {
  width: 88px;
  color: #888;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.article__profile-table td {
  color: #333;
  letter-spacing: 0.03em;
}

/* Profile links (SNS / HP / note) */
.article__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.article__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.article__link:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}

.article__link svg {
  width: 16px;
  height: 16px;
}

.article__link-note {
  width: 17px;
  height: 17px;
  display: block;
}

/* ホバー時、noteの黒ロゴを白に反転 */
.article__link:hover .article__link-note {
  filter: invert(1);
}

/* CTA */
.article__cta {
  max-width: 760px;
  margin: 96px auto 0;
  padding: 64px 24px 0;
  border-top: 1px solid #eee;
  text-align: center;
}

.article__cta-btn {
  display: inline-block;
  padding: 18px 56px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  border-radius: 999px;
  transition: opacity 0.3s ease;
  margin-bottom: 32px;
}

.article__cta-btn:hover {
  opacity: 0.85;
}

.article__cta-back {
  display: block;
  font-size: 0.85rem;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article__cta-back:hover {
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .article__headline {
    padding: 32px 24px 4px;
  }

  .article__headline-title {
    font-size: 1.2rem;
    line-height: 1.85;
    margin: 20px 0;
  }

  .article__band {
    margin: 40px 0;
  }

  .article__top {
    padding: 96px 0 48px;
  }

  .article__top-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }

  .article__top-info {
    padding: 0;
  }

  .article__top-title {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .article__badge {
    margin-bottom: 24px;
  }

  .article__date-row {
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .article__title {
    font-size: 1.6rem;
  }

  .article__subhead {
    font-size: 1.1rem;
    margin: 64px 0 20px;
  }

  .article__quote {
    padding: 24px 24px;
  }

  .article__profile-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article__profile-photo {
    max-width: 220px;
  }
}


/* ==========================================
   THANKS PAGE
   ========================================== */
.thanks {
  background: #fff;
  padding: 120px 0 96px;
  min-height: calc(100vh - 200px);
}

.thanks__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.thanks__hero {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 48px;
}

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

.thanks__title {
  font-family: "CineCaption", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.5;
}

.thanks__lead {
  font-size: 1rem;
  line-height: 2;
  color: #555;
  letter-spacing: 0.05em;
  margin-bottom: 64px;
}

/* メール案内カード */
.thanks__card {
  background: #f7f6f3;
  border-radius: 8px;
  padding: 48px 32px;
  margin-bottom: 80px;
  text-align: center;
}

.thanks__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  margin-bottom: 24px;
}

.thanks__card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  line-height: 1.6;
}

.thanks__card-text {
  font-size: 0.98rem;
  line-height: 2;
  color: #333;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.thanks__card-text strong {
  font-weight: 700;
  color: #1a1a1a;
}

.thanks__card-note {
  font-size: 0.82rem;
  color: #888;
  letter-spacing: 0.04em;
  margin-top: 12px;
}

/* メールが届かない方へ */
.thanks__help {
  text-align: left;
  margin-bottom: 80px;
}

.thanks__help-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid #1a1a1a;
  line-height: 1.6;
}

.thanks__help-lead {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.thanks__help-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  counter-reset: help;
}

.thanks__help-list li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}

.thanks__help-list li:first-child {
  border-top: 1px solid #eee;
}

.thanks__help-num {
  flex-shrink: 0;
  font-family: "CineCaption", "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: #888;
  padding-top: 4px;
  min-width: 36px;
}

.thanks__help-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.thanks__help-step-text {
  font-size: 0.88rem;
  line-height: 1.9;
  color: #555;
  letter-spacing: 0.04em;
}

.thanks__help-step-text code {
  display: inline-block;
  padding: 2px 8px;
  background: #f0eeea;
  border-radius: 4px;
  font-family: "Inter", monospace;
  font-size: 0.82rem;
  color: #1a1a1a;
}

/* お問い合わせ */
.thanks__contact {
  text-align: center;
  background: #fafaf8;
  padding: 32px 24px;
  border-radius: 8px;
}

.thanks__contact-text {
  font-size: 0.92rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.thanks__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
  letter-spacing: 0.04em;
}

.thanks__contact-link:hover {
  background: #1a1a1a;
  color: #fff;
}

/* 会員サイト誘導 */
.thanks__login {
  text-align: center;
  margin-bottom: 88px;
}

.thanks__login-text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.thanks__login-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.3s ease, gap 0.3s ease;
}

.thanks__login-btn:hover {
  background: #333;
  gap: 16px;
  opacity: 1;
}

.thanks__login-btn svg {
  flex-shrink: 0;
}

/* 戻るボタン */
.thanks__back {
  text-align: center;
}

.thanks__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
}

.thanks__back-btn:hover {
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .thanks {
    padding: 96px 0 64px;
  }

  .thanks__hero {
    max-width: 240px;
    margin-bottom: 32px;
  }

  .thanks__title {
    font-size: 1.5rem;
  }

  .thanks__lead {
    font-size: 0.92rem;
    margin-bottom: 48px;
  }

  .thanks__card {
    padding: 36px 24px;
    margin-bottom: 56px;
  }

  .thanks__login {
    margin-bottom: 56px;
  }

  .thanks__login-text {
    font-size: 0.85rem;
  }

  .thanks__login-btn {
    padding: 14px 28px;
    font-size: 0.88rem;
  }

  .thanks__help {
    margin-bottom: 56px;
  }

  .thanks__help-list li {
    gap: 16px;
    padding: 20px 0;
  }

  .thanks__contact {
    padding: 24px 16px;
  }
}


/* ==========================================
   SECTION 8: 会員ログイン
   ========================================== */
.section--login .section__inner {
  text-align: center;
}

.login__content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.login__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 2;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.login__btn {
  display: inline-block;
  padding: 18px 56px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  border-radius: 999px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.login__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .login__text {
    font-size: 0.88rem;
    margin-bottom: 32px;
  }
  .login__btn {
    padding: 16px 40px;
    font-size: 0.9rem;
  }
}
