@charset "UTF-8";
/* =========================================================
  Re'ink Tattoo Artist School
  - React / Tailwind / inline style から通常HTML + SCSSへ再構築
  - セクション単位で編集しやすいように p-xxx で分割
========================================================= */
:root {
  --white: #fff;
  --ivory: #f8f5ef;
  --beige: #e8ddcb;
  --light-gray: #f3f1ec;
  --ink: #1e1e1c;
  --soft-ink: #2a2926;
  --gray-text: #6f6a62;
  --gold: #b59a6a;
  --pale-gold: #d8c7a4;
  --line-beige: #cdbb9d;
  --charcoal: #151513;
  --line-green: #20b94d;
  --line-green-hover: #128c3a;
  --font-mincho: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-en: "Noto Serif JP", serif;
  --font-logo: "Cinzel", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-mincho);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

section {
  position: relative;
}

.l-container {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.u-marker {
  background: linear-gradient(transparent 65%, rgba(183, 155, 99, 0.45) 65%);
  padding-inline: 0.12em;
}

.u-marker-text,
.p-hotjob__grid article h3 {
  display: inline;
  background: linear-gradient(transparent 70%, #d8c19a 70%);
}

.u-divider-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
}
.u-divider-diamond__line {
  display: block;
  width: 280px;
  height: 1px;
  background: rgba(181, 154, 106, 0.5);
}
.u-divider-diamond__diamond {
  display: block;
  width: 8px;
  height: 8px;
  background: #b59a6a;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.u-bg-type {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(140px, 16vw, 260px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  color: rgba(181, 154, 106, 0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.u-bg-type-left {
  left: 0;
  transform: none;
}

.u-bg-type-right {
  right: 0;
  left: auto;
  transform: none;
}

.u-sp-only {
  display: none;
}
@media (max-width: 560px) {
  .u-sp-only {
    display: inline;
  }
}

.u-pc-only {
  display: inline;
}
@media (max-width: 560px) {
  .u-pc-only {
    display: none;
  }
}

.c-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}

.c-logo__name {
  width: 100%;
  display: block;
  padding: 10px 40px 10px;
  background: rgba(8, 8, 8, 0.76);
  color: #c9a96e;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(32px, 7vw, 60px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.c-logo__sub {
  width: 100%;
  display: block;
  padding: 4px 28px 8px 28px;
  background: rgba(8, 8, 8, 0.88);
  color: #c9a96e;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-align: center;
}

.c-logo__icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.c-logo__text {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-logo);
  font-size: 11px;
  letter-spacing: 0.22em;
}

.c-line-button {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: clamp(14px, 1.8vw, 20px) clamp(20px, 2.5vw, 32px);
  border-radius: 9999px;
  background: linear-gradient(180deg, #2dc057 0%, #1ea848 100%);
  text-decoration: none;
  box-shadow: 0 8px 24px -8px rgba(32, 185, 77, 0.45);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.c-line-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -10px rgba(32, 185, 77, 0.5);
}
.c-line-button svg {
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.c-line-button-inner {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 16px);
}
.c-line-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(36px, 4vw, 48px);
  height: clamp(36px, 4vw, 48px);
  border-radius: 50%;
  background: transparent;
}
.c-line-button-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.c-line-button-text {
  color: #fff;
  font-family: var(--font-mincho, "Noto Serif JP", serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.c-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 0 28px;
  padding: 8px 28px;
  background: var(--white);
  border: 1px solid rgba(181, 154, 106, 0.55);
  color: #8a7548;
  font-size: 11px;
  letter-spacing: 0.36em;
}
.c-section-label::before,
.c-section-label::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.c-section-label--dark {
  background: transparent;
  color: var(--pale-gold);
  border-color: rgba(216, 199, 164, 0.45);
}
.c-section-label--dark::before,
.c-section-label--dark::after {
  background: var(--pale-gold);
}

.c-section-title {
  margin: 0;
  font-size: clamp(20px, 3.2vw, 40px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-bottom: 12px;
}
.c-section-title .u-marker {
  font-size: clamp(28px, 4.2vw, 52px);
}
.c-section-title--dark {
  color: #f3efe5;
}
.c-section-title--dark em,
.c-section-title--dark span {
  color: var(--pale-gold);
  font-style: normal;
}

.c-heading-center {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
.c-heading-center .c-section-label {
  margin-inline: auto;
}
.c-heading-center p {
  color: #3a3833;
  line-height: 2;
}
.c-heading-center--dark p {
  color: var(--line-beige);
}

.c-heading-center__sub {
  margin: 0 0 6px;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.1em;
}

.c-divider {
  width: 120px;
  height: 1px;
  margin: 28px 0;
  background: var(--gold);
}
.c-heading-center .c-divider {
  margin-inline: auto;
}
.c-divider--dark {
  background: linear-gradient(
    90deg,
    transparent,
    var(--pale-gold),
    transparent
  );
}

.c-framed-image {
  position: relative;
  margin: 0;
  border: 1px solid rgba(184, 171, 148, 0.72);
  box-shadow: 0 14px 34px rgba(35, 29, 21, 0.16);
  overflow: hidden;
}
.c-framed-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ==================== HERO ==================== */
.p-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #17120d;
  color: #fff;
}
.p-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(
      circle at 18% 48%,
      rgba(181, 154, 106, 0.25),
      transparent 32%
    ),
    linear-gradient(
      90deg,
      rgba(18, 13, 9, 0.96) 0%,
      rgba(18, 13, 9, 0.86) 36%,
      rgba(18, 13, 9, 0.36) 66%,
      rgba(18, 13, 9, 0.1) 100%
    );
  pointer-events: none;
}
.p-hero::after {
  position: absolute;
  inset: 18px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(201, 174, 125, 0.35);
  pointer-events: none;
}

.p-hero__bg {
  position: absolute;
  inset: 0;
}
.p-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: contrast(1.08) saturate(0.9);
}

.p-hero__content {
  position: relative;
  z-index: 3;
  width: min(62%, 860px);
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 42px) clamp(24px, 5vw, 72px) 96px;
  overflow: hidden;
  box-sizing: border-box;
}

.p-hero__logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 24px;
}

.p-hero__tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-en);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.18em;
}

.p-hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-hero__eyebrow {
  width: fit-content;
  margin: 0 0 22px;
  color: #d8c49a;
  font-size: 15px;
  letter-spacing: 0.16em;
}

.p-hero__catch {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 18px;
  color: #d7b875;
  font-family: var(--font-mincho);
}
.p-hero__catch span {
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: 0.03em;
}
.p-hero__catch small {
  color: #fff;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.12em;
  padding-left: 4px;
}

.p-hero__title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: clamp(40px, 3.2vw, 68px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.05em;
}
.p-hero__title span {
  display: inline-block;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.p-hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 2;
  letter-spacing: 0.06em;
}

.p-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.p-hero__points span {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.p-hero__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 36px;
}

.p-hero .c-line-button {
  margin-top: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  transform: translateY(0);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.p-hero .c-line-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42);
}

.p-hero__cta-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.p-hero__bottom {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(15, 11, 8, 0.72);
  border-top: 1px solid rgba(201, 174, 125, 0.28);
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  backdrop-filter: blur(10px);
}

.p-hero__scroll {
  position: absolute;
  z-index: 4;
  right: 34px;
  top: 50%;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-logo);
  font-size: 9px;
  letter-spacing: 0.38em;
}

/* 1000px以下 */
@media (max-width: 1000px) {
  .p-hero {
    height: auto;
  }
  .p-hero::after {
    display: none;
  }
  .p-hero__bg img {
    object-position: center top;
  }
  .p-hero__content {
    width: 100%;
    padding: 24px 20px 20px;
  }
  .p-hero__eyebrow {
    margin-bottom: 12px;
  }
  .p-hero__catch {
    margin-bottom: 10px;
  }
  .p-hero__lead {
    margin-top: 16px;
  }
  .p-hero__points {
    margin-top: 12px;
  }
  .p-hero__cta {
    margin-top: 18px;
  }
  .p-hero__scroll {
    display: none;
  }
}
/* 560px以下 */
@media (max-width: 560px) {
  .p-hero__tagline {
    display: none;
  }
  .p-hero__eyebrow {
    letter-spacing: 0.1em;
  }
  .p-hero__catch {
    display: block;
  }
  .p-hero__catch span {
    display: block;
    font-size: clamp(48px, 10vw, 72px);
  }
  .p-hero__catch small {
    display: block;
    margin-top: 8px;
    padding-bottom: 0;
    font-size: 18px;
  }
  .p-hero__title {
    font-size: clamp(30px, 6vw, 56px);
  }
  .p-hero__lead {
    font-size: 14px;
    line-height: 1.9;
  }
  .p-hero__points {
    gap: 8px;
  }
  .p-hero__points span {
    font-size: 11px;
    padding: 7px 10px;
  }
  .p-hero__cta {
    display: block;
  }
  .p-hero__cta-note {
    margin-top: 12px;
  }
}
/* ==================== ABOUT ==================== */
/* ==================== ABOUT ==================== */
.p-about {
  position: relative;
  overflow: hidden;
}
.p-about__inner {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
.p-about__text {
  position: relative;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.p-about .c-section-label {
  color: #b59a6a;
  font-size: 18px;
  background: white;
  letter-spacing: 0.22em;
  margin-bottom: 0px;
}
.p-about .c-section-title {
  margin-top: 22px;
  color: #181512;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.p-about .c-section-title em {
  position: relative;
  display: inline-block;
  font-style: normal;
  color: #b59a6a;
}
.p-about .c-section-title em::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 10px;
  content: "";
  background: rgba(181, 154, 106, 0.14);
  z-index: -1;
}
.p-about .c-line-button {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.p-about .c-line-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.12);
}
.p-about .c-framed-image {
  position: relative;
  margin: 0;
}
.p-about .c-framed-image::before {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid rgba(181, 154, 106, 0.28);
}
.p-about .c-framed-image::after {
  position: absolute;
  left: -28px;
  bottom: -28px;
  z-index: -1;
  content: "RE'INK";
  color: rgba(181, 154, 106, 0.08);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(70px, 10vw, 140px);
  letter-spacing: 0.08em;
  line-height: 1;
}
.p-about .c-framed-image img {
  display: block;
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}
.p-about {
  /* ==================== TABLET ==================== */
}
@media (max-width: 1000px) {
  .p-about::after {
    display: none;
  }
  .p-about__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .p-about .c-framed-image {
    max-width: 720px;
    margin-inline: auto;
  }
  .p-about .c-framed-image img {
    aspect-ratio: 1.2;
  }
}
.p-about {
  /* ==================== MOBILE ==================== */
}
@media (max-width: 560px) {
  .p-about__inner {
    gap: 42px;
    padding-block: 72px;
  }
  .p-about .c-section-title {
    line-height: 1.7;
  }
  .p-about .c-framed-image::before {
    top: -10px;
    right: -10px;
  }
  .p-about .c-framed-image::after {
    left: -8px;
    bottom: -12px;
    font-size: 56px;
  }
}

/* ==================== PROBLEM ==================== */
.p-problem {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8f3eb 100%);
}
.p-problem__image {
  position: absolute;
  top: 50%;
  right: 24px;
  z-index: 1;
  width: calc(46% - 24px);
  transform: translateY(-50%);
}
.p-problem__image img {
  display: block;
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  object-position: center;
}
.p-problem__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(88px, 10vw, 130px);
}
.p-problem__content {
  width: min(52%, 680px);
}
.p-problem .u-marker {
  margin: 0;
  color: #1f1a15;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.45;
  letter-spacing: 0.05em;
}
.p-problem .u-divider-diamond {
  justify-content: flex-start;
  margin-top: 28px;
}
.p-problem__list {
  display: grid;
  gap: 14px;
  margin-top: 40px;
  padding: 0;
  background: transparent;
}
.p-problem__list li {
  position: relative;
  padding: 22px 24px 22px 72px;
  background: #fff;
  border: 1px solid rgba(216, 204, 186, 0.75);
  box-shadow: 0 10px 30px rgba(53, 42, 28, 0.04);
}
.p-problem__list li::before {
  position: absolute;
  left: 22px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  content: "✓";
  color: #fff;
  background: #1f1a15;
  border-radius: 50%;
  transform: translateY(-50%);
}
.p-problem__list li small {
  display: block;
  margin-bottom: 6px;
  color: #7a7060;
  font-size: 14px;
}
.p-problem__list li strong {
  color: #1f1a15;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  background: linear-gradient(transparent 64%, rgba(181, 154, 106, 0.2) 64%);
}
@media (max-width: 900px) {
  .p-problem__image {
    position: relative;
    top: auto;
    right: auto;
    width: min(100% - 40px, 680px);
    margin: 0 auto;
    transform: none;
    padding: 24px;
  }
  .p-problem__image img {
    max-width: 390px;
    margin: 0 auto;
  }
  .p-problem__inner {
    padding-block: 40px 56px;
  }
  .p-problem__content {
    width: 100%;
    text-align: center;
  }
  .p-problem__list {
    text-align: left;
  }
  .p-problem .u-divider-diamond {
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .p-problem__image {
    width: calc(100% - 32px);
  }
  .p-problem__inner {
    padding-block: 32px 52px;
  }
  .p-problem__list {
    margin-top: 24px;
    gap: 12px;
  }
  .p-problem__list li {
    padding: 16px 14px 16px 50px;
  }
  .p-problem__list li::before {
    left: 12px;
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .p-problem__list li small {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .p-problem__list li strong {
    font-size: clamp(15px, 4.5vw, 18px);
  }
}

/* ==================== HOT JOB ==================== */
.p-hotjob {
  padding-block: clamp(70px, 9vw, 110px);
  background: #efe9dc;
}

.p-hotjob__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
}
.p-hotjob__grid article {
  text-align: center;
  padding: 12px;
  border-left: 1px solid rgba(181, 154, 106, 0.28);
}
.p-hotjob__grid article:first-child {
  border-left: 0;
}
.p-hotjob__grid article img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 22px;
  padding: 20px;
  box-sizing: content-box;
  background: #1a1810;
  border-radius: 50%;
}
.p-hotjob__grid article p {
  color: #5a4e3a;
  line-height: 1.9;
}
.p-hotjob__grid article h3 {
  margin: 10px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}
.p-hotjob__grid article span {
  font-size: 0.72em;
  font-weight: 400;
}

/* ==================== CHALLENGES ==================== */
.p-challenges {
  padding-top: 80px;
  position: relative;
  background: linear-gradient(180deg, #151513 0%, #1a1916 60%, #151513 100%);
  padding-bottom: 140px;
  -webkit-clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 60px),
    50% 100%,
    0 calc(100% - 60px)
  );
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 120px),
    50% 100%,
    0 calc(100% - 120px)
  );
}

.p-challenge-list {
  display: grid;
  gap: 28px;
  margin-top: 64px;
}

.p-challenge-message {
  position: relative;
  width: fit-content;
  margin: 64px auto 0;
  padding: 18px 64px;
  color: #1e1e1e;
  font-family: var(--font-mincho);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-align: center;
  border: 1px solid rgba(183, 155, 99, 0.35);
  background: white;
}
.p-challenge-message::before,
.p-challenge-message::after {
  position: absolute;
  top: 50%;
  width: 120px;
  height: 1px;
  content: "";
  background: var(--gold);
}
.p-challenge-message::before {
  right: calc(100% + 24px);
}
.p-challenge-message::after {
  left: calc(100% + 24px);
  transform: rotate(180deg);
}
.p-challenge-message strong {
  color: #b79b63;
  font-weight: 600;
}

@media (max-width: 768px) {
  .p-challenge-message__main {
    gap: 10px;
  }
  .p-challenge-message__title {
    white-space: normal;
  }
}
@media (max-width: 560px) {
  .p-challenge-message {
    width: 100%;
    padding: 18px 4px;
  }
}
.c-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 45%) 1fr;
  gap: 36px;
  align-items: center;
  min-height: 420px;
  padding: clamp(32px, 5vw, 64px);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96),
    rgba(246, 242, 236, 0.96)
  );
  border: 1px solid #e4ded4;
  overflow: hidden;
}
.c-feature-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(190, 175, 151, 0.28);
}

.c-feature-card__num {
  position: absolute;
  top: -18px;
  left: 22px;
  color: rgba(151, 139, 124, 0.1);
  font-family: var(--font-en);
  font-size: clamp(120px, 15vw, 220px);
  line-height: 0.8;
}
@media (max-width: 560px) {
  .c-feature-card__num {
    right: 0;
    left: unset;
    top: 12px;
  }
}

.c-feature-card h3 {
  position: relative;
  margin: 0 0 24px;
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.c-feature-card p {
  position: relative;
  color: #4a4a4a;
  line-height: 2;
}

.c-feature-card figure {
  margin: 0;
  border: 1px solid rgba(184, 171, 148, 0.72);
  box-shadow: 0 12px 28px rgba(35, 29, 21, 0.12);
  overflow: hidden;
}
.c-feature-card figure img {
  width: 100%;
  aspect-ratio: 820/520;
  object-fit: cover;
}

/* ==================== FEATURES ==================== */
.p-features {
  background: linear-gradient(180deg, #f8f5ef 0%, #f3f1ec 100%);
  padding-block: clamp(80px, 10vw, 130px);
}

.p-features__list {
  display: grid;
  gap: 56px;
  margin-top: 72px;
}
.p-features__list .feature-card {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 60px);
  background: linear-gradient(135deg, #0f0f0d 0%, #1a1a17 55%, #151513 100%);
}
.p-features__list .feature-card__watermark {
  position: absolute;
  top: -10px;
  right: 0%;
  font-family: var(--font-mincho);
  font-size: clamp(180px, 22vw, 360px);
  line-height: 0.9;
  font-weight: 400;
  color: rgba(181, 154, 106, 0.055);
  pointer-events: none;
  user-select: none;
}
.p-features__list .feature-card__grid {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.p-features__list .feature-card__content {
  position: relative;
}
.p-features__list .feature-card__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: rgb(181, 154, 106);
}
.p-features__list .feature-card__inner {
  padding-left: 48px;
}
.p-features__list .feature-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  margin-bottom: 32px;
  border: 1px solid rgba(181, 154, 106, 0.55);
  background: rgba(181, 154, 106, 0.07);
}
.p-features__list .feature-card__badge-text {
  font-family: var(--font-mincho);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: #b59a6a;
}
.p-features__list .feature-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.p-features__list .feature-card__num {
  font-family: var(--font-mincho);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #b59a6a;
}
.p-features__list .feature-card__meta-line {
  width: 40px;
  height: 1px;
  background: rgba(181, 154, 106, 0.5);
}
.p-features__list .feature-card__tag {
  font-family: var(--font-mincho);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: #8a7548;
}
.p-features__list .feature-card__title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: #f3efe5;
  text-shadow: 0 0 50px rgba(181, 154, 106, 0.12);
}
.p-features__list .feature-card__lead {
  margin-top: 24px;
  font-family: var(--font-mincho);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.85;
  color: #d8c7a4;
}
.p-features__list .feature-card__body {
  margin-top: 16px;
  font-size: 16px;
  line-height: 2;
  color: rgba(243, 239, 229, 0.6);
}
.p-features__list .feature-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.p-features__list .feature-card__pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(181, 154, 106, 0.4);
  background: rgba(181, 154, 106, 0.08);
}
.p-features__list .feature-card__pill svg {
  width: 11px;
  height: 11px;
  stroke: #b59a6a;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.p-features__list .feature-card__pill span {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #d8c7a4;
}
.p-features__list .feature-card__image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(181, 154, 106, 0.35);
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.65);
}
.p-features__list .feature-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  filter: brightness(0.88) contrast(1.06);
}
.p-features__list .feature-card__image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 15, 13, 0.45) 0%,
    transparent 28%
  );
}
.p-features__list .u-diamond {
  width: 6px;
  height: 6px;
  background: #b59a6a;
  transform: rotate(45deg);
}
@media (max-width: 1024px) {
  .c-logo {
    align-items: flex-start;
  }
  .p-features__list .feature-card__grid {
    grid-template-columns: 1fr;
  }
  .p-features__list .feature-card__watermark {
    display: none;
  }
  .p-features__list .feature-card__line {
    display: none;
  }
  .p-features__list .feature-card__inner {
    padding-left: 0;
  }
}
@media (max-width: 560px) {
  .c-logo__name {
    padding: 6px 32px 6px;
    font-size: clamp(40px, 7vw, 60px);
  }

  .c-logo__sub {
    font-size: 16px;
    padding: 4px 20px 6px 20px;
  }
}
/* ==================== CURRICULUM ==================== */
.p-curriculum {
  background: linear-gradient(180deg, #f3f1ec 0%, #f8f5ef 100%);
  padding-block: clamp(80px, 10vw, 130px);
  padding-top: 0;
}
.p-curriculum .u-bg-type {
  top: 0;
}

.p-curriculum__list {
  position: relative;
  margin-top: clamp(64px, 8vw, 96px);
}
.p-curriculum__list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 44px;
  width: 1px;
  content: "";
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(181, 154, 106, 0.5) 4%,
    rgba(181, 154, 106, 0.5) 96%,
    transparent 100%
  );
}
.p-curriculum__timeline {
  display: grid;
  gap: clamp(56px, 6vw, 80px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-curriculum__item {
  position: relative;
}
.p-curriculum__content {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 40px;
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(181, 154, 106, 0.18);
  border-radius: 2px;
  backdrop-filter: blur(6px);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}
.p-curriculum__content:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}
.p-curriculum__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.p-curriculum__line {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(181, 154, 106, 0.55);
}
.p-curriculum__en {
  display: block;
  font-family: var(--font-mincho, "Noto Serif JP", serif);
  font-size: 14px;
  line-height: 1;
  color: #8a7548;
  letter-spacing: 0.28em;
}
.p-curriculum__title {
  position: relative;
  margin: 0;
  font-family: var(--font-mincho, "Noto Serif JP", serif);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.35;
}
.p-curriculum__body {
  margin: 16px 0 0;
  font-family: var(--font-mincho, "Noto Serif JP", serif);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 2;
  color: #3a3833;
}
.p-curriculum__photo {
  position: relative;
}
.p-curriculum__photo::before,
.p-curriculum__photo::after {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  content: "";
  pointer-events: none;
}
.p-curriculum__photo::before {
  top: -8px;
  right: -8px;
  border-top: 1px solid rgba(181, 154, 106, 0.7);
  border-right: 1px solid rgba(181, 154, 106, 0.7);
}
.p-curriculum__photo::after {
  bottom: -8px;
  left: -8px;
  border-bottom: 1px solid rgba(181, 154, 106, 0.45);
  border-left: 1px solid rgba(181, 154, 106, 0.45);
}
.p-curriculum__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 2px;
}

.curriculum-ribbon {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 30px;
  background: linear-gradient(135deg, #b59a6a 0%, #c9ae7d 100%);
  color: #fff;
  transform: skewX(-18deg);
  box-shadow:
    0 10px 24px rgba(181, 154, 106, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  font-size: 16px;
}

@media (max-width: 1000px) {
  .p-curriculum__content {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-left: 88px;
  }
}
@media (max-width: 560px) {
  .p-curriculum__list {
    margin-top: 56px;
  }
  .p-curriculum__list::before {
    left: 20px;
  }
  .p-curriculum__timeline {
    gap: 48px;
  }
  .p-curriculum__content {
    margin-left: 36px;
    padding: 22px 18px;
  }
  .p-curriculum__head {
    flex-wrap: wrap;
    gap: 10px;
  }
  .p-curriculum__line {
    width: 28px;
  }
  .p-curriculum__photo::before,
  .p-curriculum__photo::after {
    display: none;
  }
  .curriculum-ribbon {
    height: 40px;
    padding: 0 18px;
  }
  .curriculum-ribbon__num {
    font-size: 18px;
  }
}
/* ==================== INSTRUCTOR ==================== */
.p-instructor {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0 clamp(64px, 8vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 48%,
      rgba(181, 154, 106, 0.16),
      transparent 32%
    ),
    linear-gradient(135deg, #f7f3eb 0%, #fffaf3 48%, #f2eadf 100%);
}
.p-instructor::before {
  position: absolute;
  right: 7%;
  top: 8%;
  content: "Ohina";
  font-family: "Noto Serif JP", serif;
  font-size: clamp(90px, 14vw, 190px);
  font-style: italic;
  line-height: 1;
  color: rgba(181, 154, 106, 0.1);
  pointer-events: none;
}
.p-instructor::after {
  position: absolute;
  left: -8%;
  bottom: 6%;
  width: 44vw;
  height: 28vw;
  content: "";
  background: radial-gradient(
    circle,
    rgba(181, 154, 106, 0.24) 1px,
    transparent 1px
  );
  background-size: 9px 9px;
  transform: rotate(-10deg);
  opacity: 0.45;
  pointer-events: none;
}
.p-instructor__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
}
.p-instructor__main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}
.p-instructor__visual {
  position: relative;
}
.p-instructor__vertical {
  position: absolute;
  left: -54px;
  top: 50%;
  z-index: 2;
  margin: 0;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: 0.12em;
  color: rgba(181, 154, 106, 0.5);
}
.p-instructor__image {
  position: relative;
  padding: 14px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(181, 154, 106, 0.55);
  box-shadow: 0 28px 60px rgba(61, 48, 28, 0.12);
}
.p-instructor__image::before,
.p-instructor__image::after {
  position: absolute;
  width: 28px;
  height: 28px;
  content: "";
  pointer-events: none;
}
.p-instructor__image::before {
  top: -1px;
  right: -1px;
  border-top: 12px solid #f7f3eb;
  border-left: 12px solid transparent;
}
.p-instructor__image::after {
  right: 14px;
  bottom: 22px;
  content: "Re’ink Artist";
  width: auto;
  height: auto;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 4vw, 46px);
  font-style: italic;
  color: rgba(181, 154, 106, 0.78);
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.45);
}
.p-instructor__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}
.p-instructor__label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 22px;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.34em;
  color: #9d7b43;
}
.p-instructor__label::after {
  display: block;
  width: 74px;
  height: 1px;
  content: "";
  background: rgba(181, 154, 106, 0.58);
}
.p-instructor__catch {
  margin: 0;
  font-family: var(--font-mincho, "Noto Serif JP", serif);
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0.06em;
  color: #1e1e1c;
}
.p-instructor__catch span {
  color: #b59a6a;
}
.p-instructor__name {
  margin-top: 28px;
}
.p-instructor__name > span {
  display: block;
  margin-bottom: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #b59a6a;
}
.p-instructor__name strong {
  display: block;
  font-family: var(--font-mincho, "Noto Serif JP", serif);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #1e1e1c;
}
.p-instructor__message {
  position: relative;
  margin: clamp(30px, 4vw, 44px) 0 0;
  padding: clamp(16px, 3vw, 24px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    radial-gradient(
      circle at 95% 10%,
      rgba(181, 154, 106, 0.2),
      transparent 34%
    );
  border: 1px solid rgba(181, 154, 106, 0.55);
}
.p-instructor__message p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-mincho, "Noto Serif JP", serif);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 2;
  letter-spacing: 0.08em;
  color: #25231f;
}
.p-instructor__message strong {
  color: #9d7b43;
  font-size: 1.12em;
  font-weight: 600;
}
.p-instructor__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-en);
  font-size: 14px;
  color: #b59a6a;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-instructor__ig:hover {
  opacity: 0.7;
}
.p-instructor__ig img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
  opacity: 0.85;
}
.p-instructor__works {
  position: relative;
  z-index: 2;
  margin-top: clamp(54px, 7vw, 88px);
}
.p-instructor__works-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
}
.p-instructor__works-head span {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(181, 154, 106, 0.75),
    transparent
  );
}
.p-instructor__works-head p {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  letter-spacing: 0.26em;
  color: #9d7b43;
}
.p-instructor__works-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.p-instructor__work {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(181, 154, 106, 0.7);
  background: #1e1e1c;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}
.p-instructor__work::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.32));
  pointer-events: none;
}
.p-instructor__work img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55/1;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.08);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}
.p-instructor__work:hover img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.1);
}

@media (max-width: 900px) {
  .p-instructor__main {
    grid-template-columns: 1fr;
  }
  .p-instructor__visual {
    width: min(520px, 100%);
    margin: 0 auto;
  }
  .p-instructor__works-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .p-instructor__inner {
    width: min(100% - 28px, 1180px);
  }
  .p-instructor__vertical {
    left: -26px;
    font-size: 48px;
  }
  .p-instructor__image {
    padding: 9px;
  }
  .p-instructor__image::after {
    right: 10px;
    bottom: 16px;
    font-size: 28px;
  }
  .p-instructor__label {
    gap: 12px;
  }
  .p-instructor__label::after {
    width: 48px;
  }
  .p-instructor__catch {
    font-size: clamp(34px, 10vw, 46px);
  }
  .p-instructor__message {
    padding: 34px 20px;
  }
  .p-instructor__message p {
    text-align: left;
    font-size: 17px;
    line-height: 2;
  }
  .p-instructor__message::before {
    left: 14px;
  }
  .p-instructor__message::after {
    right: 14px;
  }
  .p-instructor__works-list {
    grid-template-columns: 1fr;
  }
  .p-instructor__work img {
    aspect-ratio: 1.6/1;
  }
}
/* ==================== PRICE ==================== */
.p-price {
  background: linear-gradient(180deg, #f8f5ef 0%, #f3f1ec 100%);
  padding-block: clamp(80px, 10vw, 130px);
}
.p-price .c-line-button {
  margin-top: 40px;
}

.p-price__card {
  max-width: 920px;
  margin: 64px auto 0;
  padding: clamp(36px, 6vw, 70px);
  text-align: center;
  background: #fff;
  border: 1px solid #cdbb9d;
  box-shadow: 0 18px 44px rgba(30, 30, 30, 0.08);
}

.p-price__label {
  color: var(--gold);
  letter-spacing: 0.16em;
}

.p-price__amount {
  margin: 12px 0 28px;
  font-family: var(--font-en);
  line-height: 1;
  font-size: clamp(56px, 8vw, 100px);
}
.p-price__amount span {
  font-size: 0.45em;
}
.p-price__amount small {
  font-family: var(--font-mincho);
  font-size: 16px;
}
.p-price__amount .u-marker {
  font-size: clamp(56px, 8vw, 100px);
}

.p-price__includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.p-price__includes li {
  padding: 20px;
  background: #fbfaf6;
  border: 1px solid rgba(181, 154, 106, 0.4);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}
.p-price__includes li:hover {
  transform: translateY(-4px);
  border-color: rgba(181, 154, 106, 0.7);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}
.p-price__includes-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.p-price__includes-head span {
  font-family: var(--font-mincho, "Noto Serif JP", serif);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.32em;
  color: #8a7548;
}
.p-price__includes-head svg {
  flex-shrink: 0;
}
.p-price__includes p {
  margin: 0;
  font-family: var(--font-mincho, "Noto Serif JP", serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #1e1e1c;
}
.p-price__includes small {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.7;
  color: #6f6a62;
}
.p-price .c-line-button {
  margin-inline: auto;
}

@media (max-width: 560px) {
  .p-price__includes {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .p-price__includes li {
    padding: 18px 16px;
  }
}
/* ==================== FAQ ==================== */
.p-faq {
  position: relative;
  background: #f0eae0;
  padding-block: clamp(70px, 9vw, 110px);
}
.p-faq__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vw, 64px);
}
.p-faq__list details {
  position: relative;
  z-index: 1;
  height: fit-content;
  padding: clamp(24px, 3vw, 36px);
  background: #fdfaf6;
  border: 1px solid #e2d9cc;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(90, 70, 40, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.p-faq__list details:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(90, 70, 40, 0.1);
}
.p-faq__list summary {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: #1e1e1c;
}
.p-faq__list summary::-webkit-details-marker {
  display: none;
}
.p-faq__q {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: clamp(32px, 3.5vw, 40px);
  height: clamp(32px, 3.5vw, 40px);
  border-radius: 50%;
  background: #1e1e1c;
  color: #fff;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  line-height: 1;
}
.p-faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 16px;
}
.p-faq__a {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: clamp(32px, 3.5vw, 40px);
  height: clamp(32px, 3.5vw, 40px);
  border-radius: 50%;
  background: #f0e8d8;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  line-height: 1;
  color: #b59a6a;
}

@media (max-width: 900px) {
  .p-faq__list {
    grid-template-columns: 1fr;
  }
}
/* ==================== LINE CTA BANNER ==================== */
.p-line-banner {
  padding: clamp(40px, 6vw, 80px) 0;
  background: #f0ebe1;
}
.p-line-banner__box {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid #c8bbaa;
  border-radius: 8px;
  background: #faf7f2;
}
.p-line-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 55%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 56px) clamp(12px, 4vw, 56px);
}
.p-line-banner__label {
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 24px;
  padding: 9px 22px;
  background: #1a1a18;
  color: #fff;
  font-family: var(--font-mincho, "Noto Serif JP", serif);
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 0.05em;
}
.p-line-banner__title {
  margin: 0 0 28px;
  font-family: var(--font-mincho, "Noto Serif JP", serif);
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.6;
  color: #1a1a18;
}
.p-line-banner__title span {
  color: #20b94d;
}
.p-line-banner__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: clamp(14px, 1.8vw, 20px) clamp(20px, 2.5vw, 32px);
  border-radius: 9999px;
  background: linear-gradient(180deg, #2dc057 0%, #1ea848 100%);
  text-decoration: none;
  box-shadow: 0 8px 24px -8px rgba(32, 185, 77, 0.45);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.p-line-banner__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -10px rgba(32, 185, 77, 0.5);
}
.p-line-banner__button svg {
  flex-shrink: 0;
}
.p-line-banner__button-inner {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 16px);
}
.p-line-banner__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(36px, 4vw, 48px);
  height: clamp(36px, 4vw, 48px);
  border-radius: 50%;
  background: transparent;
}
.p-line-banner__button-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.p-line-banner__button-text {
  color: #fff;
  font-family: var(--font-mincho, "Noto Serif JP", serif);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.p-line-banner__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-line-banner__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.p-line-banner__benefits li svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.p-line-banner__benefits strong {
  display: block;
  color: #1a1a18;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 700;
}
.p-line-banner__benefits span {
  display: block;
  margin-top: 2px;
  color: #7a7469;
  font-size: clamp(11px, 0.9vw, 13px);
}
.p-line-banner__image {
  position: relative;
  flex: 0 0 45%;
  min-height: 320px;
}
.p-line-banner__image::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to right, #faf7f2 0%, transparent 30%);
  z-index: 1;
}
.p-line-banner__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .p-line-banner__box {
    flex-direction: column;
  }
  .p-line-banner__image {
    flex: none;
    min-height: 260px;
  }
  .p-line-banner__image::before {
    background: linear-gradient(to top, #faf7f2 0%, transparent 35%);
  }
}
@media (max-width: 560px) {
  .p-line-banner__benefits {
    flex-direction: column;
    gap: 14px;
  }
  .p-line-banner__button {
    padding: 16px 18px;
  }
  .p-line-banner__button-text {
    font-size: 18px;
  }
}
/* ==================== FINAL CTA ==================== */
.p-finalcta {
  position: relative;
  background: linear-gradient(180deg, #f3f1ec 0%, #1e1e1c 48%, #0f0e0c 100%);
  color: #f3efe5;
  padding-top: clamp(90px, 12vw, 150px);
}

.p-finalcta__content {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 80px;
}
.p-finalcta__content p {
  color: var(--line-beige);
  line-height: 2;
}
.p-finalcta__content .c-line-button {
  margin-top: 34px;
}

.p-finalcta__copy {
  margin-top: 54px;
}
.p-finalcta__copy em {
  display: block;
  color: var(--pale-gold);
  font-family: var(--font-en);
  font-size: 24px;
  font-style: normal;
}

/* ==================== FLOW ==================== */
.p-flow {
  position: relative;
  padding-block: clamp(80px, 10vw, 130px);
  background: #151513;
  overflow: hidden;
}
.p-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(181, 154, 106, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}
.p-flow__watermark {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(120px, 18vw, 280px);
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(181, 154, 106, 0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.p-flow .l-container {
  position: relative;
  z-index: 1;
}
.p-flow .c-heading-center--dark .u-divider-diamond__line {
  background: rgba(181, 154, 106, 0.3);
}
.p-flow__list {
  position: relative;
  display: grid;
  gap: 0;
  margin: clamp(48px, 6vw, 80px) auto 0;
  padding: 0;
  max-width: 780px;
  list-style: none;
}
.p-flow__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0 clamp(24px, 3.5vw, 48px);
  align-items: start;
  position: relative;
}
.p-flow__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 2px;
}
.p-flow__step-label {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  letter-spacing: 0.38em;
  color: #b59a6a;
  line-height: 1;
  margin-bottom: 4px;
}
.p-flow__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(181, 154, 106, 0.55);
  border-radius: 50%;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #b59a6a;
  background: rgba(181, 154, 106, 0.06);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition:
    background 0.35s ease,
    border-color 0.35s ease;
}
.p-flow__item:hover .p-flow__num {
  background: rgba(181, 154, 106, 0.14);
  border-color: rgba(181, 154, 106, 0.9);
}
.p-flow__connector {
  display: block;
  width: 1px;
  flex: 1;
  min-height: 60px;
  background: rgba(181, 154, 106, 0.5);
  margin: 8px 0;
}
.p-flow__card {
  padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 36px);
  margin-bottom: clamp(20px, 3vw, 32px);
  background: #f6f0e6;
  border: 1px solid rgba(216, 199, 164, 0.48);
  border-left: 3px solid #b59a6a;
  border-radius: 2px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}
.p-flow__item:hover .p-flow__card {
  background: #fffaf1;
  border-left-color: #b59a6a;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
  transform: translateX(4px);
}
.p-flow__card--final {
  border-left-color: #b59a6a;
  background: #fff6e5;
  position: relative;
}
.p-flow__title {
  margin: 0 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #1f1e1b;
  line-height: 1.4;
}
.p-flow__text {
  margin: 0;
  font-size: clamp(14px, 1.3vw, 15px);
  line-height: 1.9;
  color: #4f493f;
  letter-spacing: 0.02em;
}
.p-flow__complete {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(181, 154, 106, 0.6);
  background: #151513;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: #f4e6c8;
}
.p-flow__complete::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #b59a6a;
  transform: rotate(45deg);
}
.p-flow__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
  text-align: center;
}
.p-flow__note {
  margin: 0;
  font-size: clamp(13px, 1.2vw, 15px);
  color: #d8c7a4;
  letter-spacing: 0.06em;
  line-height: 1.9;
}

@media (max-width: 640px) {
  .p-flow__item {
    grid-template-columns: 56px 1fr;
    gap: 0 16px;
  }
  .p-flow__num {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .p-flow__connector {
    min-height: 40px;
  }
  .p-flow__card {
    padding: 16px 18px;
    margin-bottom: 16px;
  }
  .p-flow__item:hover .p-flow__card {
    transform: none;
  }
  .p-flow__watermark {
    display: none;
  }
}
/* ==================== TERMS ==================== */
.p-terms {
  padding-block: clamp(64px, 8vw, 100px);
  background: #f8f5ef;
  border-top: 1px solid #e8dfd2;
}
.p-terms__heading {
  margin: 0 0 clamp(40px, 5vw, 64px);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #1e1e1c;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8cfc3;
  position: relative;
}
.p-terms__heading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  width: 48px;
  height: 1px;
  background: #b59a6a;
}
.p-terms__block {
  margin-bottom: clamp(32px, 4vw, 48px);
  padding: clamp(24px, 3vw, 36px);
  background: #fff;
  border: 1px solid #e8dfd2;
  border-top: 2px solid #b59a6a;
}
.p-terms__block:last-child {
  margin-bottom: 0;
}
.p-terms__title {
  margin: 0 0 16px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #2a2926;
}
.p-terms__lead {
  margin: 0 0 14px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.95;
  color: #5a5650;
}
.p-terms__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2px;
}
.p-terms__list li {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.95;
  color: #5a5650;
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid #f0ece5;
}
.p-terms__list li:last-child {
  border-bottom: none;
}
.p-terms__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 5px;
  height: 5px;
  background: #b59a6a;
  transform: rotate(45deg);
}
.p-terms__note {
  margin: 16px 0 0;
  padding: 14px 16px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.95;
  color: #6f6a62;
  background: #f8f5ef;
  border-left: 2px solid rgba(181, 154, 106, 0.4);
}

@media (max-width: 640px) {
  .p-terms__block {
    padding: 20px 18px;
  }
}
.p-footer {
  border-top: 1px solid rgba(216, 199, 164, 0.18);
  padding: 34px 0;
  background: #f8f5ef;
  color: #6f6a62;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.p-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}
.p-footer__links li + li::before {
  content: "|";
  margin: 0 12px;
  color: rgba(181, 154, 106, 0.45);
}
.p-footer__links a {
  color: #6f6a62;
  text-decoration: none;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}
.p-footer__links a:hover {
  color: #b59a6a;
}
.p-footer__copy {
  margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .p-hero::after {
    display: none;
  }
  .p-hero__content {
    width: 100%;
    min-height: auto;
    padding: 28px 24px 60px;
  }
  .p-hero__scroll,
  .p-hero__tagline {
    display: none;
  }
  .p-about__inner,
  .c-feature-card,
  .p-features__list article,
  .p-instructor__profile,
  .p-line-banner__box {
    grid-template-columns: 1fr;
  }
  .p-features__list article:nth-child(even) figure {
    order: initial;
  }
  .p-hotjob__grid,
  .p-price__includes {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-curriculum__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .l-container {
    width: min(100% - 28px, 1240px);
  }
  .c-section-label {
    padding-inline: 18px;
    letter-spacing: 0.22em;
  }
  .p-hero__note-item {
    gap: 12px;
  }
  .p-hero__note-item img {
    width: 36px;
  }
  .p-hotjob__grid,
  .p-curriculum__list,
  .p-price__includes,
  .p-instructor__profile ul {
    grid-template-columns: 1fr;
  }
  .p-hotjob__grid article {
    border-left: 0;
    border-top: 1px solid rgba(181, 154, 106, 0.28);
  }
  .p-hotjob__grid article:first-child {
    border-top: 0;
  }
  .p-problem__image {
    padding: 24px;
    height: unset;
  }
  .c-feature-card {
    padding: 28px 18px;
  }
  .p-price__card {
    padding: 32px 18px;
  }
  .p-line-banner,
  .p-price {
    .c-line-button-inner {
      gap: 2px;
    }
    .c-line-button svg {
      right: 12px;
    }
    .c-line-button-icon {
      width: 28px;
    }
  }
  .c-feature-card h3 {
    font-size: 20px;
  }
}
