/* ============================================================
   recruit.css — 採用ページ
   ============================================================ */

/* ============================
   共通
============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --rc-navy: #0C2C5D;
  --rc-orange: #E8740E;
  --rc-yellow: #F5A623;
  --rc-bg-cream: #FDF6ED;
  --rc-gray: #888;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  color: #333;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* スクロールアニメーション */
html.rc-anim-ready .rc-anim {
  opacity: 0;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.rc-anim-ready .rc-anim--left  { transform: translateX(-30px); }
html.rc-anim-ready .rc-anim--right { transform: translateX(30px); }
html.rc-anim-ready .rc-anim--scale { transform: scale(0.96); }

html.rc-anim-ready .rc-anim.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

.rc-anim-d1 { transition-delay: 0.15s; }
.rc-anim-d2 { transition-delay: 0.3s; }
.rc-anim-d3 { transition-delay: 0.45s; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.rc-page-content {
  position: relative;
  z-index: 1;
}

.rc-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ============================
   共通パーツ
============================ */
/* セクション英字タイトル */
.rc-section-title-en {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--rc-navy);
  line-height: 1.1;
  margin-bottom: 4px;
}

/* 日本語サブタイトル */
.rc-section-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--rc-orange);
  margin-bottom: 24px;
}

/* セクションリード文 */
.rc-section-lead {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  line-height: 1.9;
  margin-bottom: 40px;
  margin-left: 200px;
}

/* アウトラインボタン */
.rc-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--rc-navy);
  border-radius: 40px;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rc-navy);
  transition: background 0.2s, color 0.2s;
}

.rc-btn-outline:hover {
  background: var(--rc-navy);
  color: #fff;
}

.rc-btn-arrow {
  font-size: 12px;
}


/* ============================
   HEADER（採用専用）
============================ */
.rc-header {                                                                 
    position: fixed;
    top: 0;                                                                    
    left: 0;
    right: 0;                                                                  
    z-index: 100; 
    background-color: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);                                        
    border-bottom: none;
  } 

.rc-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 32px 0;
}

.rc-logo {
  display: inline-flex;
  align-items: flex-end;
  flex-shrink: 0;
}

.rc-logo-img {
  height: 36px;
  width: auto;
  display: inline-block;
}

.rc-site-badge {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #222;
  line-height: 1;
  white-space: nowrap;
  margin-left: 10px;
  padding-bottom: 2px;
}

.rc-header-btns {
  display: flex;
  gap: 10px;
}

.rc-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: opacity 0.2s;
}

.rc-header-btn--orange {
  background: #F1AA29;
  color: #fff;
}

.rc-header-btn--navy {
  background: #F36328;
  color: #fff;
}

.rc-header-btn:hover { opacity: 0.8; }

.rc-header-btn-arrow {
  margin-left: 6px;
  font-size: 11px;
}

.rc-header-nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 32px 10px;
}

.rc-header-nav a {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  transition: opacity 0.2s;
}

.rc-header-nav a:hover { opacity: 0.6; }


/* ============================
   ヒーロー
============================ */
.rc-hero {
  position: relative;
  height: 100vh;
  margin-top: 0;
  padding-top: 90px;
  background: center/cover no-repeat;
  border-radius: 0 0 50% 50% / 0 0 80px 80px;
  overflow: hidden;
  z-index: 3;
}

.rc-hero-overlay {
  display: none;
}

.rc-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0 80px 180px;
}

.rc-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rc-hero-catch {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 3px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.rc-hero-sub {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* ヒーロー アニメーション（左からクリップ reveal） */
.rc-hero-anim {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  animation: rcHeroReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.rc-hero-anim--1 { animation-delay: 0.4s; }
.rc-hero-anim--2 { animation-delay: 1.2s; animation-duration: 0.8s; }

@keyframes rcHeroReveal {
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.rc-breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;
}

.rc-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: #999;
}

.rc-breadcrumb ol li:not(:last-child)::after {
  content: '>';
  margin-left: 4px;
  color: #ccc;
}

.rc-breadcrumb ol li a {
  color: #666;
  text-decoration: none;
}

.rc-breadcrumb ol li a:hover {
  text-decoration: underline;
}

/* ============================
   Message
============================ */
.rc-message {
  position: relative;
  padding: 180px 0 80px;
  margin-top: -80px;
  text-align: center;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 80px 80px;
  z-index: 2;
}

.rc-message-bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  z-index: 0;
}

.rc-message-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(230, 180, 90, 0.75);
}

.rc-message-content {
  position: relative;
  z-index: 1;
}

.rc-message-title {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 70px;
  font-weight: 300;
  font-stretch: extra-condensed;
  color: var(--rc-navy);
  line-height: 1;
  letter-spacing: 0.15em;
  margin-bottom: 48px;
}

.rc-message-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
  width: fit-content;
  margin: 0 auto 48px;
}

.rc-message-body p {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 2.2;
}

/* VIEW MORE ボタン（Message用） */
.rc-btn-message {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--rc-navy);
  letter-spacing: 1px;
}

.rc-btn-message-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--rc-navy);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
}


/* ============================
   Company — 会社を知る
============================ */
.rc-company {
  padding: 80px 0;
  margin-top: -80px;
  padding-top: 160px;
  background: #EFEFEF;
  position: relative;
  z-index: 1;
}

.rc-section-title-en--company {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--rc-orange);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.rc-company .rc-section-subtitle {
  font-size: 16px;
  margin-bottom: 32px;
}

.rc-company-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* メインカード */
.rc-company-card-main {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.rc-company-card-main-teal {
  flex: 1.2;
  background: #4A9EC0;
  padding: 48px 40px 48px 60px;
  display: flex;
  align-items: center;
  position: relative;
}

.rc-company-card-main-teal::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -60px;
  width: 120px;
  background: var(--rc-orange);
  border-radius: 50%;
}

.rc-company-card-text {
  font-size: 38px;
  font-weight: 700;
  color: var(--rc-navy);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.rc-company-card-text-bold {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: -16px;
  line-height: 1;
  -webkit-text-stroke: 3px var(--rc-navy);
  paint-order: stroke fill;
}

.rc-company-card-main-orange {
  flex: 1;
  background: var(--rc-orange);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 40px;
}

.rc-company-view {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  line-height: 44px;
}

.rc-company-nav-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--rc-navy);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
}

/* サブカード */
.rc-company-card-sub-wrap {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.rc-company-card-sub {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 32px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--rc-orange) center/cover no-repeat;
}

.rc-company-card-sub::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232, 116, 14, 0.8);
  z-index: 0;
}

.rc-company-card-sub:first-child {
  /* ACF動的CSS */
}

.rc-company-card-sub:last-child {
  /* ACF動的CSS */
}

.rc-company-card-sub-small {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.rc-company-card-sub-title {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.rc-company-card-sub-circle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--rc-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 1;
}


/* ============================
   Work — 仕事を知る
============================ */
.rc-work {
  padding: 80px 0;
  background: #FFF0C7;
}

.rc-section-title-en--work {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--rc-orange);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.rc-work .rc-section-subtitle {
  font-size: 16px;
  margin-bottom: 90px;
}

.rc-work-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-top: -120px;
}

.rc-work-text {
  flex: 0 0 380px;
  padding-top: 80px;
}

.rc-work-text p {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  line-height: 2.2;
  margin-bottom: 40px;
}

.rc-work-img {
  flex: 1;
  min-height: 380px;
  margin-top: -60px;
  background: center bottom/cover no-repeat;
  border-radius: 20px;
}


/* 塗りボタン（ネイビー） */
.rc-btn-filled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--rc-navy);
  border-radius: 40px;
  padding: 18px 60px;
  min-width: 340px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  transition: opacity 0.2s;
}

.rc-btn-filled:hover {
  opacity: 0.8;
}

.rc-btn-filled-arrow {
  position: absolute;
  right: 28px;
  font-size: 16px;
}


/* ============================
   People — 働く人を知る
============================ */
.rc-people {
  padding: 80px 0;
  background: #FFF0C7;
}

.rc-people .rc-section-title-en {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--rc-orange);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.rc-people .rc-section-subtitle {
  font-size: 16px;
}

.rc-people-box {
  background: #fff;
  border-radius: 24px;
  padding: 56px 100px;
}

.rc-people .rc-container {
  max-width: 1200px;
  padding: 0 20px;
}

.rc-people-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.rc-people-cards {
  display: flex;
  gap: 32px;
}

.rc-people-card {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: block;
}

.rc-people-card-img {
  position: absolute;
  inset: 0;
  background: #c8d0d8 center/cover no-repeat;
}

.rc-people-card:first-child .rc-people-card-img {
  /* background-image: ACF動的CSS */
  background-position: center 30%;
  background-size: cover;
}

.rc-people-card:last-child .rc-people-card-img {
  /* background-image: ACF動的CSS */
  background-position: center 22%;
  background-size: cover;
}

.rc-people-card-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 400px;
  padding: 28px 55px;
  background: linear-gradient(to bottom, rgba(12,44,93,0.25) 0%, rgba(12,44,93,0.15) 40%, rgba(0,0,0,0.55) 100%);
}

.rc-people-card-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
}

.rc-people-card-num {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: auto;
}

.rc-people-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.rc-people-card-text {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.rc-people-card-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.rc-people-card-name {
  font-size: 12px;
  color: #fff;
}

.rc-people-card-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--rc-navy);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}


/* ============================
   Environment — 働く環境を知る
============================ */
.rc-env {
  padding: 30px 0 80px;
  background: #FFF0C7;
}

.rc-env .rc-section-title-en {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--rc-orange);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.rc-env .rc-section-subtitle {
  font-size: 16px;
  margin-bottom: 8px;
}

.rc-env-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.rc-env-text {
  flex: 0 0 380px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.rc-env-text p {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  line-height: 2.2;
  margin-bottom: 32px;
}

.rc-env-tags {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: auto;
  justify-content: center;
}

.rc-env-tag {
  font-size: 16px;
  font-weight: 600;
  color: var(--rc-navy);
}

.rc-env-img {
  flex: 1;
  min-height: 380px;
  background: #c8d0d8 center/cover no-repeat;
  border-radius: 20px;
}


/* ============================
   画像ギャラリー（ループスライド）
============================ */
.rc-gallery {
  background: #fff;
  overflow: hidden;
  padding: 16px 0 0;
}

.rc-gallery-track {
  display: flex;
  gap: 12px;
  animation: galleryScroll 50s linear infinite;
  width: max-content;
}

.rc-gallery-item {
  width: 280px;
  height: 260px;
  background: #c0c0c0 center/cover no-repeat;
  flex-shrink: 0;
}

.rc-gallery-bar {
  height: 150px;
  background: #4A9EC0;
  margin-top: -80px;
}

@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================
   Entry — エントリー
============================ */
.rc-entry {
  padding: 80px 40px 40px;
  background: #fff;
}

.rc-entry-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 60px 80px;
  position: relative;
  background: #FFF0C7;
}

.rc-entry-header {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 0;
  padding-right: 140px;
}

.rc-entry-title-group {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-shrink: 0;
}

.rc-section-title-en--entry {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--rc-orange);
  letter-spacing: 0.08em;
  margin-bottom: 0;
  line-height: 1;
}

.rc-entry-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--rc-orange);
  white-space: nowrap;
}

.rc-entry-lead {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  line-height: 1.9;
  text-align: left;
  flex: 1;
}

.rc-entry-illust {
  position: absolute;
  top: 20px;
  right: 60px;
  width: 120px;
  height: auto;
}

/* 区切り線 */
.rc-entry-line {
  height: 2px;
  background: var(--rc-orange);
  margin: 32px 0 48px;
}

/* カード型ボタン */
.rc-entry-cards {
  display: flex;
  gap: 24px;
}

.rc-entry-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px 24px 40px;
  border-radius: 20px;
  min-height: 240px;
  transition: opacity 0.2s;
}

.rc-entry-card:hover { opacity: 0.85; }

.rc-entry-card-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

.rc-entry-card-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--rc-navy);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
}

/* ゴールド */
.rc-entry-card--gold {
  background: #F1AA29;
  color: #fff;
}

/* 白 */
.rc-entry-card--white {
  background: #fff;
  color: var(--rc-navy);
}

/* オレンジ */
.rc-entry-card--orange {
  background: #F36328;
  color: #fff;
}


/* ============================
   FOOTER（採用ページ）
============================ */
.rc-footer {
  background: #fff;
}

.rc-footer-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.rc-footer-main {
  padding: 56px 0 80px;
}

.rc-footer-top {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 40px;
}

.rc-footer-info {
  flex-shrink: 0;
  width: 200px;
}

.rc-footer-logo {
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.rc-footer-address {
  font-size: 12px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 16px;
}

.rc-footer-privacy {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  transition: opacity 0.2s;
}

.rc-footer-privacy:hover { opacity: 0.7; }

.rc-footer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 4px;
}

.rc-footer-nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
}

.rc-footer-nav-row a {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: opacity 0.2s;
}

.rc-footer-nav-row a:hover { opacity: 0.7; }

/* ボタン */
.rc-footer-btns {
  display: flex;
  gap: 16px;
  margin-left: 260px;
}

.rc-footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  min-width: 200px;
  transition: opacity 0.2s;
}

.rc-footer-btn:hover { opacity: 0.8; }

.rc-footer-btn--teal  { background: #4A9EC0; }
.rc-footer-btn--gold  { background: #F1AA29; }
.rc-footer-btn--orange { background: #F36328; }

.rc-footer-bottom {
  background: #FFF0C7;
  padding: 18px 0;
  text-align: center;
}

.rc-footer-bottom p {
  font-size: 11px;
  color: #333;
}


/* ============================
   RESPONSIVE — Tablet (≤ 1024px)
============================ */
@media (max-width: 1024px) {
  .rc-header-nav { display: none; }

  /* Company */
  .rc-company-card-main { min-height: 240px; }
  .rc-section-lead { margin-left: 0; }

  /* Work */
  .rc-work-inner {
    flex-direction: column;
    margin-top: 0;
  }
  .rc-work-text { flex: none; width: 100%; padding-top: 0; }
  .rc-work-img { width: 100%; min-height: 280px; margin-top: 0; border-radius: 0; background-position: center center; }

  /* People */
  .rc-people-box { padding: 40px 40px; }

  /* Environment */
  .rc-env-inner { flex-direction: column; }
  .rc-env-text { flex: none; width: 100%; }
  .rc-env-img { width: 100%; min-height: 280px; }

  /* Entry */
  .rc-entry { padding: 60px 28px 32px; }
  .rc-entry-inner { padding: 48px 40px 64px; }
  .rc-entry-header { flex-wrap: wrap; padding-right: 120px; }
  .rc-entry-illust { width: 100px; top: 10px; right: 40px; }

  /* Footer */
  .rc-footer-container { padding: 0 28px; }
  .rc-footer-btns { margin-left: 0; justify-content: center; }
}


/* ============================
   RESPONSIVE — Mobile (≤ 768px)
============================ */
@media (max-width: 768px) {
  .rc-container { padding: 0 20px; }

  .rc-section-title-en { font-size: 36px; }
  .rc-section-subtitle { font-size: 13px; }

  /* スマホでは下からゆっくりスライドイン（translateXは使わない） */
  html.rc-anim-ready .rc-anim {
    opacity: 0;
    transform: translateY(20px) !important;
    transition: opacity 0.8s ease, transform 0.8s ease !important;
  }
  html.rc-anim-ready .rc-anim.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .rc-anim-d1 { transition-delay: 0.15s !important; }
  .rc-anim-d2 { transition-delay: 0.3s !important; }

  /* Header */
  .rc-header-top { padding: 14px 16px 8px; }
  .rc-header--hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .rc-logo-img { height: 24px; }
  .rc-site-badge { font-size: 8px; letter-spacing: 1px; margin-left: 2px; }
  .rc-header-btns { gap: 4px; }
  .rc-header-btn { padding: 4px 10px; font-size: 9px; border-radius: 20px; white-space: nowrap; }
  .rc-header-btn-arrow { display: none; }

  /* Hero */
  .rc-hero {
    height: 70vh;
    min-height: 360px;
    padding-top: 60px;
    border-radius: 0 0 50% 50% / 0 0 40px 40px;
  }
  .rc-hero-content { padding: 0 0 60px 24px; }
  .rc-hero-catch { font-size: 28px; letter-spacing: 1px; }
  .rc-hero-sub { font-size: 13px; }

  /* Message */
  .rc-message {
    padding: 100px 0 56px;
    margin-top: -40px;
    border-radius: 0 0 50% 50% / 0 0 40px 40px;
  }
  .rc-message-title { font-size: 40px; margin-bottom: 32px; }
  .rc-message-body { margin: 0 auto 32px; }
  .rc-message-body p { font-size: 13px; line-height: 2; }
  .rc-message-body p br { display: none; }

  /* Company */
  .rc-company {
    padding: 56px 0;
    padding-top: 100px;
    margin-top: -40px;
  }
  .rc-section-title-en--company { font-size: 36px; }
  .rc-company .rc-section-subtitle { font-size: 13px; }
  .rc-section-lead { margin-left: 0; font-size: 13px; }
  .rc-section-lead br { display: none; }
  .rc-company-card-main {
    flex-direction: column;
    min-height: auto;
  }
  .rc-company-card-main-teal {
    padding: 24px 24px 40px;
    text-align: center;
    justify-content: center;
  }
  .rc-company-card-main-teal::after { display: none; }
  .rc-company-card-main-orange {
    padding: 12px 28px;
    border-radius: 50% 50% 0 0 / 30px 30px 0 0;
    margin-top: -30px;
    padding-top: 24px;
    position: relative;
    z-index: 1;
  }
  .rc-company-card-text { font-size: 30px; line-height: 1.2; }
  .rc-company-card-text-bold { font-size: 40px; -webkit-text-stroke: 2px var(--rc-navy); margin-bottom: -28px; }
  .rc-company-card-sub-wrap { flex-direction: column; }
  .rc-company-card-sub {
    min-height: auto;
    height: 160px;
    flex: none;
    padding: 24px 20px;
  }
  .rc-company-card-sub-title { font-size: 20px; }
  .rc-company-card-sub-title { font-size: 24px; }

  /* Work */
  .rc-work { padding: 56px 0; }
  .rc-section-title-en--work {
    font-size: 48px;
    display: inline;
    margin-right: 12px;
  }
  .rc-work .rc-section-subtitle {
    display: inline;
    margin-bottom: 0;
    vertical-align: baseline;
  }
  .rc-work-inner {
    flex-direction: column-reverse;
    margin-top: 15px;
    gap: 12px;
  }
  .rc-work-text {
    flex: none;
    width: 100%;
    padding-top: 0;
  }
  .rc-work-text p { font-size: 13px; }
  .rc-work-img {
    width: 100%;
    min-height: 220px;
    margin-top: 0;
    border-radius: 12px;
  }
  .rc-btn-filled {
    min-width: 100%;
    padding: 16px 40px;
  }

  /* People */
  .rc-people { padding: 24px 0 40px; }
  .rc-people .rc-section-title-en {
    font-size: 40px;
    display: inline;
    margin-right: 12px;
  }
  .rc-people .rc-section-subtitle {
    display: inline;
    vertical-align: baseline;
  }
  .rc-people-box {
    padding: 32px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
  }
  .rc-people-header {
    display: contents;
  }
  .rc-people-header > div {
    order: 0;
    margin-bottom: 20px;
  }
  .rc-people-cards {
    order: 1;
  }
  .rc-people-header .rc-btn-filled {
    order: 2;
    margin-top: 20px;
    min-width: 100%;
  }
  .rc-people-cards {
    flex-direction: column;
    gap: 20px;
  }
  .rc-people-card { min-height: 300px; }
  .rc-people-card-overlay {
    min-height: 300px;
    padding: 24px 24px;
  }
  .rc-people-card-num { font-size: 40px; }
  .rc-people-card-circle { width: 36px; height: 36px; font-size: 12px; }

  /* Environment */
  .rc-env { padding: 56px 0; }
  .rc-env .rc-section-title-en { font-size: 40px; }
  .rc-env .rc-section-subtitle { margin-bottom: 24px; }
  .rc-env-inner {
    flex-direction: column-reverse;
    gap: 16px;
  }
  .rc-env-text {
    flex: none;
    width: 100%;
    align-self: auto;
  }
  .rc-env-text p { font-size: 13px; }
  .rc-env-tags { margin-top: 4px; margin-bottom: 24px; gap: 24px; }
  .rc-env-img {
    width: 100%;
    min-height: 220px;
    border-radius: 12px;
  }

  /* Gallery */
  .rc-gallery { padding: 12px 0 0; }
  .rc-gallery-item { width: 180px; height: 160px; }
  .rc-gallery-bar { height: 100px; margin-top: -60px; }

  /* Entry */
  .rc-entry { padding: 32px 16px 24px; }
  .rc-entry-inner { padding: 36px 20px 48px; }
  .rc-entry-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-right: 90px;
  }
  .rc-entry-title-group { gap: 10px; }
  .rc-section-title-en--entry { font-size: 36px; }
  .rc-entry-subtitle { font-size: 12px; }
  .rc-entry-illust {
    width: 95px;
    top: 10px;
    right: 12px;
  }
  .rc-entry-lead { font-size: 13px; }
  .rc-entry-lead br { display: none; }
  .rc-entry-line { margin: 20px 0 28px; }
  .rc-entry-cards { flex-direction: column; gap: 14px; }
  .rc-entry-card {
    min-height: auto;
    padding: 20px 20px 18px;
    gap: 12px;
    border-radius: 14px;
  }
  .rc-entry-card-text { font-size: 16px; }
  .rc-entry-card-circle { width: 34px; height: 34px; font-size: 12px; }

  /* Footer */
  .rc-footer-container { padding: 0 20px; }
  .rc-footer-main { padding: 40px 0 48px; }
  .rc-footer-top {
    flex-direction: column;
    gap: 24px;
  }
  .rc-footer-info { width: 100%; text-align: center; }
  .rc-footer-logo { width: 140px; margin: 0 auto 12px; }
  .rc-footer-address { text-align: center; }
  .rc-footer-privacy { display: inline-block; }
  .rc-footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    column-gap: 32px;
    margin: 0 auto;
  }
  .rc-footer-nav-row {
    display: contents;
  }
  .rc-footer-nav-row a {
    font-size: 13px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
  }
  .rc-footer-btns {
    flex-direction: column;
    gap: 10px;
    margin-left: 0;
  }
  .rc-footer-btn {
    width: 100%;
    min-width: auto;
    padding: 12px 32px;
  }
}
