/*
Theme Name: RICCO Recruit
Theme URI: http://ricco-recruit.com/
Author: RICCO
Author URI: http://ricco-recruit.com/
Description: RICCO美容師採用ランディングページ専用の独自WordPressテーマ。他テーマ（Cocoon等）には依存しません。
Version: 1.0.0
License: Private Use Only
Text Domain: ricco-recruit
*/

/* ===== Reset & Base ===== */
:root {
  --font-mincho: "Yu Mincho", "游明朝", "YuMincho", serif;
  --gold: #B38F30;
  --beige-bg: #F6F3EC;
  --pink: #c03b72;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #ffffff;
  color: #2a2a2a;
  overflow-x: hidden;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0;
  z-index: 100;
  padding: 18px 28px;
  display: flex;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.logo img {
  width: 100px;
  height: 100px;;
  display: flex;
  align-items: center;
}

/* =========================================
   HERO SECTION
   白背景の上にクリーム色の縦長アーチ
   ========================================= */
.hero-section {
  background: #ffffff;
  display: flex;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.semi-circle {
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 600px;
  background: var(--beige-bg);
  border-radius: 50% 50% 0 0;
}
.arch-container {
  position: relative;
  width: 95%;
  max-width: 1000px;
  height: 70vh;
  overflow: hidden;
}

/* ===== Slideshow ===== */
.slideshow {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }

.slide-img img{
  width: 100%;
  height: auto;
  object-fit: contain;
  background-position: center top;
}

/* グラデーションオーバーレイ */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* ヒーローコンテンツ全体 */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

/* RICCO + サブタイトル ← 左上 */
.hero-text {
  position: absolute;
  top: 35%;
  left: 20%;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(62px, 10vw, 104px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  background: linear-gradient(
    135deg,
    #B38F30 0%,
    #F1E59C 50%,
    #B38F30 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero-subtitle {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 300;
  color: var(--gold);
  line-height: 2.0;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* =========================================
   バッジ（右上・横並び）
   ========================================= */
.hero-badges {
  position: absolute;
  top: 50%;
  right: 20vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  pointer-events: auto;
}

/* 丸バッジ共通 */
.badge {
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: 130px;
  height: 130px;
}

/* Badge 1：ホットペッパーアワード — オレンジ */
.badge-award {
  background: #BCADC8;
}

/* Badge 2：スタッフ平均給与 — クリーム */
.badge-sales {
  background: #A0BBDB;
  width: 130px;
  height: 130px;
  margin-left: -10px;
}

.badge-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-align: center;
}
.badge-award .badge-label { 
  color:#fff; }
.badge-sales .badge-label { 
  color:#fff;
 }

.badge-body {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  line-height: 1;
}

.badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1;
}
.badge-award .badge-number {
  font-size: 50px;
  color: #fff;
  font-family: var(--font-mincho);
  ;
}
.badge-sales .badge-number {
  font-size: 50px;
  color:#fff;
  font-family: var(--font-mincho);
  letter-spacing: -0.07em;
}

.badge-suffix {
  display: flex;
  flex-direction: column;
  padding-bottom: 3px;
}
.badge-unit-top,
.badge-unit-bottom {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.badge-award .badge-unit-top,
.badge-award .badge-unit-bottom {
  color:#fff;
 }

.badge-unit-side {
  font-size: 13px;
  font-weight: 400;
  padding-bottom: 4px;
  color:#fff;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
  background: var(--beige-bg);
  padding: 40px 24px 60px;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cta-text { text-align: center; }

.cta-heading {
  font-size: 30px;
  font-family: var(--font-mincho);
  color: var(--gold);
  line-height: 1.8;
  font-weight: 500;;
}

.cta-body {
  margin-top: 24px;
  font-size: 13px;
  line-height: 2.3;
  color: #555;
  letter-spacing: 0.04em;
}

/* ===== ボタン ===== */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 350px;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  width: 300px;
}
.btn:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-line { 
  background: #06C755;
border: solid 3px #fff;
margin: 0 auto;
 }
.btn-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
border: solid 3px #fff;
margin: 0 auto;
}

/* ===== 写真 3枚横並び ===== */
.cta-img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  z-index: 1;
  margin: 40px 0;
  width: 100%;
}
.cta-img img {
  width: 100%;
  background: #c8c0b8;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.photo-2 {
  margin-top: 20px;
}
.photo-1 img,
.photo-2 img{
  object-fit: cover;
  width: 100%;
}

/* =========================================
   Ticker — 左流れスクロール
   ========================================= */
.ticker-wrapper {
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
  margin-top: 50px;
  z-index: -1;
}
.ticker-item {
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0 8px;
  white-space: nowrap;

  background: linear-gradient(
    90deg,
    #A1BCDB 0%,
    #F3C7D7 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.ticker-item.ticker-dim {

  background: linear-gradient(
    90deg,
    #A1BCDB 0%,
    #F3C7D7 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* =========================================
   Section 2: Pain Points
   ========================================= */
.pain-section {
  background: linear-gradient(135deg, #707070 0%, #C4C4C4 100%);
  padding: 80px 0;
}
.pain-inner {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 60px;
  gap: 60px;
  align-items: center;
}

/* 左：写真プレースホルダー */
.pain-photo {
}
.pain-photo img {
  object-fit: contain;
  width: 100%;
  border-radius: 20px;
}
/* 右：テキストエリア */
.pain-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pain-heading {
  font-size: 30px;
  font-family: var(--font-mincho);
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 50px;
}
.pain-highlight {
  color: #F0DFB6;
}

/* 悩みリスト */
.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pain-item {
  background: #737270;
  border: solid 2px #fff;
  border-radius: 50px;
  padding: 17px 22px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}

/* =========================================
   Section 7: サロンの雰囲気
   ========================================= */
.salon {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.salon h2 {
  font-family: var(--font-mincho);
  font-size: 40px;
  letter-spacing: 0.12em;
  margin-bottom: 55px;
  font-weight: 600;
}

.salon-bg {
  width: 100%;
  height: 350px;
  background: url("http://ricco-recruit.com/wp-content/uploads/2026/07/salon-img-bg.png") center / cover no-repeat;
  opacity: 0.65;
}

.salon-card {
  position: relative;
  z-index: 2;
  width: min(860px, 86%);
  margin: -145px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.salon-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
  padding: 70px 48px;
}
.data-item {
      display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 130px;
}
.data-item span {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 24px;
  margin-bottom: 12px;
}

.data-item strong {
  display: block;
  color: #b38f30;
  font-size: 55px;
  line-height: 1;
  font-weight: 700;
}
.data-item .age {
  display: flex;
  align-items: end;
}
.data-item small {
  color: var(--gold);
  font-size: 16px;
  margin: 5px 0;
  font-weight: 700;
}
.data-item .small {
  display: block;
}

.salon-text {
  background: #f5f1e9;
  padding: 70px 20px;
  text-align: center;
}

.salon-text h3 {
  color: #b38f30;
  font-weight: 500px;
  font-size: 20px;
  margin-bottom: 50px;
  text-align: center;
}
.salon-text-wrapper {
  display: inline-block;
  margin: 0 auto;;
}
.salon-text p {
  display: block;
  text-align: left;
  margin-bottom: 30px;
}
.salon-text img.salon-ttl4 {
  height: 50px;
}
.salon-check {
  display: block;
  position: absolute;
  width: 120px;
  top: -60px;
  left: -50px;
}
.salon-img {
  display: block;
  position: absolute;
  width: 80px;
  bottom: 10px;
  right: 10px;
}
/* =========================================
   Section 6: キャリアパス
   ========================================= */
.career-section {
  background: #f5f0e8;
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.career-heading {
  font-size: 40px;
  font-weight: 600;
  font-family: var(--font-mincho);
  margin-bottom: 40px;
  text-align: center;
}
.career-highlight { color: #d4607a; }

/* タイムライン */
.career-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  width: 100%;
}

.career-item {
  display: grid;
  grid-template-columns: 100px 80px 1fr;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}

/* 縦線（最後以外） */
.career-item:not(.career-item--last) .career-left::after {
  content: '';
  position: absolute;
  left: 93px;
  top: 35px;
  bottom: -40px;
  width: 2px;
  height: 140px;
  background: var(--gold);
}

/* 左：年数 + ドット */
.career-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 30px;
  position: relative;
}
.career-year {
  font-size: 15px;
  font-weight: 600;;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.career-year--bold { font-weight: 700; font-size: 13px; }

.career-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* アイコンボックス */
.career-icon-box {
  width: 90px;
  height: 90px;
  background: #fffefc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.career-icon-box img {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto;
}
/* テキスト */
.career-text {
  padding-top: 10px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.career-item--last .career-text { padding-bottom: 0; }

.career-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #b08820;
  letter-spacing: 0.04em;
}
.career-item-body {
  font-size: 13px;
  line-height: 1.8;
  color: #444;
  letter-spacing: 0.04em;
}

/* =========================================
   Section 5: CTA
   ========================================= */
   .cta-section1 {
    padding-bottom: 280px !important;
   }
/* =========================================
   Section 5: 働き方
   ========================================= */
.workstyle-section {
  margin-top: -150px;
  padding: 0 0 100px;
  position: relative;
  overflow: hidden;
}

/* 装飾アーチ */
.workstyle-arch {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 600px;
  background: #fff;
  border-top: solid 0.5px var(--gold);
  border-radius: 50% 50% 0 0;
  padding-top: 100px;;
}

.workstyle-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* 「自由に選べる」ラベル */
.workstyle-label-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.workstyle-label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: #c09428;
}
.workstyle-label-text {
  font-size: 13px;
  font-weight: 400;
  color: #c09428;
  letter-spacing: 0.12em;
}
.workstyle-heading {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  font-family: var(--font-mincho);;
  letter-spacing: 0.06em;
  margin-bottom: 50px;
  font-size: 40px;
}

/* グリッド行1（3列） */
.workstyle-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

/* グリッド行2（1+2列） */
.workstyle-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  width: 100%;
}

/* カード共通 */
.ws-card {
  background: #FDFAFF;
  border-radius: 16px;
  padding: 10px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ws-card:nth-child(even){
background: #F8FAFC; 
}
.ws-ttl {
  display: block;
  margin: 0 auto 20px;
  height: 70px;
}

/* カード英語タイトル */
.ws-card-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: #d4607a;
  line-height: 1;
  border-bottom: 1px solid #d4607a;
  padding-bottom: 4px;
  display: inline-block;
  margin-bottom: 2px;
}

/* カード日本語タイトル */
.ws-card-ja {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.ws-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ws-card-body p {
  text-align: center;;
}
.ws-center { align-items: center; text-align: center; }

.ws-small {
  font-size: 11px;
  letter-spacing: 0.04em;
}

.ws-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.ws-unit {
  font-size: 14px;
  font-weight: 400;
}
.ws-num-lg {
  font-size: 48px;
  font-weight: 700;
  color: #c09428;
}
.ws-num-md {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}

/* タグ */
.ws-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.ws-tag {
  border: 1.5px solid var(--gold);
  padding: 6px 16px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* =========================================
   Section 3: 5つの強み
   ========================================= */
.strengths-section {
  background-color: #fff;
  padding: 80px 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.strengths-label {
  font-family: var(--font-mincho);
  display: inline-block;
  border-radius: 50px;
  padding: 8px 28px;
  font-size: 40px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.1em;
}

/* 各アイテム */
.strength-body {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  padding: 0 60px;
}
.strength-item--reverse .strength-body{
  flex-direction: row-reverse;
}
.strength-photo {
  flex: 1;
}
.strength-photo img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  object-position: top;
}
.strength-text {
  flex: 1;
  gap: 12px;
}
.strength-text p {
  font-size: 18px;
  line-height: 2;;
}
.strength-num img{
  display: block;
  margin: 0 auto 20px;
  width: 200px;
}

.strength-heading {
  font-size: 30px;
  font-family: var(--font-mincho);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 50px;
}

.strength-text {
  font-size: 13px;
  line-height: 2;
  color: #333;
  letter-spacing: 0.04em;
}

/* =========================================
   Section 4: Contact CTA
   ========================================= */
.contact-section {
  background: #f5f0e8;
  padding: 100px 24px;
}
.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.contact-spark {
  position: absolute;
  font-size: 22px;
  color: #c09428;
  line-height: 1;
}
.contact-spark--tl { top: -20px; left: 40px; }
.contact-spark--br { bottom: 20px; right: 20px; }

.contact-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #b08820;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 24px;
}
.contact-sub {
  font-size: 14px;
  line-height: 2;
  color: #555;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
  margin: 0 auto;
}
/* =========================================
   Section 17: 最終CTA
   ========================================= */
.final-cta-section {
  background: #f5f0e8;
  padding: 80px 24px 80px;
}

.final-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.final-cta-star {
  position: absolute;
  font-size: 26px;
  color: #c09428;
  line-height: 1;
}
.final-cta-star--tl { top: -20px; left: 0; }
.final-cta-star--tr { top: -20px; right: 0; }
.final-cta-star--bl { bottom: -20px; left: 0; }
.final-cta-star--br { bottom: -20px; right: 0; }

.final-cta-heading {
  font-size: 35px;
  font-family: var(--font-mincho);
  font-weight: 500;
  color: #b08820;
  line-height: 1.5;
}

.final-cta-sub {
  font-size: 14px;
  line-height: 2;
  color: #555;
  letter-spacing: 0.04em;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 400px;
}

/* =========================================
   Section 18: フッター
   ========================================= */
.site-footer {
  background: linear-gradient(135deg, #A0BBDB 0%, #F3C7D7 100%);
  padding: 48px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo img{
  width: 100px;
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #2a2a2a;
}

.footer-copy {
  font-size: 12px;
  color: #555;
  letter-spacing: 0.06em;
}

/* =========================================
   Section 9: CTA
   ========================================= */
.cta-section2 {
  padding: 100px 20px;;
}
/* =========================================
   Section 9: RICCOの実績
   ========================================= */
.results-section {
  background-color: #FCF9FF;
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: -1;
}

.results-heading {
  font-size: 48px;
  font-family: var(--font-mincho);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 680px;
  width: 100%;
}

.results-card {
  border-radius: 18px;
  border: 1px solid #d7d7d7;
  padding: 36px 28px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  text-align: center;
  background: #fff;
  background-image:
    linear-gradient(rgba(160, 160, 180, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 160, 180, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  position: relative;
}
.results-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: translate(10px, 10px);
  background: linear-gradient(
    135deg,
    #F4D88E 0%,
    #E5C2D9 45%,
    #9FB8D7 100%
  );
  z-index: -1;
}
.results-label {
  font-size: 20px;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.08em;
}

.results-num-wrap {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  line-height: 1;
}

.results-prefix {
  font-size: 14px;
  padding-bottom: 8px;
  color: var(--gold);
}

.results-big {
  font-size: 64px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.results-suffix {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 8px;
  color: var(--gold);
}

.results-sub {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-top: -4px;
}

/* =========================================
   Section 10: スタッフインタビュー
   ========================================= */
.interview-section {
  background: #ffffff;
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.interview-heading {
  font-size: 40px;
  font-family: var(--font-mincho);
  font-weight: 600;
  text-align: center;
}
.interview-list {
  display: grid;
  gap: 70px;
}

.interview-card {
  position: relative;
  width: min(920px, 92%);
  margin: 0 auto;
  padding: 48px 55px 36px 0;
  background: #fff9fd;
  box-sizing: border-box;
}
.interview-card.even {
  padding: 48px 0 36px 55px;
}
.interview-card:nth-child(odd) {
  background: #f8fbff;
}

.interview-inner {
  width: 78%;
  margin-left: auto;
}

.interview-photo {
  position: absolute;
  top: -55px;
  left: 10px;
  width: 170px;
  height: 170px;
  z-index: 2;
}

.interview-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* 偶数は写真を右に */
.interview-card:nth-child(odd) .interview-photo {
  left: auto;
  right: 10px;
}

.interview-card:nth-child(odd) .interview-inner {
  margin-left: 45px;
  margin-right: auto;
}

.interview-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--gold);
  max-width: 500px;
}

.interview-head h3 {
  margin: 0 10px 0 0;
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 500;
}

.interview-head span {
  background: #b38f30;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 9px;
}

.interview-before {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 700;
}

.interview-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.interview-status p {
  margin: 0;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #f0bfd2;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-self: center;
  justify-content: center;
  gap: 5px;
}

.interview-status b {
  color: #9fb8d7;
}
.interview-status small {
  color: var(--pink);
  font-size: 10px;
  line-height: 22px;
}
.interview-status strong {
  color: var(--pink)
}

.interview-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.interview-box {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--pink);
  border-radius: 14px;
}

.interview-box h4 {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 17px;
  margin-bottom: 15px;;
  text-align: center;
  font-family: var(--font-mincho);
  font-weight: 500;
}
.interview-box h4.iv-ttl {
  color: #F0DFB6;
}
.interview-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.interview-box.is-pink {
  background: var(--pink);
  color: #fff;
}

.interview-box.is-blue {
  background: #858fae;
  border-color: #858fae;
  color: #fff;
}

.interview-num {
  position: absolute;
  right: 16px;
  top: 32px;
  writing-mode: vertical-rl;
  color: #cfcfcf;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.interview-num::after {
  content: "";
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 220px;
  background: #d8d8d8;
}
.interview-card:nth-child(odd) .interview-num {
  left: 16px;
  right: auto;
}

/* =========================================
   Section 11: オーナーの想い
   ========================================= */
.owner-section {    
  margin-top: 100px;
  padding: 100px 0 0px;
  position: relative;
    overflow: hidden;
}
.owner-arch {
      position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 120vw;
    height: 500px;
    background: #fff;
    border-top: solid 0.5px var(--gold);
    border-radius: 50% 50% 0 0;
    padding-top: 100px;
    background: #FFF7FA;
}
.owner-inner {
  padding: 0px 0 100px;
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  background: #FFF7FA;
  margin-top: 50px;
}
.owner-body {
  display: flex;
  max-width: 960px;
  margin: 0 auto;
  justify-content: center;
}
.owner-photo {
  width: 100%;
  background-size: cover;
  background-position: center top;
}
.owner-photo img {
  width: 100%;
}
.owner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.owner-heading {
  font-size: 40px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-bottom: 12px;
  border-bottom: 1px solid #c09428;
  display: inline-block;
  margin-bottom: 80px;
  font-family: var(--font-mincho);
}

.owner-star {
  color: var(--gold);
  padding: 0 10px;
  font-size: 20px;
}
.owner-catch {
  font-size: 30px;
  color: var(--pink);
  font-family: var(--font-mincho);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.owner-body {
  font-size: 13px;
  line-height: 2.2;
  color: #444;
  letter-spacing: 0.04em;
  gap: 50px;
}

.owner-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: right;
  margin-top: 8px;
}
/* =========================================
   Section 12: 応募の流れ
   ========================================= */
.flow-section {
  background: #faf7f2;
  padding: 100px 60px ;
} 

.flow-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-heading {
  font-size: 35px;
  font-family: var(--font-mincho);
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.flow-sub {
  font-size: 13px;
  text-align: center;
  margin-bottom: 40px;
}

.flow-steps {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0;
}

.flow-step {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
}

.flow-step-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flow-step-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #c09428;
}
.flow-step-num {
  font-size: 15px;
}

.flow-step-img {
  width: 200px;
}

.flow-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, #c09428, #e0d4c0);
  margin-left: 60px;
}

.flow-step-right {
  padding-top: 28px;
  padding-bottom: 8px;
}

.flow-step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--pink);
}

.flow-step-body {
  font-size: 13px;
  line-height: 1.9;
  color: #555;
  letter-spacing: 0.04em;
  margin-top: 10px;
}

/* 応募特典ボックス */
.flow-bonus {
  width: 80%;
  max-width: 670px;
  border-radius: 12px;
  background: #fff;
  padding: 35px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px auto 0;
}

.flow-bonus-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  padding: 0 20px;
}
.flow-bonus-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.flow-bonus-line {
  width: 100px;
  display: block;
border-top: solid 1px var(--gold);
}
.flow-banner-star {
  color: var(--gold);
  font-size: 15px;
  padding-bottom: 3px;
}
.flow-bonus-items {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.flow-bonus-tag {
  background: var(--pink);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 6px 18px;
  letter-spacing: 0.04em;
}

.flow-bonus-dot {
  font-size: 18px;
  color: #bbb;
}

.flow-bonus-highlight {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* =========================================
   Section 13: CTAバナー（ボタン横並び）
   ========================================= */
.cta-banner-section {
  background: #fff;
  padding: 60px 40px;
}
.cta-banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 60px;
  flex: 1;
  max-width: 450px;
}

/* =========================================
   Section 14: よくある質問
   ========================================= */
.faq-section {
  background: #fff;
  padding: 100px 20px;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-heading {
  font-size: 35px;
  font-family: var(--font-mincho);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.faq-heading img {
  width: 40px;
}
.accordion {
  display: grid;
  gap: 30px;
}

.accordion-item {
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.accordion-header {
  width: 100%;
  padding: 18px 24px;
  border: none;
  background: linear-gradient(90deg, #f3cad7, #b8d2f0);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}

.icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: #333;
  transition: 0.3s;
}

.icon::before {
  width: 16px;
  height: 2px;
  top: 7px;
  left: 0;
}

.icon::after {
  width: 2px;
  height: 16px;
  top: 0;
  left: 7px;
}

.accordion-item.active .icon::after {
  transform: scaleY(0);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body {
  padding: 24px 24px;
  line-height: 1.8;
  display: flex;
}
.q-label,
.a-label {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: #333;
  margin-right: 15px;
}
.question {
  color: #333;
}
/* =========================================
   Section 15: 募集要項
   ========================================= */
.recruit-section {
  background: #fff;
  padding: 100px 0px;
}
.recruit-heading {
  font-size: 35px;
  font-family: var(--font-mincho);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 30px;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

.salon-tempo {
}

.salon-images {
}

.salon-images img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.salon-info {
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 30px;
}

.salon-title {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 60px;
  border-bottom: solid 1px #333;
}

.salon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  font-size: 14px;;
}

.info-row dt {
  font-weight: 700;
}

.info-row dd {
  margin: 0;
  line-height: 2;
}

@media (max-width: 768px) {
  .salon-images {
    grid-template-columns: 1fr;
  }

  .salon-info {
    padding: 40px 24px;
  }

  .salon-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .info-row {
    grid-template-columns: 90px 1fr;
    gap: 16px;
  }
}

/* =========================================
   Section 16: 応募方法・サロン見学案内
   ========================================= */
   .entry-flow {
  position: relative;
  overflow: hidden;
  padding: 120px 0px 0px;
}
.entry-arch {
      position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 120vw;
    height: 500px;
    background: #fff;
    border-top: solid 0.5px var(--gold);
    border-radius: 50% 50% 0 0;
    padding-top: 100px;
    background: #FFF7FA;
}
.entry-flow__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(180deg, #FFF9FC 0%, #EEF3FA 100%);
}
.entry-flow__contents {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.entry-flow__title {
  display: inline-block;
  position: relative;
  margin-bottom: 80px;
  font-size: 35px;
  font-family: var(--font-mincho);
  font-weight: 600;
}

.entry-flow__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 1px;
  background: #b78924;
}

.entry-flow__lead {
  width: 80%;
  margin: 0 auto 48px;
  padding: 24px 42px;
  background: #fff;
  border-radius: 14px;
  text-align: left;
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}
.entry-flow__lead-inner {
  display: inline-block;
  text-align: left;
}
.entry-flow__lead img {
  width: 15px;
  margin-right: 5px;
}
.entry-flow__lead p {
  margin: 0 0 10px;
}
p.entry-flow__text {
  margin-top: 30px;
  color: var(--pink);
  display: flex;
  align-items: center;
}
.line-icon img{
  width: 50px;
  margin: 0 10px;
}

.entry-flow__lead strong {
}

.entry-step {
  position: relative;
  background: #fff;
  border: 1px solid #d6ddea;
  border-radius: 12px;
  padding: 28px 20px 32px;
  margin: 30px 0;
}
.entry-flow__arrow{
  color: var(--gold);
  font-size: 14px;
}
.entry-step::before {
  content: "✦";
  position: absolute;
  top: -14px;
  left: 5%;
  color: var(--gold);
}
.entry-step::after {
  content: "✦";
  position: absolute;
  bottom: -11px;
  right: 5%;
  color: var(--gold);
}

.entry-step__num {
  margin-bottom: 22px;
  color: #b78924;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.entry-step__num span {
  margin-right: 8px;
  font-size: 13px;
  letter-spacing: .25em;
}

.entry-step p {
  margin: 0;
  font-weight: 700;
}
.entry-step img {
  width: 130px;
}
.entry-step__btn {
  display: inline-block;
  margin-left: 10px;
  padding: 8px 18px;
  background: linear-gradient(90deg, #F2C7D7 0%, #A1BBDB 100%);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.hand-icon img{
  width: 50px;
  margin-left: 14px;
  color: #b78924;
  font-size: 36px;
  vertical-align: middle;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   Responsive
   ========================================= */
img {
  max-width: 100%;
}

@media (max-width: 900px) {
  .arch-container {
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 700;
  }

  .hero-badges {
    right: 6vw;
  }

  .strength-body,
  .workstyle-inner,
  .interview-section,
  .flow-section,
  .salon-info {
    padding-left: 32px;
    padding-right: 32px;
  }

  .owner-body {
    padding-left: 32px;
    padding-right: 32px;
  }

  .interview-photo {
    width: 140px;
    height: 140px;
  }

  .interview-inner {
    width: 76%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    margin-top: 0;
  }

  .arch-container {
    aspect-ratio: 3.2 / 3;
  }

  .slide-img,
  .slide-img img {
    width: 100%;
    height: 100%;
  }

  .slide-img img {
    object-fit: cover;
    object-position: center top;
  }

  .semi-circle {
    bottom: -180px;
    height: 360px;
  }

  .hero-badges {
    top: auto;
    right: 16px;
    bottom: 0px;
  }

  .badge,
  .badge-sales {
    width: 92px;
    height: 92px;
  }

  .badge-label,
  .badge-unit-top,
  .badge-unit-bottom {
    font-size: 9px;
  }

  .badge-award .badge-number,
  .badge-sales .badge-number {
    font-size: 34px;
  }

  .badge-unit-side {
    font-size: 10px;
  }

  .cta-section,
  .pain-section,
  .career-section,
  .results-section,
  .interview-section,
  .flow-section,
  .faq-section,
  .recruit-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-heading,
  .pain-heading,
  .strengths-label,
  .career-heading,
  .workstyle-heading,
  .results-heading,
  .interview-heading,
  .owner-heading,
  .salon h2,
  .flow-heading,
  .faq-heading,
  .entry-flow__title,
  .final-cta-heading {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.55;
  }

  .cta-img {
    gap: 8px;
    margin: 28px 0;
  }

  .cta-body {
    font-size: 13px;
    line-height: 2;
  }

  .btn,
  .btn-lg {
    width: 100%;
    max-width: 360px;
    padding: 14px 20px;
    font-size: 16px;
  }

  .ticker-track {
    margin-top: 32px;
  }

  .ticker-item {
    font-size: 44px;
  }

  .pain-inner {
    padding: 0 20px;
  }

  .pain-heading {
    padding: 0 20px;
    margin-bottom: 32px;
  }

  .pain-item {
    padding: 14px 16px;
    font-size: 13px;
  }

  .strengths-section {
    padding: 64px 0 100px;
    gap: 64px;
  }

  .strengths-label {
    padding: 8px 18px;
  }

  .strength-body,
  .strength-item--reverse .strength-body {
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
  }

  .strength-photo,
  .strength-text {
    width: 100%;
  }

  .strength-photo img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .strength-num img {
    width: 140px;
    margin-bottom: 12px;
  }

  .strength-heading {
    font-size: 20px;
    margin: 0 20px 28px;
  }

  .strength-text p {
    font-size: 14px;
    line-height: 2;
  }

  .cta-section1 {
    padding-bottom: 190px !important;
  }

  .workstyle-section {
    margin-top: -110px;
    padding-bottom: 64px;
  }

  .workstyle-arch {
    height: 350px;
  }

  .workstyle-inner {
    padding: 90px 20px 0;
  }

  .workstyle-heading {
    margin-bottom: 28px;
  }

  .workstyle-grid-top,
  .workstyle-grid-bottom {
    grid-template-columns: 1fr;
  }

  .ws-card {
    padding: 12px 18px 24px;
  }

  .ws-ttl {
    height: 58px;
  }

  .career-section {
    padding-left: 20px;
    padding-right: 20px;
    gap: 30px;
  }

  .career-heading {
    margin-bottom: 10px;
  }

  .career-item {
    grid-template-columns: 64px 58px 1fr;
    gap: 12px;
  }

  .career-item:not(.career-item--last) .career-left::after {
    left: 58px;
    height: 130px;
    bottom: auto;
  }

  .career-year {
    font-size: 11px;
  }

  .career-icon-box {
    width: 58px;
    height: 58px;
  }

  .career-text {
    padding-top: 4px;
    padding-bottom: 48px;
  }

  .career-item-title {
    font-size: 14px;
  }

  .career-item-body {
    font-size: 12px;
  }

  .salon {
    padding: 72px 0;
  }

  .salon h2 {
    margin-bottom: 36px;
  }

  .salon-bg {
    height: 220px;
  }

  .salon-card {
    width: calc(100% - 40px);
    margin-top: -90px;
    grid-template-columns: 1fr;
  }

  .salon-data {
    gap: 24px 12px;
    padding: 42px 18px;
  }

  .data-item span {
    padding: 5px 12px;
    font-size: 11px;
  }

  .data-item strong {
    font-size: 42px;
  }

  .salon-text {
    padding: 48px 20px;
  }

  .salon-check {
    width: 82px;
    left: -14px;
    top: -42px;
  }

  .results-section {
    padding-left: 20px;
    padding-right: 20px;
    gap: 42px;
    z-index: 0;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .results-card {
    padding: 30px 18px;
  }

  .results-big {
    font-size: 52px;
  }

  .interview-section {
    padding-left: 20px;
    padding-right: 20px;
    gap: 60px;
  }

  .interview-list {
    gap: 96px;
  }

  .interview-card,
  .interview-card.even {
    width: 100%;
    padding: 92px 18px 28px;
  }

  .interview-photo,
  .interview-card:nth-child(odd) .interview-photo {
    top: -52px;
    left: 50%;
    right: auto;
    width: 120px;
    height: 120px;
    transform: translateX(-50%);
  }

  .interview-inner,
  .interview-card:nth-child(odd) .interview-inner {
    width: 100%;
    margin: 0;
  }

  .interview-head {
    flex-wrap: wrap;
    justify-content: center;
  }

  .interview-head h3 {
    width: 100%;
    text-align: center;
  }

  .interview-status,
  .interview-boxes {
    grid-template-columns: 1fr;
  }

  .interview-num,
  .interview-card:nth-child(odd) .interview-num {
    display: none;
  }

  .owner-section {
    margin-top: 40px;
    padding-top: 70px;
  }

  .owner-arch {
    height: 320px;
  }

  .owner-inner {
    padding-bottom: 64px;
    margin-top: 30px;
  }

  .owner-heading {
    margin-bottom: 42px;
  }

  .owner-body {
    flex-direction: column;
    gap: 28px;
    padding: 0 20px;
  }

  .owner-photo,
  .owner-content {
    width: 100%;
  }

  .owner-catch {
    font-size: 19px;
  }

  .flow-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .flow-steps {
    align-items: flex-start;
  }

  .flow-step {
    align-items: flex-start;
    gap: 0px;
  }

  .flow-step-left {
    flex: 0 0 105px;
  }

  .flow-step-img {
    width: 105px;
  }

  .flow-step-right {
    min-width: 0;
    padding-top: 18px;
  }

  .flow-step-title {
    font-size: 17px;
  }

  .flow-connector {
    margin-left: 52px;
  }

  .flow-bonus {
    width: 100%;
    padding: 28px 16px;
  }

  .flow-bonus-line {
    width: 40px;
  }

  .cta-banner-section {
    padding: 50px 20px;
  }

  .cta-banner-inner {
    flex-direction: column;
    gap: 14px;
  }

  .faq-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .accordion {
    gap: 16px;
  }

  .accordion-header {
    padding: 16px;
    gap: 12px;
    text-align: left;
    font-size: 14px;
  }

  .accordion-body {
    padding: 20px 16px;
    font-size: 13px;
  }

  .salon-info {
    padding: 40px 20px;
  }

  .salon-title {
    font-size: 25px;
    margin-bottom: 36px;
  }

  .info-row {
    grid-template-columns: 78px 1fr;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 13px;
  }

  .entry-flow {
    padding-top: 70px;
  }

  .entry-arch {
    height: 320px;
  }

  .entry-flow__inner {
    padding: 70px 20px;
  }

  .entry-flow__title {
    margin-bottom: 52px;
  }

  .entry-flow__lead {
    width: 100%;
    padding: 22px 16px;
    font-size: 13px;
  }

  p.entry-flow__text {
    flex-wrap: wrap;
    justify-content: center;
  }

  .entry-step {
    padding: 26px 16px;
  }

  .final-cta-section {
    padding: 64px 20px;
  }
}

@media (max-width: 420px) {
  .arch-container {
    aspect-ratio: 4 / 5;
  }

  .hero-badges {
    right: 10px;
  }

  .badge,
  .badge-sales {
    width: 100px;
    height: 100px;
  }

  .cta-heading,
  .pain-heading,
  .strengths-label,
  .career-heading,
  .workstyle-heading,
  .results-heading,
  .interview-heading,
  .owner-heading,
  .salon h2,
  .flow-heading,
  .faq-heading,
  .entry-flow__title,
  .final-cta-heading {
    font-size: 20px;
  }

  .career-item {
    grid-template-columns: 58px 50px 1fr;
    gap: 9px;
  }

  .career-icon-box {
    width: 50px;
    height: 50px;
  }

  .career-item:not(.career-item--last) .career-left::after {
    left: 52px;
  }

  .flow-step-left {
    flex-basis: 88px;
  }

  .flow-step-img {
    width: 88px;
  }

  .flow-connector {
    margin-left: 43px;
  }
}

/* =========================================
   追従CVボタン（フローティングCTA）
   ========================================= */
body {
  padding-bottom: 76px; /* スマホ下部固定バーとフッターの重なり防止 */
}

.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  /* 初期状態は非表示（ファーストビュー閲覧中）。JSでスクロールに応じて .is-visible を付与 */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta__btn {
  flex: 1;
  width: auto;
  margin: 0;
  padding: 12px 10px;
  font-size: 13px;
  gap: 6px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }

  .floating-cta {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 260px;
    flex-direction: column;
    gap: 10px;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .floating-cta__btn {
    width: 100%;
    font-size: 15px;
    padding: 14px 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  }
}
