/* OPENING */
#opening { position: fixed; inset: 0; background: var(--ink); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.7s ease 0.9s, visibility 0.7s ease 0.9s; }
#opening.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.opening__logo {
  height: 52px;
  width: auto;
  max-width: 280px;
  filter: brightness(0) invert(1);
  animation: openingFade 0.7s ease forwards;
  display: block;
}
@media (max-width: 480px) { .opening__logo { height: 38px; max-width: 200px; } }
.opening__bar { position: absolute; bottom: 0; left: 0; height: 1px; background: #fff; animation: openingBar 1.4s cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes openingFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes openingBar { from { width: 0; } to { width: 100%; } }

/* MV */
.mv { position: relative; overflow: hidden; height: 100svh; min-height: 600px; background: var(--ink); }
.mv__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.mv__slide.active { opacity: 1; }
.mv__slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; animation: kenBurns 12s ease-in-out infinite alternate; }
@keyframes kenBurns { from { transform: scale(1.0); } to { transform: scale(1.14); } }
.mv__overlay { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: rgba(10,10,10,0.88); transition: background 2.2s cubic-bezier(0.4,0,0.2,1) 0.6s; }
.mv__overlay.on { background: rgba(10,10,10,0.42); }
.mv__indicators { position: absolute; right: 5%; bottom: 36px; z-index: 10; display: flex; gap: 10px; align-items: center; }
.mv__ind { width: 56px; height: 2px; background: rgba(255,255,255,0.22); position: relative; overflow: hidden; cursor: pointer; }
.mv__ind::after { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; background: rgba(255,255,255,0.9); }
.mv__ind.active::after { width: 100%; transition: width 5s linear; }
@media (min-width: 768px) { .mv__slide--sp { display: none; } }
@media (max-width: 767px) { .mv__slide--pc { display: none; } }
.recruit-btn { position: absolute; bottom: 120px; right: 7%; width: 160px; height: 160px; z-index: 10; display: flex; align-items: center; justify-content: center; }
.recruit-btn__svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: recruitSpin 14s linear infinite; overflow: visible; }
.recruit-btn:hover .recruit-btn__svg { animation-duration: 5s; }
.recruit-btn__core { width: 58px; height: 58px; border: 1px solid rgba(255,255,255,0.28); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; z-index: 1; transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease; }
.recruit-btn:hover .recruit-btn__core { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); transform: scale(1.1); }
@keyframes recruitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.mv__stripe { position: absolute; top: 0; left: 7%; width: 1px; height: 0; background: rgba(255,255,255,0.4); z-index: 3; transition: height 1.2s cubic-bezier(0.16,1,0.3,1) 0.4s; }
.mv__stripe.on { height: 100%; }
.mv__copy { position: absolute; top: 50%; left: 11%; transform: translateY(-50%); z-index: 10; }
.mv__copy--logo { left: 50%; transform: translate(-50%, -50%); text-align: center; }
.mv__logo { width: 340px; max-width: 65vw; opacity: 0; filter: brightness(0) invert(1); transition: opacity 1.2s ease 0.8s; }
.mv__logo.on { opacity: 1; }
.mv__logo-sub { font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 400; letter-spacing: 6px; text-transform: lowercase; color: rgba(255,255,255,0.5); margin-top: 14px; opacity: 0; transition: opacity 1s ease 1.2s; }
.mv__logo.on ~ .mv__logo-sub, .mv__logo-sub.on { opacity: 1; }
@media (max-width: 767px) { .mv__logo { width: 340px; } .mv__logo-sub { font-size: 11px; letter-spacing: 6px; } }
@media (max-width: 767px) { .mv__copy { left: 7%; top: 54%; } .mv__copy--logo { left: 50%; top: 50%; transform: translate(-50%, -50%); } .recruit-btn { width: 100px; height: 100px; bottom: 70px; right: 5%; } .recruit-btn__core { width: 38px; height: 38px; font-size: 14px; } .mv__indicators { bottom: 24px; } .mv__ind { width: 36px; } .mv__scroll { display: none !important; } }
.mv__eyebrow { font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 6px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 28px; opacity: 0; transform: translateY(10px); transition: opacity 1s ease, transform 1s cubic-bezier(0.16,1,0.3,1); }
.mv__eyebrow.on { opacity: 1; transform: translateY(0); }
.mv__title { font-family: 'Roboto', sans-serif; font-size: 10.2vw; font-weight: 900; color: #fff; line-height: 1.18; text-transform: lowercase; letter-spacing: 2px; }
@media (max-width: 767px) { .mv__title { font-size: 18vw; letter-spacing: 0; line-height: 1.18; } }
.reveal-wrap { display: block; }
.reveal-text { display: inline-block; opacity: 0; transform: translateY(22px); transition: opacity 1.2s ease, transform 1.4s cubic-bezier(0.16,1,0.3,1); }
.reveal-text.on { opacity: 1; transform: translateY(0); }
.mv__scroll { position: absolute; bottom: 32px; left: calc(7% + 16px); z-index: 10; font-family: 'Archivo', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 4px; color: rgba(255,255,255,0.5); text-transform: uppercase; writing-mode: vertical-rl; opacity: 0; transition: opacity 0.6s ease 2s; }
.mv__scroll.on { opacity: 1; }
.mv__scroll::before { content: ''; display: block; width: 1px; height: 50px; background: rgba(255,255,255,0.3); margin: 0 auto 8px; animation: scrollLine 2s ease-in-out 2s infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* NEWS TICKER */
.news-ticker { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; height: 52px; overflow: hidden; }
.news-ticker__label { font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: #fff; padding: 0 28px; border-right: 1px solid rgba(255,255,255,0.1); flex-shrink: 0; white-space: nowrap; }
.news-ticker__track { flex: 1; overflow: hidden; }
.news-ticker__inner { display: inline-flex; gap: 80px; white-space: nowrap; animation: ticker 28s linear infinite; }
.news-ticker__inner:hover { animation-play-state: paused; }
.news-ticker__item { font-family: 'Archivo', sans-serif; font-size: 11px; letter-spacing: 1px; color: rgba(255,255,255,0.4); flex-shrink: 0; }
.news-ticker__item .ticker-date { color: rgba(255,255,255,0.2); margin-right: 16px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT (旧スタイル) — コメントアウト保持
.top-about { padding-top: 80px; padding-bottom: 40px; }
.top-about__lead { display: grid; grid-template-columns: 420px 1fr; border-top: 1px solid #ebebeb; border-bottom: 1px solid #ebebeb; min-height: 480px; }
...
.feature-block__text.light p { color: #555; }
============================================================ */

/* ABOUT (新スタイル) */
.top-about { padding-top: 120px; }
@media (max-width: 834px) { .top-about { padding-top: 80px; } }

/* LEAD — goald風センター構成 */
.about-lead {
  max-width: 900px; width: 90%; margin: 0 auto;
  padding-bottom: 100px;
  text-align: center;
}

.about-lead__tag {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 5px; color: #bbb;
  text-transform: uppercase;
  display: block; margin-bottom: 52px;
}

.about-lead__logo {
  width: clamp(140px, 26vw, 320px); height: auto;
  filter: brightness(0);
  display: block; margin: 0 auto 72px;
}
@media (max-width: 767px) { .about-lead__logo { margin-bottom: 52px; } }

.about-lead__catch {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700; line-height: 1.9;
  letter-spacing: 0.02em; color: var(--ink);
  margin-bottom: 52px;
}

.about-lead__text {
  font-size: 14px; line-height: 3;
  color: #888; margin-bottom: 52px;
}
@media (max-width: 767px) { .about-lead__text { line-height: 2.6; } }

.about-lead__meta {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 4px; color: #ccc;
  text-transform: uppercase;
}

/* TICKER (変更なし) */
.about-ticker { overflow: hidden; border-top: 1px solid #ebebeb; border-bottom: 1px solid #ebebeb; padding: 18px 0; }
.about-ticker__inner { display: flex; animation: aboutTick 18s linear infinite; width: max-content; }
@keyframes aboutTick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.about-ticker__item { font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: #ccc; padding: 0 32px; white-space: nowrap; }
.about-ticker__item.accent { color: var(--ink); }

/* FEATURE BLOCKS */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; height: 560px; }
@media (max-width: 834px) { .feature-block { grid-template-columns: 1fr; height: auto; } }
.feature-block.reverse .feature-block__img { order: 2; }
.feature-block.reverse .feature-block__text { order: 1; }
@media (max-width: 834px) { .feature-block.reverse .feature-block__img, .feature-block.reverse .feature-block__text { order: 0; } }

.feature-block__img { overflow: hidden; height: 100%; }
.feature-block__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.0s cubic-bezier(0.16,1,0.3,1); }
@media (max-width: 834px) { .feature-block__img { height: 260px; } }
.feature-block:hover .feature-block__img img { transform: scale(1.05); }

.feature-block__text {
  background: var(--ink);
  padding: 72px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.feature-block__text.light { background: #f5f5f5; }
@media (max-width: 1100px) { .feature-block__text { padding: 56px 48px; } }
@media (max-width: 834px) { .feature-block__text { padding: 48px 6%; } }

.feature-block__label {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 36px;
}
.feature-block__num {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: 5px;
  color: rgba(255,255,255,0.3); text-transform: uppercase;
  flex-shrink: 0;
}
.feature-block__text.light .feature-block__num { color: #bbb; }
.feature-block__line {
  display: block; flex: 1; height: 1px;
  background: rgba(255,255,255,0.1);
}
.feature-block__text.light .feature-block__line { background: #ddd; }

.feature-block__text h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(24px, 2.4vw, 36px); font-weight: 700;
  line-height: 1.55; color: #fff; margin-bottom: 28px;
}
.feature-block__text.light h3 { color: var(--ink); }

.feature-block__text p {
  font-size: 14px; color: rgba(255,255,255,0.65);
  line-height: 2.2; max-width: 400px;
}
.feature-block__text.light p { color: #666; }

/* STYLE SECTION (top-page) */
.top-style { padding-top: 60px; padding-bottom: 40px; }
.style-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.style-tag-btn { font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 7px 18px; border: 1.5px solid #ddd; background: #fff; color: #aaa; cursor: pointer; transition: all 0.2s; }
.style-tag-btn:hover, .style-tag-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.top-style-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
@media (max-width: 1024px) { .top-style-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px) { .top-style-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .top-style-grid { grid-template-columns: repeat(2, 1fr); } }
.style-item { cursor: pointer; overflow: hidden; position: relative; }
.style-item .style-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 0.5s; display: block; }
.style-item:hover .style-img img { transform: scale(1.06); }
.style-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(32,32,32,0.8)); color: #fff; font-size: 11px; padding: 24px 8px 8px; opacity: 0; transition: opacity 0.3s; }
.style-item:hover .style-label { opacity: 1; }
.style-modal { display: none; position: fixed; inset: 0; z-index: 5000; }
.style-modal.open { display: flex; align-items: center; justify-content: center; }
.style-modal__bg { position: absolute; inset: 0; background: rgba(0,0,0,0.85); cursor: pointer; }
.style-modal__content { position: relative; background: #fff; width: 90%; max-width: 800px; display: grid; grid-template-columns: 1fr 1fr; max-height: 92vh; overflow: hidden; z-index: 1; }
@media (max-width: 640px) { .style-modal__content { grid-template-columns: 1fr; } }
.style-modal__close { position: absolute; top: 14px; right: 18px; font-size: 1.6rem; cursor: pointer; color: #bbb; z-index: 10; line-height: 1; }
.style-modal__close:hover { color: var(--ink); }
.style-modal__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 640px) { .style-modal__img { display: none; } }
.style-modal__info { padding: 44px 36px; overflow-y: auto; }
.style-modal__name { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.style-modal__recs { font-size: 13px; color: #555; line-height: 1.9; background: #f6f6f6; padding: 16px; margin-bottom: 20px; border-left: 1px solid #d0d0d0; white-space: pre-line; }
.style-modal__recs strong { font-size: 10px; color: #999; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 6px; font-style: normal; }
.style-modal__row { margin-bottom: 14px; }
.style-modal__row dt { font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #bbb; margin-bottom: 4px; }
.style-modal__row dd { font-size: 14px; color: #444; }
.style-modal__reserve { display: block; margin-top: 28px; background: var(--ink); color: #fff; font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; text-align: center; padding: 16px; transition: background 0.3s; }
.style-modal__reserve:hover { background: #444; }

/* MENU SECTION */
.top-salon { background: var(--ink); padding-top: 120px; }
.top-salon h2 { color: #fff; }
.top-salon h2 .sub-title { color: rgba(255,255,255,0.3); }
.top-salon__prices { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 60px; }
@media (max-width: 767px) { .top-salon__prices { grid-template-columns: 1fr; } }
.price-item { padding: 44px 36px; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; }
.price-item:last-child { border-right: none; }
@media (max-width: 767px) { .price-item { border-right: none; padding: 32px 6%; } }
.price-item__num { font-family: 'Archivo', sans-serif; font-weight: 800; font-style: italic; font-size: 11px; letter-spacing: 3px; color: #666; margin-bottom: 20px; display: block; }
.price-item__name { font-family: 'Archivo', sans-serif; font-size: 32px; font-weight: 800; font-style: italic; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.price-item__price { font-family: 'Archivo', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.price-item__price strong { font-size: 24px; color: rgba(255,255,255,0.75); margin-right: 2px; }
.price-item__desc { font-size: 13px; color: #555; line-height: 1.9; }
.top-salon .lead-text { font-size: 15px; color: #555; line-height: 2; max-width: 640px; margin-bottom: 32px; }

/* ===================== RECRUIT ===================== */
.top-recruit {
  background: var(--ink);
  padding-top: 120px;
  padding-bottom: 0;
  overflow: hidden;
}
@media (max-width: 834px) { .top-recruit { padding-top: 80px; } }

/* リード */
.rct-lead {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

/* 背景の大文字 RECRUIT */
.rct-lead__bg-text {
  position: absolute;
  top: -0.1em;
  left: -0.05em;
  font-family: 'Archivo', sans-serif;
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* 上段テキスト */
.rct-lead__upper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 72px 0 56px;
}
@media (max-width: 767px) { .rct-lead__upper { flex-direction: column; gap: 24px; padding: 56px 0 40px; } }

.rct-lead__catch {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-style: italic;
  transform: rotate(-2deg);
  transform-origin: left bottom;
  flex-shrink: 0;
}

.rct-lead__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 2.2;
  max-width: 340px;
  padding-top: 8px;
  align-self: flex-start;
  margin-top: 8px;
}

/* 集合写真 */
.rct-lead__photo {
  width: 100%;
  overflow: hidden;
}
.rct-lead__photo img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
  filter: grayscale(100%) brightness(0.75);
}
@media (max-width: 767px) { .rct-lead__photo img { height: auto; object-fit: initial; } }

/* ---- 募集要項セクション（白背景） ---- */
.rct-jobs-section {
  background: #fff;
  padding-top: 72px;
  padding-bottom: 72px;
}
@media (max-width: 767px) { .rct-jobs-section { padding-top: 48px; padding-bottom: 52px; } }

.rct-jobs-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: #bbb; margin-bottom: 10px; display: block;
}
.rct-jobs-section__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700; color: var(--ink);
  margin-bottom: 40px;
}

/* タブボタン（白背景・アンダーライン式） */
.rct-tab-nav {
  display: flex;
  border-bottom: 2px solid #e8e8e8;
  margin-bottom: 48px;
}
@media (max-width: 767px) { .rct-tab-nav { margin-bottom: 32px; } }
.rct-tab-nav__btn {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #bbb; background: none; border: none;
  padding: 14px 40px 14px 0;
  cursor: pointer; position: relative;
  transition: color 0.2s; letter-spacing: 0.05em;
}
.rct-tab-nav__btn::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 0; height: 2px;
  background: var(--ink); transform: scaleX(0);
  transition: transform 0.3s ease;
}
.rct-tab-nav__btn.is-active { color: var(--ink); }
.rct-tab-nav__btn.is-active::after { transform: scaleX(1); }
.rct-tab-nav__btn:hover { color: var(--ink); }

/* タブコンテンツ */
.rct-tab-contents { min-height: 480px; }
.js-tabmenu-content { display: none; }
.js-tabmenu-content.is-active { display: block; }

/* ---- カルチャー 01/02/03 ---- */
.rct-culture {
  padding: 80px 0 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 767px) { .rct-culture { padding: 48px 0 24px; } }
.rct-culture__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(19px, 2.2vw, 29px);
  font-weight: 700; color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-bottom: 56px;
}
@media (max-width: 767px) { .rct-culture__title { margin-bottom: 32px; } }
.rct-culture__list { list-style: none; }
.rct-culture__item {
  padding-bottom: 60px;
}

.rct-culture__item__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
@media (max-width: 834px) { .rct-culture__item__grid { height: auto; } }
.rct-culture__item__grid--rev .rct-culture__textarea  { order: 2; }
.rct-culture__item__grid--rev .rct-culture__imagearea { order: 1; }
@media (max-width: 834px) {
  .rct-culture__item__grid,
  .rct-culture__item__grid--rev { grid-template-columns: 1fr; min-height: auto; }
  .rct-culture__item__grid--rev .rct-culture__textarea,
  .rct-culture__item__grid--rev .rct-culture__imagearea { order: 0; }
}

.rct-culture__textarea {
  padding: 48px 52px 48px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.rct-culture__item__grid--rev .rct-culture__textarea {
  padding: 48px 0 48px 52px;
}
@media (max-width: 1100px) {
  .rct-culture__textarea { padding: 36px 36px 36px 0; }
  .rct-culture__item__grid--rev .rct-culture__textarea { padding: 36px 0 36px 36px; }
}
@media (max-width: 834px) {
  .rct-culture__textarea { padding: 32px 6%; }
  .rct-culture__item__grid--rev .rct-culture__textarea { padding: 32px 6%; }
}

.rct-culture__num {
  display: flex; align-items: baseline; gap: 6px;
  font-family: 'Archivo', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900; font-style: italic; line-height: 1;
  color: rgba(255,255,255,0.10);
  margin-bottom: 16px; letter-spacing: -2px;
}
.rct-culture__point {
  font-family: 'Archivo', sans-serif;
  font-size: 0.55em;
  font-weight: 900; font-style: italic;
  letter-spacing: 3px; text-transform: uppercase;
}
.rct-culture__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700; color: #fff;
  line-height: 1.5; margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rct-culture__hl {
  background: none;
  padding-bottom: 0;
}
.rct-culture__text {
  font-size: 13px; color: rgba(255,255,255,0.48);
  line-height: 2.2;
}
.rct-culture__example {
  display: inline-block; margin-top: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 18px;
}
.rct-culture__example p {
  font-size: 12px; font-family: 'Archivo', sans-serif;
  letter-spacing: 0.05em; color: rgba(255,255,255,0.7);
  line-height: 1.6; margin: 0;
}

.rct-culture__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rct-culture__stat-min {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.rct-culture__stat-num {
  font-family: 'Archivo', sans-serif;
  font-size: 38px; font-weight: 900; font-style: italic;
  color: #fff; line-height: 1;
}
.rct-culture__stat-num em {
  font-size: 16px; font-style: normal;
  color: rgba(255,255,255,0.55);
}
.rct-culture__stat-label {
  font-size: 12px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
}

.rct-culture__imagearea { overflow: hidden; height: 100%; }
.rct-culture__image {
  width: 100%; height: 100%; margin: 0;
}
.rct-culture__image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.78);
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}
.rct-culture__item:hover .rct-culture__image img { transform: scale(1.04); }
@media (max-width: 834px) { .rct-culture__imagearea { height: 240px; } }
@media (max-width: 767px) {
  .rct-culture__item { padding-bottom: 28px; }
  .rct-culture__imagearea { height: 190px; }
  .rct-culture__textarea { padding: 22px 16px; }
  .rct-culture__item__grid--rev .rct-culture__textarea { padding: 22px 16px; }
  .rct-culture__num { font-size: 28px; margin-bottom: 8px; }
  .rct-culture__heading { font-size: 21px; margin-bottom: 8px; padding-bottom: 8px; }
  .rct-culture__text { font-size: 12px; line-height: 1.85; }
  .rct-culture__example { padding: 9px 12px; margin-top: 14px; }
  .rct-culture__example p { font-size: 11px; }
}

/* ---- 募集要項テーブル ---- */
.rct-jobs {
  background: #fff;
  padding: 0 0 200px;
}
@media (max-width: 767px) { .rct-jobs { padding: 0 0 120px; } }
.rct-jobs__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700; color: var(--ink);
  margin-bottom: 8px;
}
.rct-jobs__caption {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: #bbb; margin-bottom: 36px;
  caption-side: bottom; text-align: left;
}
table.rct-jobs__table { caption-side: top; }
.rct-jobs__table {
  width: 100%; border-collapse: collapse;
  margin-bottom: 50px;
}
.rct-jobs__table tr { border-bottom: 1px solid #ebebeb; }
.rct-jobs__table tr:first-child { border-top: 1px solid #ebebeb; }
.rct-jobs__table th,
.rct-jobs__table td {
  padding: 20px 0; font-size: 14px;
  line-height: 2.2; text-align: left; vertical-align: top;
}
.rct-jobs__table th {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #aaa; width: 180px; padding-right: 32px;
  white-space: nowrap;
}
.rct-jobs__table td { color: #444; }
.rct-sub { font-size: 13px; color: #222; font-weight: 600; display: inline-block; margin-top: 8px; border: 1.5px solid #222; padding: 6px 14px; }
.rct-sub-plain { font-size: 12px; color: #999; display: block; margin-top: 4px; }
.rct-achievement { display: inline-block; margin-left: 10px; font-size: 11px; font-weight: 700; color: #fff; background: #222; padding: 3px 9px; letter-spacing: 0.08em; vertical-align: middle; }
.rct-tab-nav__badge { display: inline-block; margin-left: 8px; font-size: 10px; font-weight: 700; color: #c0392b; border: 1.5px solid #c0392b; padding: 2px 7px; letter-spacing: 0.04em; vertical-align: middle; }
@media (max-width: 767px) {
  .rct-jobs__table th,
  .rct-jobs__table td { display: block; padding: 6px 0; }
  .rct-jobs__table th { border: none; width: auto; padding-bottom: 2px; }
  .rct-jobs__table tr { padding: 14px 0; display: block; }
}

/* CTA */
.rct-cta {
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  gap: 28px;
  padding: 100px 5% 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  background: linear-gradient(rgba(14,14,14,0.88), rgba(14,14,14,0.88)), url('../img/recruit-bg.png') center / cover no-repeat;
}
/* 背景 RECRUIT テキスト */
.rct-cta::before {
  content: 'RECRUIT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Archivo', sans-serif;
  font-size: clamp(80px, 18vw, 220px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.035);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 767px) { .rct-cta { padding: 72px 6%; gap: 22px; } }

.rct-cta__heading {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900; color: #fff;
  line-height: 1.35; letter-spacing: -0.02em;
  position: relative;
  font-style: italic;
}
.rct-cta__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  position: relative;
}
.rct-cta__btn {
  display: inline-block;
  background: #fff; color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.15em;
  padding: 22px 80px;
  position: relative;
  transition: background 0.3s;
  margin-top: 8px;
}
.rct-cta__btn:hover { background: rgba(255,255,255,0.88); }
@media (max-width: 767px) { .rct-cta__btn { padding: 20px 52px; font-size: 15px; } }

.rct-cta__ig {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: rgba(255,255,255,0.25); transition: color 0.3s;
  position: relative;
}
.rct-cta__ig:hover { color: rgba(255,255,255,0.7); }
.rct-cta__ig i { font-size: 15px; }

/* NEWS */
.top-news { padding-top: 120px; }
.top-news__list { list-style: none; }
.top-news__item { border-bottom: 1px solid #ebebeb; }
.top-news__item:first-child { border-top: 1px solid #ebebeb; }
.top-news__link { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; gap: 16px; transition: opacity 0.2s; }
.top-news__link:hover { opacity: 0.55; }
.top-news__left { display: flex; align-items: center; gap: 18px; flex: 1; min-width: 0; }
.top-news__left .meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.top-news__left .category { font-family: 'Archivo', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: 1px solid var(--ink); color: var(--ink); padding: 3px 9px; flex-shrink: 0; }
.top-news__left .date { font-family: 'Archivo', sans-serif; font-size: 12px; color: #bbb; white-space: nowrap; }
.top-news__left .title { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-news__link .read { font-family: 'Archivo', sans-serif; font-size: 18px; color: #ccc; flex-shrink: 0; transition: color 0.2s, transform 0.2s; display: block; }
.top-news__link:hover .read { color: var(--ink); transform: translateX(4px); }

/* SNS */
.top-sns {
  padding-top: 72px;
  background: var(--ink);
}
.top-sns__inner {}
.top-sns__text { margin-bottom: 48px; }
.top-sns__text h2 { color: #fff; }
.top-sns__text h2 .sub-title { color: rgba(255,255,255,0.3); }
.top-sns__text p { font-size: 14px; color: #555; }
.top-sns__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
@media (max-width: 767px) { .top-sns__grid { grid-template-columns: repeat(2, 1fr); } }
.sns-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; aspect-ratio: 1/1; text-decoration: none; position: relative; overflow: hidden; transition: filter 0.3s ease, transform 0.3s ease; }
.sns-card:hover { filter: brightness(1.1); transform: scale(1.02); }
.sns-card.instagram { background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); }
.sns-card.youtube { background: #FF0000; }
.sns-card.tiktok { background: #010101; }
.sns-card.line { background: #06C755; }
.sns-card i { font-size: 82px; color: #fff; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
@media (max-width: 767px) { .sns-card i { font-size: 48px; } .sns-card { gap: 14px; } }
.sns-card:hover i { transform: scale(1.1); }
.sns-card__platform { font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.sns-card__cta { font-family: 'Archivo', sans-serif; font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.5); text-transform: uppercase; }
@media (max-width: 480px) { .sns-card__cta { display: none; } }
.top-sns__youtube { margin-top: 60px; padding-top: 60px; border-top: 1px solid rgba(255,255,255,0.08); display: grid; grid-template-columns: 1fr 560px; gap: 60px; align-items: center; }
@media (max-width: 1100px) { .top-sns__youtube { grid-template-columns: 1fr; gap: 32px; } }
.top-sns__youtube-label { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.top-sns__youtube-label i { font-size: 18px; color: #FF0000; }
.top-sns__youtube-label span { font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 4px; color: rgba(255,255,255,0.35); text-transform: uppercase; }
.top-sns__youtube-title { font-family: 'Archivo', sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; }
.top-sns__youtube-desc { font-size: 13px; color: #555; line-height: 1.8; margin-bottom: 28px; }
.top-sns__youtube-cta { display: inline-flex; align-items: center; gap: 8px; font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.4); text-transform: uppercase; transition: color 0.3s; }
.top-sns__youtube-cta:hover { color: #fff; }
.top-sns__youtube-cta i { color: #FF0000; }
.top-sns__youtube-embed { position: relative; width: 100%; aspect-ratio: 16/9; background: #111; }
.top-sns__youtube-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
