/* ==========================================
   パースおじさん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;
}

/* 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;
}

/* ==========================================
   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;
}

.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__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: 48px;
  height: 48px;
  background: #333;
  border: none;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  position: relative;
  transition: background 0.4s ease;
}

.voices__link:hover {
  background: #1a1a1a;
}

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

.voices__arrow-svg {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.voices__link:not(.voices__link--disabled):hover .voices__arrow-svg {
  animation: arrowSlide 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes arrowSlide {
  0% { transform: translateX(0); opacity: 1; }
  40% { transform: translateX(20px); opacity: 0; }
  41% { transform: translateX(-20px); 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;
}

/* (voices styles consolidated above) */

.voices__card {
  padding: 32px 24px;
  border: 1px solid #eee;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

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

.voices__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.voices__card-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f0f0f0;
  flex-shrink: 0;
}

.voices__card-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
}

.voices__card-title {
  display: block;
  font-size: 0.78rem;
  color: #888;
}

.voices__card-comment {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.voices__card-change {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  font-size: 0.8rem;
}

.voices__card-before {
  color: #999;
}

.voices__card-arrow {
  color: #ccc;
}

.voices__card-after {
  color: #1a1a1a;
  font-weight: 600;
}

/* ==========================================
   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;
}

/* ==========================================
   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;
  }

  .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;
  }

  .voices__card-arrow {
    transform: rotate(90deg);
  }

  /* 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;
}

/* 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;
  }
}
