@charset "UTF-8";
/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .rs-header 系      - スティッキー半透明ヘッダー（ロゴ・ナビ・電話・SNS・CTA）
 * .rs-splash         - オープニングアニメーション（黄色→スライドイン）
 * .rs-btn            - 立体ドロップシャドウ付きpillボタン（--yellow / --blue / --white / --sm）
 * .rs-head / .rs-eyebrow / .rs-sec-title / .rs-title-bar - セクション見出し（黄色バー＋Jostラベル＋大見出し＋下線バー）
 * .rs-wave           - セクション境界のSVG波型ディバイダー（--white/--cyan/--cream/--yellow）
 * .rs-sec            - セクション余白＋背景（--cream/--white/--cyan）
 * .rs-card-hover     - ホバーで浮くカード共通挙動
 * .rs-hero 系        - TOPメインビュー（動画カード＋キャッチ）
 * .rs-work-card / .rs-biz-card / .rs-svc-card / .rs-menu-card / .rs-strength-card / .rs-prod-card - 各カード
 * .rs-msg            - TOPメッセージ（水色2カラム）
 * .rs-cta / .rs-footer - 共通CTA帯／フッター（水色）
 * .rs-flow           - ご契約までの流れ（ステップ＋矢印）
 * .rs-timeline       - 略歴タイムライン
 * .rs-recruit / .rs-form-card / .rs-in / .rs-info-card - お問い合わせ・募集
 * .rs-2col           - 下層の2カラムグリッド（--greet/--scene/--form/--recruit）
 *
 * ======================================
 * 共通SCSSに不足していたもの（5分類）
 * ======================================
 * ・装飾パターン不足：立体ドロップシャドウpillボタン、SVG波型ディバイダー、
 *   「黄色バー＋Jost英字ラベル＋下線バー」型のセクション見出し
 * ・構造不足：半透明スティッキーヘッダー＋オープニングスプラッシュ、
 *   水色2カラムメッセージ、動画メインビューカード
 * ・値の粒度不足：見出し34px・本文15.5px等、参考デザイン固有のサイズ／配色
 */

/* ==========================================================================
   共通トークン
   ========================================================================== */
.rs-en { font-family: "Jost", sans-serif; }
.rs-hl { color: #FCBA30; }
.rs-hl--strong { color: #FCBA30; font-weight: 700; }
.rs-em { color: #B0872A; font-weight: 700; }
body.rs-noscroll { overflow: hidden; }

/* 幅コンテナ（参考デザイン固有の中央幅） */
.rs-w-760 { max-width: 760px; margin-left: auto; margin-right: auto; }
.rs-w-820 { max-width: 820px; margin-left: auto; margin-right: auto; }
.rs-w-960 { max-width: 960px; margin-left: auto; margin-right: auto; }
.rs-w-1000 { max-width: 1000px; margin-left: auto; margin-right: auto; }
.rs-w-1120 { max-width: 1120px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   オープニングスプラッシュ
   ========================================================================== */
.rs-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fddb00;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .6s ease;
}
.rs-splash.is-leaving { opacity: 0; }
.rs-splash.is-hidden { display: none; }
.rs-splash__text {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 7.5vw, 120px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: #ffffff;
  white-space: nowrap;
  animation: rs-splash-slide 1.5s cubic-bezier(.22, 1, .36, 1) both;
}
.rs-splash__video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes rs-splash-out {
  0%, 88% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
@keyframes rs-splash-slide {
  0% { opacity: 0; transform: translateX(46vw); }
  42% { opacity: 1; transform: translateX(-16px); }
  60% { transform: translateX(9px); }
  78% { transform: translateX(-4px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes rs-bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

/* ==========================================================================
   ヘッダー（半透明スティッキー）
   ========================================================================== */
.rs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #F0EBDD;
  box-shadow: none;
}
.rs-header .header__inner {
  max-width: 1200px;
  padding: 0 24px;
  height: 74px;
}
.rs-logo { display: flex; align-items: center; gap: 11px; }
.rs-logo img { height: 50px; width: auto; display: block; border-radius: 6px; }
.rs-logo__text { display: flex; flex-direction: column; line-height: 1; }
.rs-logo__en {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  white-space: nowrap;
}
.rs-logo__ja {
  font-size: 10.5px;
  color: #8A8375;
  margin-top: 4px;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
/* ナビ（EN+JA）の色をサイトに合わせる */
.rs-header .header__nav { margin-right: 8px; }
.rs-header .header__nav-item a { padding: 8px 14px; }
.rs-header .header__nav-en { color: #B0872A; letter-spacing: 0.1em; }
.rs-header .header__nav-ja { color: #1A1A1A; font-size: 1.3rem; }
.rs-header .header__nav-item a.rs-nav-current::after { width: 80%; left: 10%; }

.rs-header__right { display: flex; align-items: center; gap: 14px; }
.rs-header__tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #1A1A1A;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}
.rs-header__tel i { color: #FCBA30; font-size: 14px; }
.rs-header__sns { display: flex; align-items: center; gap: 10px; }
.rs-header__sns a { color: #1A1A1A; font-size: 18px; line-height: 1; }
.rs-header__sns a:hover { opacity: 0.6; }
.rs-header__cta {
  text-decoration: none;
  background: #FCBA30;
  color: #1A1A1A;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 0 #E0A21C;
  transition: transform .12s ease, box-shadow .12s ease;
}
.rs-header__cta:hover { transform: translateY(4px); box-shadow: 0 0 0 #E0A21C; opacity: 1; }
.rs-header__cta:active { transform: translateY(4px); box-shadow: 0 0 0 #E0A21C; }

.rs-spnav-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}

/* ==========================================================================
   ボタン（立体ドロップシャドウ pill）
   ========================================================================== */
.rs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  padding: 14px 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.rs-btn--yellow { background: #FCBA30; color: #1A1A1A; box-shadow: 0 5px 0 #C98F14; }
.rs-btn--blue { background: #33B5E5; color: #ffffff; box-shadow: 0 5px 0 #1E90C4; }
.rs-btn--white { background: #ffffff; color: #1A1A1A; border: 1.5px solid #E4DECF; }
.rs-btn--sm { font-size: 14.5px; padding: 13px 26px; }
.rs-btn:hover { transform: translateY(5px); box-shadow: 0 0 0 transparent; opacity: 1; }
.rs-btn:active { transform: translateY(5px); box-shadow: 0 0 0 transparent; }

/* ==========================================================================
   セクション見出し（eyebrow + title + bar）
   ========================================================================== */
.rs-head { margin-bottom: 44px; }
.rs-eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.rs-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: #FCBA30;
  border-radius: 3px;
  flex-shrink: 0;
}
.rs-eyebrow__label {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: #B0872A;
  text-transform: uppercase;
  line-height: 1;
}
.rs-sec-title {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
}
.rs-sec-title--sm { font-size: 28px; }
.rs-title-bar {
  display: block;
  width: 56px;
  height: 4px;
  background: #FCBA30;
  border-radius: 4px;
  margin-top: 18px;
}
.rs-sec-lead {
  font-size: 14.5px;
  line-height: 1.9;
  color: #8A8375;
  margin-top: 16px;
}
.rs-head .rs-sec-lead { margin-bottom: 0; }

/* 中央揃えバリエーション */
.rs-head--center { text-align: center; }
.rs-head--center .rs-eyebrow { justify-content: center; }
.rs-head--center .rs-eyebrow::after {
  content: "";
  width: 28px;
  height: 3px;
  background: #FCBA30;
  border-radius: 3px;
  flex-shrink: 0;
}
.rs-head--center .rs-title-bar { margin-left: auto; margin-right: auto; }

/* 水色セクション上での見出し配色 */
.rs-sec--cyan .rs-eyebrow__label { color: #FCBA30; }
.rs-sec--cyan .rs-sec-lead { color: rgba(255, 255, 255, 0.85); }

/* ==========================================================================
   波型ディバイダー
   ========================================================================== */
.rs-wave { line-height: 0; display: block; }
.rs-wave svg { display: block; width: 100%; height: 82px; }
.rs-wave--white { background: #FFFFFF; }
.rs-wave--cyan { background: #33B5E5; }
.rs-wave--cream { background: #FFFDF9; }
.rs-wave--yellow { background: #FCBA30; }

/* ==========================================================================
   汎用セクション
   ========================================================================== */
.rs-sec { padding: 80px 24px; position: relative; overflow: hidden; }
.rs-sec--tight { padding: 74px 24px; }
.rs-sec--cream { background: #FFFDF9; }
.rs-sec--white { background: #FFFFFF; }
.rs-sec--cyan { background: #33B5E5; color: #EDEAE2; }
.rs-sec > .container { position: relative; z-index: 1; }

.rs-lead { font-size: 16px; line-height: 2; color: #4A453B; max-width: 780px; }
.rs-body { font-size: 15.5px; line-height: 2.15; color: #4A453B; }
.rs-body p { margin: 0 0 20px; }
.rs-body p:last-child { margin-bottom: 0; }
.rs-sec--cyan .rs-body { color: rgba(255, 255, 255, 0.92); }
.rs-fine { font-size: 12.5px; color: #B3AD9F; line-height: 1.8; }
.rs-note-fine { font-size: 12.5px; color: #B3AD9F; }

.rs-btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.rs-card-hover { transition: transform .25s ease, box-shadow .25s ease; }
.rs-card-hover:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(26, 26, 26, 0.12); }

/* ==========================================================================
   TOP メインビュー
   ========================================================================== */
.rs-hero { background: #FFFDF9; padding: 56px 24px 40px; position: relative; }
.rs-hero__glow {
  position: absolute;
  top: 40px;
  left: 8%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #FCEBBE 0%, rgba(252, 235, 190, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.rs-hero__card {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 560px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(26, 26, 26, 0.18);
}
.rs-hero__card video,
.rs-hero__card .swiper-slide,
.rs-hero__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* MV動画 ミュート解除ボタン */
.rs-mv-sound {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: none;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.55);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.25s ease, transform 0.25s ease;
}
.rs-mv-sound:hover {
  background: rgba(26, 26, 26, 0.75);
  transform: translateY(-2px);
}
.rs-mv-sound i { font-size: 15px; }
.rs-mv-sound.is-on {
  background: #fddb00;
  color: #1A1A1A;
}
@media (max-width: 640px) {
  .rs-mv-sound {
    right: 12px;
    bottom: 12px;
    padding: 7px 13px;
    font-size: 12px;
  }
}
.rs-hero-intro { background: #FFFDF9; padding: 56px 24px 72px; text-align: center; }
.rs-hero-intro__inner { max-width: 900px; margin: 0 auto; }
.rs-hero-h1 {
  margin: 0 0 22px;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.rs-hero-intro p { margin: 0; font-size: 17px; line-height: 2.1; color: #4A453B; }
.rs-hero-intro .rs-hero-lead { margin: 0 0 20px; font-size: 22px; font-weight: 700; line-height: 1.6; color: #1A1A1A; }
.rs-hero-intro .rs-btn { margin-top: 32px; }

/* ==========================================================================
   TOP WORKS カード
   ========================================================================== */
.rs-work-card {
  background: #ffffff;
  border: 1px solid #F0EBDD;
  border-radius: 20px;
  overflow: hidden;
}
.rs-work-card__thumb {
  aspect-ratio: 16 / 10;
  background: #F1EFE9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B3AD9F;
  font-size: 13px;
  text-align: center;
  overflow: hidden;
}
.rs-work-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rs-work-card__body { padding: 18px 20px 22px; }
.rs-work-card__cat {
  font-family: "Jost", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #C9A24B;
}
.rs-work-card__name { margin-top: 8px; font-size: 19px; font-weight: 700; line-height: 1.4; }

/* ==========================================================================
   TOP メッセージ（水色2カラム）
   ========================================================================== */
.rs-msg {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.rs-msg__text { padding: 84px 56px; color: #EDEAE2; }
.rs-msg__text .rs-eyebrow__label { color: #FCBA30; }
.rs-msg__title { margin: 0 0 22px; font-size: 34px; font-weight: 700; line-height: 1.4; }
.rs-msg__body { margin: 0 0 30px; color: rgba(255, 255, 255, 0.92); font-size: 15.5px; line-height: 2; }
.rs-msg__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.rs-msg__mark {
  width: 180px;
  height: 180px;
  position: relative;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.5));
  animation: rs-bob 5s ease-in-out infinite;
}
.rs-msg__tag {
  position: absolute;
  bottom: 28px;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}
.rs-msg__photo {
  position: relative;
  width: min(400px, 80vw);
  height: min(400px, 80vw);
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #ffffff;
}

/* ==========================================================================
   TOP 3事業カード
   ========================================================================== */
.rs-biz-card {
  text-decoration: none;
  color: #1A1A1A;
  background: #ffffff;
  border: 1px solid #F0EBDD;
  border-radius: 26px;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
}
.rs-biz-card:hover { opacity: 1; }
.rs-biz-card__thumb {
  margin: -34px -30px 24px;
  border-radius: 26px 26px 0 0;
  overflow: hidden;
  aspect-ratio: 766 / 486;
}
.rs-biz-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rs-icon-chip {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #FCEBBE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7A5E12;
  flex-shrink: 0;
}
.rs-biz-card__en {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #C9A24B;
  margin-top: 22px;
}
.rs-biz-card__title { font-size: 22px; font-weight: 700; margin-top: 8px; line-height: 1.4; }
.rs-biz-card__desc { margin: 14px 0 24px; font-size: 14px; line-height: 1.9; color: #6B6558; flex: 1; }
.rs-biz-card__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: #B0872A;
}

/* ==========================================================================
   共通 CTA 帯
   ========================================================================== */
.rs-cta { background: #FCBA30; padding: 74px 24px; position: relative; overflow: hidden; }
.rs-cta__deco {
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  opacity: 0.12;
  pointer-events: none;
}
.rs-cta__inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.rs-cta__title { margin: 0 0 14px; font-size: 34px; font-weight: 700; color: #1A1A1A; }
.rs-cta__lead { margin: 0 0 30px; font-size: 15.5px; line-height: 1.9; color: #5A4A16; }
.rs-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.rs-cta__tel {
  text-decoration: none;
  color: #1A1A1A;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rs-cta__tel:hover { opacity: 0.75; }

/* ==========================================================================
   フッター（水色）
   ========================================================================== */
.rs-footer { background: #33B5E5; color: #EDEAE2; }
.rs-footer__body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 64px 24px 40px;
}
.rs-footer__brand { display: flex; align-items: center; gap: 13px; }
.rs-footer__brand img { width: auto; height: 48px; display: block; border-radius: 6px; }
.rs-footer__brand-en {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.02em;
  display: block;
  line-height: 1;
}
.rs-footer__brand-sub {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.12em;
  margin-top: 7px;
  display: block;
}
.rs-footer__info { margin-top: 28px; font-size: 14px; line-height: 2; color: rgba(255, 255, 255, 0.92); }
.rs-footer__info p { margin: 0; }
.rs-footer .rs-en { font-family: "Jost", sans-serif; }
.rs-footer__actions { margin-top: 26px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.rs-footer__sns { display: flex; align-items: center; gap: 14px; }
.rs-footer__sns a { color: #EDEAE2; font-size: 20px; line-height: 1; }
.rs-footer__sns a:hover { opacity: 0.7; }
.rs-footer__right { width: 100%; }
.rs-footer__map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  height: 280px;
}
.rs-footer__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2); }
.rs-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.28); }
.rs-footer__bottom-inner {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.rs-footer__nav { display: flex; gap: 20px; flex-wrap: wrap; font-size: 12.5px; }
.rs-footer__nav a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.rs-footer__nav a:hover { color: #ffffff; opacity: 1; }
.rs-footer__copy { font-size: 12px; color: rgba(255, 255, 255, 0.72); letter-spacing: 0.04em; margin: 0; }

/* ==========================================================================
   下層ページヒーロー
   ========================================================================== */
.rs-phero { background: #FFFDF9; padding: 52px 24px 56px; position: relative; overflow: hidden; }
.rs-phero__deco {
  position: absolute;
  right: 6%;
  bottom: 20px;
  width: 96px;
  height: 96px;
  opacity: 0.14;
  pointer-events: none;
}
.rs-phero__inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.rs-crumb { font-size: 12.5px; color: #A69F90; margin-bottom: 20px; }
.rs-crumb a { color: #A69F90; text-decoration: none; }
.rs-crumb a:hover { color: #B0872A; }
.rs-phero__h1 { margin: 0; font-size: 44px; font-weight: 700; letter-spacing: 0.01em; line-height: 1.25; }
.sp-br { display: none; }
.pc-br { display: inline; }
.rs-phero__lead { margin: 26px 0 0; max-width: 730px; font-size: 16px; line-height: 2; color: #4A453B; }
.rs-phero .rs-eyebrow { margin-bottom: 12px; }
.rs-phero .rs-title-bar { margin-top: 18px; }

/* ==========================================================================
   下層 2カラムグリッド
   ========================================================================== */
.rs-2col { display: grid; align-items: start; }
.rs-2col--greet { grid-template-columns: 0.85fr 1.15fr; gap: 56px; max-width: 1120px; margin: 0 auto; }
.rs-2col--scene { grid-template-columns: 0.7fr 1.3fr; gap: 48px; align-items: start; max-width: 1120px; margin: 0 auto; }
.rs-2col--form { grid-template-columns: 1.25fr 0.75fr; gap: 44px; max-width: 1120px; margin: 0 auto; }
.rs-2col--career { grid-template-columns: 1.3fr 0.7fr; gap: 56px; max-width: 1120px; margin: 0 auto; align-items: center; }
.rs-career-illust img { width: 100%; height: auto; max-width: 600px; display: block; margin: 0 auto; }

/* ==========================================================================
   ご契約までの流れ
   ========================================================================== */
.rs-flow { display: flex; align-items: stretch; justify-content: center; gap: 8px; flex-wrap: wrap; }
.rs-flow__step {
  background: #ffffff;
  border: 1px solid #F0EBDD;
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  min-width: 150px;
  flex: 1;
}
.rs-flow--cream .rs-flow__step { background: #FFFDF9; min-width: 160px; }
.rs-flow__illust img { width: 192px; max-width: 100%; height: auto; object-fit: contain; display: block; margin: 10px auto 8px; }
.rs-flow__num {
  width: 36px;
  height: 36px;
  margin: 0 auto;
  border-radius: 50%;
  background: #FCBA30;
  color: #1A1A1A;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.rs-flow__label { font-size: 15.5px; font-weight: 700; margin-top: 12px; }
.rs-flow__arrow { display: flex; align-items: center; color: #EBCE87; font-size: 20px; }

/* ==========================================================================
   TV 対応業務 / consul 提供内容 カード
   ========================================================================== */
.rs-svc-card {
  background: #FFFDF9;
  border: 1px solid #F0EBDD;
  border-radius: 22px;
  padding: 30px 24px;
}
.rs-svc-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: #FCEBBE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7A5E12;
  font-size: 24px;
}
.rs-svc-card__title { font-size: 18px; font-weight: 700; margin-top: 18px; }
.rs-svc-card__desc { margin: 8px 0 0; font-size: 13.5px; line-height: 1.85; color: #6B6558; }

.rs-menu-card {
  background: #FFFDF9;
  border: 1px solid #F0EBDD;
  border-radius: 22px;
  padding: 30px 24px;
  height: 100%;
}
.rs-menu-card__no { font-family: "Jost", sans-serif; font-size: 26px; font-weight: 700; color: #EBCE87; }
.rs-menu-card__title { font-size: 17.5px; font-weight: 700; margin-top: 10px; line-height: 1.5; }
.rs-menu-card__desc { margin: 10px 0 0; font-size: 13.5px; line-height: 1.85; color: #6B6558; }
.rs-menu-card__illust img { width: 100%; max-width: 150px; height: auto; display: block; margin: 0 auto 4px; }

/* お知らせ / 注意ボックス */
.rs-note {
  margin-top: 22px;
  background: #FFF7E4;
  border: 1px dashed #EBCE87;
  border-radius: 18px;
  padding: 22px 26px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.rs-note i { color: #C9A24B; flex-shrink: 0; margin-top: 2px; font-size: 20px; }
.rs-note__text { font-size: 14.5px; line-height: 1.9; color: #5A4A16; }

/* TV 強み（水色カード） */
.rs-strength-card {
  background: #23A6DA;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  padding: 32px 28px;
}
.rs-strength-card__no { font-family: "Jost", sans-serif; font-size: 30px; font-weight: 700; color: #FCBA30; }
.rs-strength-card__text { font-size: 18px; font-weight: 700; margin-top: 12px; line-height: 1.55; }

/* consul 対応シーン */
.rs-scene {
  background: #ffffff;
  border: 1px solid #F0EBDD;
  border-radius: 20px;
  padding: 24px 26px;
}
.rs-scene__title { font-size: 18px; font-weight: 700; }
.rs-scene__title i { margin-right: 10px; color: #C9A24B; }
.rs-scene__detail { margin-top: 6px; font-size: 14px; color: #6B6558; line-height: 1.8; }
.rs-scene-list { display: flex; flex-direction: column; gap: 16px; }
.rs-scene-illust { margin-top: 40px; }
.rs-scene-illust img { width: 100%; max-width: 640px; height: auto; display: block; }

/* ==========================================================================
   代表紹介
   ========================================================================== */
.rs-portrait { position: relative; }
.rs-portrait__frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(26, 26, 26, 0.14);
  aspect-ratio: 3 / 4;
  background: #F1EFE9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B3AD9F;
  font-size: 13px;
  text-align: center;
  padding: 16px;
}
.rs-portrait__frame img { width: 100%; height: 100%; object-fit: cover; }
.rs-portrait__mark {
  position: absolute;
  bottom: -24px;
  right: -16px;
  width: 78px;
  height: 78px;
  animation: rs-bob 4.6s ease-in-out infinite;
}
.rs-greet__label {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #C9A24B;
}
.rs-greet__title { margin: 12px 0 26px; font-size: 30px; font-weight: 700; line-height: 1.5; }
.rs-greet__sign { margin-top: 30px; padding-top: 22px; border-top: 1px solid #F0EBDD; }
.rs-greet__role { font-size: 13px; color: #8A8375; }
.rs-greet__name { font-size: 22px; font-weight: 700; margin-top: 4px; }
.rs-greet__name small { font-size: 13px; font-weight: 500; color: #8A8375; }

.rs-respawn__label {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 14px;
  color: #FCBA30;
}
.rs-respawn__title { margin: 14px 0 24px; font-size: 30px; font-weight: 700; line-height: 1.5; }
.rs-respawn__deco {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: 150px;
  opacity: 0.9;
  animation: rs-bob 5s ease-in-out infinite;
  pointer-events: none;
}

.rs-timeline {
  border-left: 2px solid #F0E4C4;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.rs-timeline__item { position: relative; }
.rs-timeline__item::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #FCBA30;
  border: 3px solid #FFFDF9;
  box-shadow: 0 0 0 2px #F0E4C4;
}
.rs-timeline__year {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #C9A24B;
  letter-spacing: 0.04em;
}
.rs-timeline__text { font-size: 15.5px; margin-top: 4px; line-height: 1.7; }

.rs-chip-list { display: flex; flex-wrap: wrap; gap: 12px; }
.rs-chip {
  background: #FFFDF9;
  border: 1px solid #F0EBDD;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14.5px;
  font-weight: 500;
}

/* ==========================================================================
   自社オリジナル商品
   ========================================================================== */
.rs-goods-stats { display: flex; gap: 40px; margin-top: 34px; flex-wrap: wrap; }
.rs-goods-stat__en { font-family: "Jost", sans-serif; font-size: 32px; font-weight: 700; letter-spacing: 0.08em; }
.rs-goods-stat__ja { font-size: 13px; color: #8A8375; margin-top: 2px; }
.rs-goods-stat__div { width: 1px; background: #E4DECF; }

.rs-prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.rs-prod-card {
  background: #FFFDF9;
  border: 1px solid #F0EBDD;
  border-radius: 26px;
  overflow: hidden;
}
.rs-prod-card__img {
  background: #EFF3F5;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.rs-prod-card__img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.rs-prod-card__body { padding: 28px 30px 32px; }
.rs-prod-card__en { font-family: "Jost", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; color: #C9A24B; }
.rs-prod-card__name { font-size: 22px; font-weight: 700; margin-top: 8px; }
.rs-prod-card__desc { margin: 10px 0 18px; font-size: 13.5px; color: #6B6558; line-height: 1.8; }
.rs-prod-card__price { display: flex; align-items: baseline; gap: 6px; }
.rs-prod-card__price-num { font-family: "Jost", sans-serif; font-size: 28px; font-weight: 700; }
.rs-prod-card__price-unit { font-size: 13px; color: #8A8375; }

.rs-logo-show { text-align: center; }
.rs-logo-show__label {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: #FCBA30;
  text-transform: uppercase;
}
.rs-logo-show__title { margin: 14px 0 12px; font-size: 28px; font-weight: 700; }
.rs-logo-show__lead { margin: 0 auto 44px; max-width: 560px; font-size: 14.5px; line-height: 1.9; color: rgba(255, 255, 255, 0.85); }
.rs-logo-show__imgs { display: flex; gap: 36px; justify-content: center; align-items: center; flex-wrap: wrap; }
.rs-logo-show__imgs .logo { width: 340px; max-width: 80vw; border-radius: 16px; }
.rs-logo-show__imgs .mark { width: 150px; height: 150px; }

/* ==========================================================================
   お問い合わせ・スタッフ募集
   ========================================================================== */
.rs-recruit {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  background: #FFF7E4;
  border: 1px solid #F0E4C4;
  border-radius: 28px;
  padding: 48px 52px;
}
.rs-recruit__body { position: relative; z-index: 1; max-width: 620px; }
.rs-recruit__label { font-family: "Jost", sans-serif; font-weight: 600; letter-spacing: 0.18em; font-size: 12px; color: #C9A24B; }
.rs-recruit__title { margin: 12px 0 20px; font-size: 28px; font-weight: 700; line-height: 1.5; }
.rs-recruit__text { margin: 0 0 22px; font-size: 15px; line-height: 2; color: #4A453B; }
.rs-recruit__tags { display: flex; gap: 10px; flex-wrap: nowrap; }
.rs-recruit__visual {
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 240px;
  pointer-events: none;
}
.rs-recruit__visual img { display: block; width: 100%; height: auto; }
.rs-tag {
  background: #ffffff;
  border: 1px solid #EBCE87;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}

.rs-form-card {
  background: #ffffff;
  border: 1px solid #F0EBDD;
  border-radius: 24px;
  padding: 40px 40px 44px;
}
.rs-form-card__title { margin: 0 0 8px; font-size: 24px; font-weight: 700; }
.rs-form-card__lead { margin: 0 0 30px; font-size: 13.5px; color: #8A8375; }
.rs-form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rs-field { margin-top: 18px; }
.rs-field:first-of-type { margin-top: 0; }
.rs-label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 8px; }
.rs-req { color: #D98A0F; font-size: 11px; margin-left: 6px; font-weight: 700; }
.rs-in {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid #E4DECF;
  border-radius: 12px;
  background: #ffffff;
  color: #1A1A1A;
  outline: none;
  transition: border-color .15s ease;
}
.rs-in:focus { border-color: #FCBA30; }
textarea.rs-in { resize: vertical; }
.rs-form-submit { margin-top: 26px; width: 100%; }
.rs-form-check { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.rs-form-check label { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; }
.rs-form-check input { accent-color: #FCBA30; width: 17px; height: 17px; }
.rs-form-done {
  background: #FFF7E4;
  border: 1px solid #EBCE87;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
}
.rs-form-done img { width: 72px; height: 72px; }
.rs-form-done__title { font-size: 20px; font-weight: 700; margin-top: 14px; }
.rs-form-done p { margin: 10px 0 0; font-size: 14px; color: #6B6558; line-height: 1.9; }
.rs-form-done__actions { margin-top: 24px; }

/* ==========================================================================
   CMSフォーム（cdn.rs-sys.jp）— サイトデザインへの上書き
   ========================================================================== */
/* 送信ボタン：サイトの黄色pillボタン（.rs-btn--yellow）に合わせる */
.submit-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: -webkit-fit-content !important;
  width: fit-content !important;
  margin: 26px auto 0 !important;
  padding: 14px 40px !important;
  font-family: inherit !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  color: #1A1A1A !important;
  background: #FCBA30 !important;
  border: none !important;
  border-radius: 999px !important;
  box-shadow: 0 5px 0 #C98F14 !important;
  cursor: pointer !important;
  transition: transform .12s ease, box-shadow .12s ease !important;
}
.submit-btn:hover { transform: translateY(5px) !important; box-shadow: 0 0 0 transparent !important; opacity: 1 !important; }
.submit-btn:active { transform: translateY(5px) !important; box-shadow: 0 0 0 transparent !important; }
/* 送信ボタン内アイコン（::before）：サイトのダーク／ゴールドに合わせる */
.form-pattern-2 .submit-btn::before { background-color: #1A1A1A !important; }
.form-pattern-2 .submit-btn:hover::before { background-color: #C98F14 !important; }

/* 「必須」バッジ：サイトのゴールド（.rs-req 系）に合わせる */
.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before,
.form-pattern-2 dl dt:not(.pattern-exclusion) span.required::before {
  color: #fff !important;
  background: #D98A0F !important;
}

.rs-info-card { background: #33B5E5; color: #EDEAE2; border-radius: 24px; padding: 34px 32px; }
.rs-info-card__head { display: flex; align-items: center; gap: 11px; }
.rs-info-card__head img { width: 40px; height: 40px; }
.rs-info-card__head span { font-family: "Jost", sans-serif; font-weight: 600; font-size: 19px; }
.rs-info-card__list { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.rs-info-card__k { font-size: 11.5px; color: rgba(255, 255, 255, 0.8); letter-spacing: 0.1em; }
.rs-info-card__v { font-size: 15px; margin-top: 4px; line-height: 1.7; }
.rs-info-card__tel { font-family: "Jost", sans-serif; font-size: 20px; font-weight: 600; color: #FCBA30; text-decoration: none; display: block; margin-top: 4px; }
.rs-info-card__mail { font-family: "Jost", sans-serif; font-size: 15px; color: #EDEAE2; text-decoration: none; display: block; margin-top: 4px; }
.rs-info-map { margin-top: 20px; border-radius: 20px; overflow: hidden; border: 1px solid #F0EBDD; height: 220px; }
.rs-info-map iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   スクロールリベール
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 1100px) {
  /* PCナビ・右クラスタはSPで隠す（ハンバーガーに切替） */
  .rs-header .header__nav,
  .rs-header .header__right { display: none; }
}

@media (max-width: 940px) {
  .rs-msg { grid-template-columns: 1fr; }
  .rs-msg__text { padding: 60px 28px; }
  .rs-2col--greet,
  .rs-2col--scene,
  .rs-2col--form,
  .rs-2col--career { grid-template-columns: 1fr; gap: 40px; }
  .rs-career-illust img { max-width: 320px; }
}

@media (max-width: 900px) {
  .rs-hero__card { height: auto; aspect-ratio: 16 / 10; }
  .rs-hero-h1 { font-size: 44px; }
  .rs-flow { flex-direction: column; }
  .rs-flow__arrow { transform: rotate(90deg); justify-content: center; }
  .rs-phero__h1 { font-size: 38px; }
}

@media (max-width: 860px) {
  .rs-recruit { padding: 34px 26px; }
  .rs-recruit__title { font-size: clamp(17px, 6vw, 28px); white-space: nowrap; }
  .rs-recruit__body { max-width: none; padding-bottom: 120px; }
  .rs-recruit__tags { flex-wrap: wrap; }
  .rs-recruit__visual { width: 200px; right: -20px; bottom: -24px; }
}

@media (max-width: 820px) {
  .rs-footer__body { grid-template-columns: 1fr; gap: 36px; }
  .rs-prod-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .rs-sec { padding: 52px 22px; }
  .rs-sec--tight { padding: 52px 22px; }
  .rs-hero { padding: 40px 20px 30px; }
  .rs-hero-intro { padding: 44px 22px 56px; }
  .rs-hero-h1 { font-size: 32px; }
  .rs-hero-intro p { font-size: 15px; }
  .rs-hero-intro .rs-hero-lead { font-size: 18px; }
  .rs-sec-title { font-size: 28px; }
  .rs-cta__title { font-size: clamp(15px, 5.8vw, 26px); white-space: nowrap; }
  .rs-footer__nav { display: none; }
  .rs-msg__title { font-size: clamp(16px, 6vw, 27px); white-space: nowrap; }
  .rs-wave svg { height: 44px; }
  .rs-phero { padding: 40px 22px 44px; }
  .rs-phero__h1 { font-size: 30px; }
  .sp-br { display: inline; }
  .pc-br { display: none; }
  .rs-phero__h1--fit { font-size: clamp(16px, 6.5vw, 30px); white-space: nowrap; }
  .rs-form-card { padding: 28px 22px 32px; }
  .rs-form-2 { grid-template-columns: 1fr; }
  /* スマホ：Message → タイトル → 写真 → 本文 → ボタン の順に並べる */
  .rs-msg { display: flex; flex-direction: column; padding: 48px 22px; }
  .rs-msg__text { display: contents; }
  .rs-msg__text .rs-eyebrow { order: 1; }
  .rs-msg__title { order: 2; }
  .rs-msg__visual { order: 3; min-height: 0; margin: 12px 0 26px; }
  .rs-msg__body { order: 4; }
  .rs-msg__cta { order: 5; align-self: flex-start; }
  .rs-greet__title,
  .rs-respawn__title { font-size: 25px; }
}

@media (max-width: 400px) {
  .rs-hero-h1 { font-size: 25px; }
}
