/*
Theme Name: Yutec
Theme URI: https://yutec.co.jp
Author: Production Team
Description: 有限会社遊テック 公式サイト WordPress テーマ
Version: 1.0.0
License: Private
Text Domain: yutec
*/

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --color-primary:       #FF7402;
  --color-primary-dark:  #e05e00;
  --color-primary-light: #FF9A4A;
  --color-secondary:     #B44C97;
  --color-secondary-dark:#8f3a79;
  --color-dark:          #00365E;
  --color-dark2:         #1a1a2e;
  --color-text:          #333333;
  --color-text-light:    #666666;
  --color-text-muted:    #999999;
  --color-bg:            #FFFFFF;
  --color-bg-warm:       #F8F4EC;
  --color-bg-gray:       #F5F5F5;
  --color-border:        #E0E0E0;
  --color-border-warm:   #D8CEB8;

  --font-sans:  'Noto Sans JP', 'メイリオ', Meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-serif: 'Noto Serif JP', 'ヒラギノ明朝 ProN W3', '游明朝', YuMincho, serif;

  --max-width:     1100px;
  --header-height: 70px;

  --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --transition: 0.3s ease;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; vertical-align: middle; margin: 0 auto; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 60px 0; }
.section--sm { padding: 40px 0; }
.section--lg { padding: 80px 0; }

.section__header { text-align: center; margin-bottom: 48px; }
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.4;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-full);
}
.section__subtitle {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,116,2,0.35);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,116,2,0.5);
  transform: translateY(-2px);
}
.btn--secondary {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(180,76,151,0.35);
}
.btn--secondary:hover {
  background: var(--color-secondary-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn--white {
  background: #fff;
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: var(--color-primary);
}
.btn--sm { padding: 8px 20px; font-size: 0.875rem; }
.btn--lg { padding: 16px 40px; font-size: 1.0625rem; }

/* Flyer button (今月のチラシ) */
.btn--flyer {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.btn--flyer:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* Arrow button variant */
.btn--arrow::after {
  content: '→';
  font-size: 1em;
  transition: transform var(--transition);
}
.btn--arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   Tags / Badges
   ============================================================ */
.tag {
  display: inline-block;
  padding: 2px 10px;
  background: var(--color-bg-gray);
  color: var(--color-text-light);
  font-size: 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}
.tag--primary { background: rgba(255,116,2,0.12); color: var(--color-primary); }
.tag--secondary { background: rgba(180,76,151,0.12); color: var(--color-secondary); }

/* ============================================================
   Site Header
   ============================================================ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
  box-shadow: none;
  z-index: 1000;
}
/* ハンバーガーを白で */
.site-header .hamburger__line { background: #fff; }
.site-header .header__logo-img--light { display: none; }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 24px;
}

.header__logo { display: flex; align-items: center; text-decoration: none; }
.header__logo img { height: 40px; width: auto; }

/* h_box: デスクトップのみ表示 (既存サイト準拠) */
.site-header .h_box { display: none; }

@media (min-width: 1024px) {
  /* h_box */
  .site-header .h_box {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding: 0 10px;
  }
  .site-header .h_list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .site-header .h_list li {
    line-height: 20px;
  }
  /* shop_btn: 既存サイト add.css 準拠 */
  .site-header .h_list li a.shop_btn {
    display: block;
    color: #fff;
    background-color: #B44C97;
    border-radius: 3px;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: background var(--transition);
  }
  .site-header .h_list li a.shop_btn:hover {
    background-color: rgba(0,0,0,0.5);
    color: #fff;
  }


  /* front-nav / dropdown で共用するセレクタ */
  .nav__item { position: relative; }
  .nav__link {
    display: flex;
    align-items: center;
    height: var(--header-height);
    padding: 0 16px;
    font-size: 0.875rem;
    color: var(--color-text);
    font-weight: 500;
    white-space: nowrap;
    transition: color var(--transition);
  }
  .nav__link:hover,
  .nav__item.is-active > .nav__link { color: var(--color-primary); }

  .nav__link--has-child::after {
    content: '▾';
    margin-left: 4px;
    font-size: 0.625rem;
  }

  .nav__list {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
    height: var(--header-height);
  }

  .nav__dropdown {
    position: absolute;
    top: calc(var(--header-height) - 2px);
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border-top: 3px solid var(--color-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
  }
  .nav__item:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 0.875rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition);
  }
  .nav__dropdown a:last-child { border-bottom: none; }
  .nav__dropdown a:hover {
    background: var(--color-bg-warm);
    color: var(--color-primary);
    padding-left: 28px;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  position: fixed;
  top: 13px;
  right: 16px;
  z-index: 1100;
  box-shadow: 0 2px 10px rgba(255,116,2,0.5);
}
.hamburger:hover { background: var(--color-primary-dark); }
.hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}
.hamburger.is-open { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.15); }
.hamburger.is-open .hamburger__line { background: var(--color-primary); }
.hamburger.is-open .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) { .hamburger { display: none; } }




/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 92vw);
  height: 100vh;
  height: 100dvh;
  background: #fff7f0;
  z-index: 1050;
  overflow-y: auto;
  overflow-x: hidden;
  transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.mobile-nav.is-open { right: 0; }

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-nav__overlay.is-open { opacity: 1; visibility: visible; }

/* ナビ内ヘッダー */
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--color-primary);
  flex-shrink: 0;
}
.mobile-nav__logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.mobile-nav__close {
  position: relative;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.mobile-nav__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
}
.mobile-nav__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-nav__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.mobile-nav__close:hover { background: rgba(255,255,255,0.35); }

/* 店舗ショートカット */
.mobile-nav__shops {
  padding: 16px 20px;
  background: #fff0e0;
  border-bottom: 2px solid #ffe0c0;
  flex-shrink: 0;
}
.mobile-nav__shops-label {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 10px;
}
.mobile-nav__shops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mobile-nav__shops-grid a {
  display: block;
  padding: 9px 4px;
  background: #fff;
  border: 1.5px solid var(--color-primary);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--color-primary);
  text-align: center;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.mobile-nav__shops-grid a:hover {
  background: var(--color-primary);
  color: #fff;
}

/* メインリスト */
.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  flex: 1;
  background: #fff;
}
.mobile-nav__item a,
.mobile-nav__toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  height: 62px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: background 0.2s;
}
.mobile-nav__item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: #f0e8df;
}
.mobile-nav__item:last-child a::after { display: none; }
.mobile-nav__toggle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: #f0e8df;
}
.mobile-nav__item a:hover,
.mobile-nav__toggle:hover { background: #fff7f0; }
.mobile-nav__toggle.is-open { background: #fff0e0; }

.mobile-nav__en {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 3px;
  font-weight: 700;
}
.mobile-nav__ja {
  display: block;
  font-size: 0.9375rem;
  color: #333;
  line-height: 1;
  font-weight: 500;
}
.mobile-nav__toggle .mobile-nav__en,
.mobile-nav__toggle .mobile-nav__ja { pointer-events: none; }

.mobile-nav__chevron {
  margin-left: 0;
  flex-shrink: 0;
  color: #ccc;
  transition: transform 0.3s ease, color 0.2s;
}
.mobile-nav__toggle.is-open .mobile-nav__chevron { transform: rotate(180deg); color: var(--color-primary); }

/* 店舗のご案内: リンク＋シェブロンの分割行 */
.mobile-nav__row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #f0e8df;
}
.mobile-nav__row .mobile-nav__parent-link {
  flex: 1;
  min-width: 0;
  height: 62px;
  border-bottom: none;
}
.mobile-nav__row .mobile-nav__parent-link::after { display: none; }
.mobile-nav__row .mobile-nav__toggle {
  width: 56px;
  flex-shrink: 0;
  padding: 0;
  height: 62px;
  justify-content: center;
  border-left: 1px solid #f0e8df;
}
.mobile-nav__row .mobile-nav__toggle::after { display: none; }

/* サブメニュー */
.mobile-nav__sub {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fdf6f0;
}
.mobile-nav__sub.is-open { display: block; }
.mobile-nav__sub li a {
  height: 48px;
  padding-left: 52px;
  font-size: 0.875rem;
  color: #555;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: none;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.mobile-nav__sub li a::before {
  content: '';
  position: absolute;
  left: 34px;
  top: 50%;
  width: 8px;
  height: 1.5px;
  background: var(--color-primary);
  opacity: 0.5;
  transform: translateY(-50%);
}
.mobile-nav__sub li a::after { display: none; }
.mobile-nav__sub li a:hover { color: var(--color-primary); background: #fff0e0; }

/* CTAボタン */
.mobile-nav__cta {
  padding: 20px;
  flex-shrink: 0;
  background: #fff7f0;
  border-top: 2px solid #ffe0c0;
}
.mobile-nav__cta-btn {
  display: block;
  padding: 14px;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(255,116,2,0.35);
  transition: background 0.2s, box-shadow 0.2s;
}
.mobile-nav__cta-btn:hover { background: var(--color-primary-dark); box-shadow: 0 4px 16px rgba(255,116,2,0.45); }

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
  background: var(--color-bg-gray);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
}
.breadcrumb__list { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--color-text-light);
}
.breadcrumb__item + .breadcrumb__item::before {
  content: '›';
  margin-right: 4px;
  color: var(--color-border);
}
.breadcrumb__item a { color: var(--color-primary); }
.breadcrumb__item a:hover { text-decoration: underline; }
.breadcrumb__item.is-current { color: var(--color-text-muted); }

/* ============================================================
   Hero Section (Front Page)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  /* フロントページはヒーローをビューポート最上部から開始 */
  margin-top: 0;
}
.hero__slideshow {
  position: absolute;
  inset: 0;
}
/* PC/SP 出し分け */
.hero__slideshow--sp { display: none; }
@media (max-width: 767px) {
  .hero__slideshow--pc { display: none; }
  .hero__slideshow--sp { display: block; }
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 18s infinite;
}
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 6s; }
.hero__slide:nth-child(3) { animation-delay: 12s; }

@keyframes heroSlide {
  0%   { opacity: 0; transform: scale(1.08); }
  6%   { opacity: 1; transform: scale(1.04); }
  32%  { opacity: 1; transform: scale(1.0); }
  40%  { opacity: 0; transform: scale(1.0); }
  100% { opacity: 0; transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,54,94,0.72) 0%,
    rgba(0,30,60,0.45) 50%,
    rgba(180,76,151,0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: calc(var(--header-height) + 24px) 24px 48px;
}
.hero__inner {
  max-width: 640px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}
.hero__title strong {
  display: block;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 0.05em;
}
.hero__desc {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  line-height: 1.9;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 767px) {
  .hero__actions {
    justify-content: center;
  }
  .hero__actions .btn--lg {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}

/* Hero inline video (right column) */
.hero__video {
  width: 100%;
  margin-top: 24px;
}
.hero__video video {
  width: 100%;
  border-radius: 8px;
}
@media (min-width: 1024px) {
  .hero {
    height: 100vh;
    max-height: 900px;
  }
  .hero__content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 56px;
    padding-left: 48px;
    padding-right: 48px;
    padding-bottom: 24px;
    height: 100%;
  }
  .hero__inner {
    max-width: 480px;
    flex: 0 0 480px;
  }
  .hero__video {
    flex: 0 0 500px;
    display: flex;
    align-items: center;
    margin-top: 0;
    order: -1;
  }
  .hero__video video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  }
}

/* Hero: ロゴ (左上, 既存サイト準拠) */
.hero__logo-wrap {
  position: absolute;
  top: 15px;
  left: 50px;
  z-index: 10;
}
.hero__logo-wrap img {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
}
@media (max-width: 767px) {
  .hero__logo-wrap {
    top: 10px;
    left: 16px;
  }
  .hero__logo-wrap img { height: 52px; }
}

/* Hero: au YOUTEC GROUP イメージ (右上, 既存サイト準拠) */
.hero__youtec {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
}
.hero__youtec img {
  width: 540px;
  max-width: 45vw;
}
@media (min-width: 1100px) {
  .hero__youtec { display: block; }
}

/* Home page: ヘッダーのロゴを非表示 (hero__logo-wrap が代替) */
.home .site-header .header__logo {
  visibility: hidden;
}

/* ============================================================
   Page Header (Subpages)
   ============================================================ */
.page-header {
  position: relative;
  height: 220px;
  overflow: hidden;
  margin-top: 0;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark2) 100%);
}
.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  transition: opacity var(--transition);
}
.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,54,94,0.8) 0%, rgba(180,76,151,0.5) 100%);
}
.page-header__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.page-header__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.page-header__en {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 6px;
}

@media (min-width: 768px) {
  .page-header { height: 280px; }
}

/* ============================================================
   Shop Cards Section (Front Page)
   ============================================================ */
.shops-section { background: var(--color-bg-warm); }

.shops-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}
@media (min-width: 640px) { .shops-grid { grid-template-columns: repeat(3, 1fr); } }

.shop-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: stretch;
}
.shop-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.shop-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.shop-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.shop-card:hover .shop-card__image img { transform: scale(1.05); }
.shop-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.shop-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.shop-card__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 8px;
}
.shop-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.shop-card__links { display: flex; gap: 8px; flex-direction: column; }
.shop-card__link { text-align: center; font-size: 0.875rem; }

.shop-card__chirashi {
  display: block;
  text-align: center;
  padding: 8px;
  background: rgba(255,116,2,0.06);
  border: 1px solid rgba(255,116,2,0.25);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--color-primary);
  transition: all var(--transition);
}
.shop-card__chirashi:hover { background: var(--color-primary); color: #fff; }

/* ============================================================
   About / Service Section (Front Page)
   ============================================================ */
.about-section { background: var(--color-dark); }
.about-section .section__title { color: #fff; }
.about-section .section__subtitle { color: rgba(255,255,255,0.6); }
.about-section .section__title::after {
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.about-card {
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .about-card { padding: 24px 16px; }
}
.about-card:hover {
  background: rgba(255,116,2,0.15);
  border-color: rgba(255,116,2,0.4);
  transform: translateY(-4px);
  color: #fff;
}
.about-card__image {
  width: min(110px, 60%);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 3px solid rgba(255,255,255,0.2);
  transition: border-color var(--transition);
}
@media (min-width: 768px) {
  .about-card__image {
    width: 150px;
    height: 150px;
    aspect-ratio: auto;
    margin-bottom: 16px;
  }
}
.about-card:hover .about-card__image { border-color: var(--color-primary); }
.about-card__image img { width: 100%; height: 100%; object-fit: cover; }
.about-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  font-family: var(--font-serif);
}
.about-card__desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--color-primary-light);
}
.about-card__link::after { content: '→'; transition: transform var(--transition); }
.about-card:hover .about-card__link::after { transform: translateX(4px); }

/* ============================================================
   News Section
   ============================================================ */
.news-section { background: var(--color-bg); }

.news-list { display: flex; flex-direction: column; }
.news-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.news-item:first-child { border-top: 1px solid var(--color-border); }
.news-item:hover { background: var(--color-bg-warm); padding-left: 12px; padding-right: 12px; margin: 0 -12px; border-radius: var(--radius-sm); }
.news-item__date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-feature-settings: "tnum";
  white-space: nowrap;
}
.news-item__title {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
  transition: color var(--transition);
}
.news-item:hover .news-item__title { color: var(--color-primary); }

.news-more { text-align: center; margin-top: 32px; }

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, rgba(0,54,94,0.95) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180,76,151,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 400;
}
.cta__subtitle {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-bottom: 40px;
}
.cta__grid {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .cta__grid { grid-template-columns: repeat(3, 1fr); } }

.cta__tel-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}
.cta__tel-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,116,2,0.5);
}
.cta__tel-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.cta__tel-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color var(--transition);
}
.cta__tel-number:hover { color: var(--color-primary-light); }
.cta__tel-number svg { width: 18px; height: 18px; flex-shrink: 0; }

.cta__action { text-align: center; }

/* ============================================================
   Page Content (Subpages)
   ============================================================ */
.page-content { padding: 60px 0 80px; }

.content-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 400;
  color: var(--color-dark);
  padding: 14px 16px 14px 20px;
  border-left: 5px solid var(--color-primary);
  background: var(--color-bg-gray);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
  position: relative;
}
.content-title span {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  margin-top: 2px;
  text-transform: uppercase;
}

.content-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  margin: 32px 0 16px;
}

.content-subheading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  padding: 10px 16px;
  background: var(--color-bg-gray);
  border-left: 4px solid var(--color-primary-light);
  border-bottom: 1px dashed var(--color-border);
  margin: 24px 0 12px;
}

.content-text { font-size: 0.9375rem; line-height: 1.9; margin-bottom: 20px; }
.content-text p { margin-bottom: 16px; }

/* Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  margin: 24px 0;
}
.data-table th, .data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}
.data-table th {
  background: rgba(255,116,2,0.07);
  color: var(--color-primary-dark);
  font-weight: 600;
  width: 160px;
  white-space: nowrap;
}
.data-table tr:last-child th,
.data-table tr:last-child td { border-bottom: none; }

@media (max-width: 600px) {
  .data-table th, .data-table td { display: block; width: 100%; }
  .data-table th { border-bottom: none; padding-bottom: 4px; }
  .data-table td { padding-top: 4px; }
}

/* Media + Text Layout */
.media-block { margin: 32px 0; overflow: hidden; }
.media-block--left .media-block__image {
  float: left;
  width: 300px;
  margin: 0 28px 20px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.media-block--right .media-block__image {
  float: right;
  width: 300px;
  margin: 0 0 20px 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.media-block__image img { width: 100%; }
.media-block::after { content: ''; display: table; clear: both; }
.media-block__label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .media-block--left .media-block__image,
  .media-block--right .media-block__image {
    float: none;
    width: 100%;
    margin: 0 0 16px;
  }
}

/* Company Profile List */
.rinen-list { margin: 20px 0; }
.rinen-list li {
  padding: 12px 16px 12px 44px;
  position: relative;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.rinen-list li::before {
  content: '◆';
  position: absolute;
  left: 16px;
  color: var(--color-primary);
  font-size: 0.75rem;
  top: 16px;
}

/* History */
.history-list { margin: 20px 0; }
.history-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0 20px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.9375rem;
}
.history-item__date {
  color: var(--color-primary);
  font-weight: 600;
  font-feature-settings: "tnum";
  line-height: 1.7;
}
@media (max-width: 480px) {
  .history-item { grid-template-columns: 1fr; gap: 4px; }
  .history-item__date { font-size: 0.875rem; }
}

/* Voice / Employee cards */
.voice-section { margin: 40px 0; }
.voice-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}
.voice-block:last-child { border-bottom: none; }
.voice-block--reverse { grid-template-columns: 1fr 200px; }
.voice-block--reverse .voice-block__image { order: 2; }
.voice-block--reverse .voice-block__body { order: 1; }

.voice-block__image img {
  width: 100%;
}
.voice-block__q {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
  font-size: 0.9375rem;
}
.voice-block__a { font-size: 0.9375rem; line-height: 1.8; margin-bottom: 20px; color: var(--color-text-light); }

.voice-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}
@media (min-width: 640px) { .voice-mini-grid { grid-template-columns: repeat(4, 1fr); } }

.voice-mini-card {
  text-align: center;
  background: var(--color-bg-gray);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.voice-mini-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.voice-mini-card__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 3px solid var(--color-primary);
}
.voice-mini-card__image img { width: 100%; height: 100%; object-fit: cover; }
.voice-mini-card__name { font-weight: 700; font-size: 0.875rem; color: var(--color-dark); }
.voice-mini-card__text { font-size: 0.8125rem; color: var(--color-text-light); line-height: 1.7; margin-top: 8px; }
.voice-mini-card__meta { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 8px; }

@media (max-width: 640px) {
  .voice-block { grid-template-columns: 1fr; }
  .voice-block--reverse .voice-block__image { order: 0; }
  .voice-block--reverse .voice-block__body { order: 0; }
}

/* Daily Schedule */
.schedule-list { margin: 24px 0; }
.schedule-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}
.schedule-item__time {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.9375rem;
  padding-right: 16px;
  position: relative;
}
.schedule-item__time::after {
  content: '';
  position: absolute;
  right: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}
.schedule-item__text { font-size: 0.9375rem; line-height: 1.7; color: var(--color-text-light); }
@media (max-width: 480px) { .schedule-item { grid-template-columns: 1fr; gap: 6px; } }

/* Service Images grid */
.service-grid {
  display: grid;
  gap: 32px;
}

/* Recruit Info */
.recruit-image { border-radius: var(--radius-lg); overflow: hidden; margin: 24px 0; box-shadow: var(--shadow-md); }

/* Event / Flyer section */
.flyer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .flyer-grid { grid-template-columns: repeat(3, 1fr); } }

.flyer-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.flyer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.flyer-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  padding: 16px;
  border-bottom: 2px solid var(--color-primary);
  background: var(--color-bg-warm);
}
.flyer-card__image {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--color-bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flyer-card__image img { width: 100%; height: 100%; object-fit: cover; }
.flyer-card__action { padding: 12px 16px; text-align: center; }

/* Shop page: Slideshow */
.shop-slideshow {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}
.shop-slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: shopSlide 12s infinite;
}
.shop-slideshow__slide:nth-child(1) { animation-delay: 0s; }
.shop-slideshow__slide:nth-child(2) { animation-delay: 4s; }
.shop-slideshow__slide:nth-child(3) { animation-delay: 8s; }

@keyframes shopSlide {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  38%  { opacity: 1; }
  45%  { opacity: 0; }
  100% { opacity: 0; }
}
.shop-slideshow__slide img { width: 100%; height: 100%; object-fit: cover; }

/* Map embed */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 16px 0;
}
.map-embed iframe { display: block; width: 100%; height: 400px; }

/* ============================================================
   Contact Form
   ============================================================ */
.contact-form-wrap { max-width: 700px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}
.form-label .required {
  display: inline-block;
  background: #e8372a;
  color: #fff;
  font-size: 0.6875rem;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 400;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--color-text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255,116,2,0.12);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.form-textarea { min-height: 160px; resize: vertical; }
.form-submit { text-align: center; margin-top: 32px; }
.form-submit .btn { min-width: 200px; }

.contact-tel-section {
  background: var(--color-bg-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
}
.contact-tel-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
  text-align: center;
}
.tel-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tel-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  flex-wrap: wrap;
  gap: 8px;
}
.tel-list__label { font-size: 0.9375rem; color: var(--color-text); }
.tel-list__number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tel-list__number:hover { color: var(--color-primary); }

/* ============================================================
   News Single / Archive
   ============================================================ */
.news-article { max-width: 800px; margin: 0 auto; }
.news-article__header { margin-bottom: 32px; }
.news-article__date { color: var(--color-text-muted); font-size: 0.875rem; margin-bottom: 8px; }
.news-article__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.5;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 16px;
}
.news-article__body { font-size: 0.9375rem; line-height: 1.9; }
.news-article__body p { margin-bottom: 20px; }
.news-article__body img { border-radius: var(--radius-md); margin: 16px 0; }
.news-article__nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.news-article__nav a { font-size: 0.875rem; }

.archive-list { display: flex; flex-direction: column; }
.archive-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition), padding var(--transition);
}
.archive-item:first-child { border-top: 1px solid var(--color-border); }
.archive-item:hover { background: var(--color-bg-warm); padding-left: 12px; padding-right: 12px; border-radius: var(--radius-sm); }
.archive-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}
.archive-item__date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.archive-item .tag {
  white-space: nowrap;
  flex-shrink: 0;
}
.archive-item__title {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-dark);
}
.archive-item:hover .archive-item__title { color: var(--color-primary); }
.archive-item__arrow {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.archive-item:hover .archive-item__arrow {
  transform: translateX(4px);
  color: var(--color-primary);
}
@media (max-width: 640px) {
  .archive-item { flex-wrap: wrap; gap: 6px 10px; }
  .archive-item__title { width: 100%; flex: none; order: 3; }
  .archive-item__arrow { order: 4; margin-left: auto; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--color-bg-warm);
  border-top: 4px solid var(--color-primary);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 0 32px;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr auto auto auto;
    gap: 24px 48px;
  }
}

.footer__brand { }
.footer__logo { height: 36px; width: auto; margin-bottom: 16px; display: block; margin-left: 0px; }
.footer__address {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.9;
  font-family: var(--font-serif);
}
.footer__address strong { font-size: 1rem; color: var(--color-text); display: block; margin-bottom: 4px; }

.footer__nav-group { }
.footer__nav-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dotted var(--color-border-warm);
}
.footer__nav-links { display: flex; flex-direction: column; gap: 6px; }
.footer__nav-links a {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.footer__nav-links a::before { content: '›'; color: var(--color-primary); }
.footer__nav-links a:hover { color: var(--color-primary); }

.footer__bottom {
  border-top: 1px solid var(--color-border-warm);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__copyright {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* Page to top */
.to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  text-decoration: none;
  font-size: 1.25rem;
  z-index: 800;
}
.to-top.is-visible { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-4px); }

/* ============================================================
   Entrance Animations
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   Utilities / Helpers
   ============================================================ */
.clearfix::after { content: ''; display: table; clear: both; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; }
.wp-block-image { margin: 16px 0; }
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { display: block; margin: 0 auto 16px; }

/* ============================================================
   Front Page Navigation Bar  ― 旧サイト #g_navi デザイン
   ============================================================ */
.front-nav-sentinel { height: 0; }

/* モバイルは非表示（ハンバーガーを使う） */
.front-nav { display: none; }

@media (min-width: 1024px) {
  .front-nav {
    display: block;
    position: relative;   /* ドロップダウンの基準点 */
    width: 100%;
    background: #FF7402;
    z-index: 998;
  }
  .front-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  }

  /* ─── コンテナ ─── */
  .front-nav__container {
    width: 1100px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  /* ─── トップレベルリスト ─── */
  .front-nav__list {
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 80px;
    justify-content: center;
  }

  /* ─── トップレベルアイテム ─── */
  .front-nav .nav__item {
    position: static;     /* ドロップダウンを .front-nav 基準で展開 */
    flex: 1;
    max-width: 183px;
  }

  /* ─── トップレベルリンク ─── */
  .front-nav .nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    color: #fff !important;   /* is-active などの上書きを防ぐ */
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    line-height: 1.4;
    padding: 0 4px;
    transition: background 0.2s;
    position: relative;
  }
  /* ▼ は position:absolute なのでパディング不要。全項目同じ padding で垂直中央揃え */
  .front-nav .nav__link:hover,
  .front-nav .nav__item:hover > .nav__link {
    background: #FF8B2D;
    color: #fff !important;
  }

  /* 旧サイト準拠: 右端に 20px の縦線セパレーター (::before を使用、サブメニュー除外) */
  .front-nav .nav__dropdown .nav__link::before,
  .front-nav .nav__dropdown a::before { display: none; }

  .front-nav .front-nav__list > .nav__item > .nav__link::before {
    content: '';
    position: absolute;
    right: 0;
    top: 30px;
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.6);
  }
  /* 最後のトップアイテムは右線なし */
  .front-nav .front-nav__list > .nav__item:last-child > .nav__link::before { display: none; }

  /* ▼ 矢印をテキスト下部中央に (::after を使用) */
  .front-nav .nav__link--has-child::after {
    content: '▼';
    font-size: 9px;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.85);
  }

  /* ─── ドロップダウン: 全幅パープル ─── */
  .front-nav .nav__dropdown {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #B44C97;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    /* ヘッダーの一般スタイルを打ち消し */
    border-top: none;
    border-radius: 0;
    min-width: unset;
  }
  .front-nav .nav__item:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* ドロップダウン内のul */
  .front-nav .nav__dropdown > ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 1100px;
    max-width: 100%;
  }
  .front-nav .nav__dropdown > ul > li {
    flex: 0 0 183px;
  }

  /* ドロップダウン内リンク */
  .front-nav .nav__dropdown .nav__link,
  .front-nav .nav__dropdown a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    padding: 0;
    color: rgba(255,255,255,0.92);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    border-bottom: none;
    background: transparent;
    transition: background 0.2s;
  }
  .front-nav .nav__dropdown .nav__link:hover,
  .front-nav .nav__dropdown a:hover {
    background: #C270AC;
    color: #fff;
    padding-left: 0;  /* 上位 a:hover の padding-left を打ち消し */
  }
}

/* ============================================================
   WordPress Admin Bar Offset
   ============================================================ */
.admin-bar .site-header { top: 32px; }
.admin-bar .front-nav.is-sticky { top: 32px; }
.admin-bar .hamburger { top: calc(32px + 13px); }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .front-nav.is-sticky { top: 46px; }
  .admin-bar .hamburger { top: calc(46px + 13px); }
}


/* ============================================================
   チラシ一覧 (page-event)
   ============================================================ */
.flyer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.flyer-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.flyer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.flyer-card__name {
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 20px 8px;
  color: var(--color-dark);
  border-bottom: 2px solid var(--color-primary);
  margin: 0;
}
.flyer-card__image {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.flyer-card__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.flyer-card:hover .flyer-card__image img { transform: scale(1.04); }
.flyer-card__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: #bbb;
  font-size: 0.875rem;
  background: var(--color-bg-gray);
}
.flyer-card__action {
  padding: 16px 20px;
  text-align: center;
}


/* ============================================================
   チラシ詳細 (single-chirashi)
   ============================================================ */
.chirashi-images {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 32px 0;
}
.chirashi-images__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.chirashi-back {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   採用ページ専用スタイル (rc- prefix)
   ============================================================ */
.rc-container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.rc-pc-br { display: none; }

.rc-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  position: relative;
  z-index: 1;
  will-change: transform, opacity;
}
.rc-fade-up.rc-is-visible { opacity: 1; transform: translateY(0); }
.rc-fade-up:nth-child(2) { transition-delay: 0.1s; }
.rc-fade-up:nth-child(3) { transition-delay: 0.2s; }
.rc-fade-up:nth-child(4) { transition-delay: 0.3s; }

/* --- セクション共通 --- */
.rc-section { padding-block: 64px; }
.rc-section--gray { background-color: #F7F7F7; }
.rc-section__head {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.rc-section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 12px;
}
.rc-section__eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 8px auto 0;
}
.rc-section__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-dark);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  background: none;
  border: none;
  padding: 0;
}
.rc-section__lead {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* --- HERO --- */
.rc-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-dark);
}
.rc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.rc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,30,60,0.72) 0%, rgba(0,54,94,0.60) 50%, rgba(255,116,2,0.28) 100%);
}
.rc-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 120px;
  max-width: 720px;
  margin-inline: auto;
}
.rc-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 4px 16px;
  border-radius: 2px;
  animation: rcHeroFadeIn 1s ease 0.2s both;
}
.rc-hero__title {
  font-size: clamp(28px, 7vw, 52px);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  animation: rcHeroFadeIn 1s ease 0.4s both;
  background: none;
  padding: 0;
  border: none;
}
.rc-hero__lead {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  animation: rcHeroFadeIn 1s ease 0.6s both;
}
.rc-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(255,116,2,0.45);
  animation: rcHeroFadeIn 1s ease 0.8s both;
}
.rc-hero__btn:hover {
  background-color: #d4600a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,116,2,0.55);
  color: #ffffff;
  opacity: 1;
}
.rc-hero__btn-icon {
  font-size: 13px;
  animation: rcBounce 1.6s ease infinite;
}
.rc-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s ease;
}
.rc-hero__scroll:hover { color: #ffffff; opacity: 1; }
.rc-hero__scroll-text { font-size: 10px; letter-spacing: 0.2em; font-weight: 700; }
.rc-hero__scroll-bar {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: rcScrollLine 1.8s ease infinite;
}

@keyframes rcHeroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rcBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}
@keyframes rcScrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- MESSAGE --- */
.rc-message__body {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 0;
}
.rc-message__body p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 20px;
}
.rc-message__body p:last-child { margin-bottom: 0; }

/* --- JOBS (店舗カード) --- */
.rc-jobs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.rc-job-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.rc-job-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.14); transform: translateY(-4px); }
.rc-job-card__img-wrap { overflow: hidden; aspect-ratio: 16 / 9; background-color: #ddd; }
.rc-job-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.rc-job-card:hover .rc-job-card__img { transform: scale(1.04); }
.rc-job-card__body { padding: 24px; position: relative; }
.rc-job-card__num {
  position: absolute;
  top: -18px;
  right: 20px;
  font-size: 42px;
  font-weight: 900;
  color: rgba(255,116,2,0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.rc-job-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  background: none;
  padding: 0;
  margin-top: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
  letter-spacing: 0.02em;
}
.rc-job-card__title::before { display: none; }
.rc-job-card__text { font-size: 14px; line-height: 1.85; color: var(--color-text-light); margin-bottom: 16px; }
.rc-job-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; list-style: none; padding: 0; }
.rc-job-card__tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  background-color: #fff3e8;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}
.rc-job-card__tel { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-text-light); }
.rc-job-card__tel i { color: var(--color-primary); font-size: 12px; }
.rc-job-card__tel a { color: var(--color-dark); font-weight: 700; font-size: 15px; letter-spacing: 0.03em; transition: color 0.25s ease; }
.rc-job-card__tel a:hover { color: var(--color-primary); }
.rc-jobs__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 0 16px;
}

/* --- WORK --- */
.rc-work__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.rc-work-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background-color: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.rc-work-item:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.14); transform: translateY(-3px); }
.rc-work-item__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #fff3e8;
  flex-shrink: 0;
}
.rc-work-item__icon { font-size: 22px; color: var(--color-primary); }
.rc-work-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  background: none;
  padding: 0;
  margin-top: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
  letter-spacing: 0.01em;
}
.rc-work-item__title::before { display: none; }
.rc-work-item__text { font-size: 14px; line-height: 1.8; color: var(--color-text-light); margin: 0; }

/* --- BENEFITS --- */
.rc-benefits__numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: #E5E5E5;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 56px;
}
.rc-benefit-num {
  background-color: #fff;
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rc-benefit-num__value {
  font-size: 40px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rc-benefit-num__value small { font-size: 16px; font-weight: 700; }
.rc-benefit-num__label { font-size: 12px; color: var(--color-text-light); letter-spacing: 0.05em; line-height: 1.4; }
.rc-benefits__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.rc-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  transition: box-shadow 0.25s ease;
}
.rc-benefit-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.rc-benefit-item__icon { font-size: 22px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; width: 28px; text-align: center; }
.rc-benefit-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
  background: none;
  padding: 0;
  margin-top: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
  letter-spacing: 0.01em;
}
.rc-benefit-item__title::before { display: none; }
.rc-benefit-item__text { font-size: 13px; line-height: 1.75; color: var(--color-text-light); margin: 0; }

/* --- TIMELINE --- */
.rc-tl__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 680px;
  margin-inline: auto;
}
.rc-tl__list--voice { margin-left: 10px; margin-top: 30px; }
.rc-tl__item {
  display: grid;
  grid-template-columns: 56px 32px 1fr;
  align-items: flex-start;
  gap: 0 12px;
  min-height: 72px;
}
.rc-tl__time {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  padding-top: 2px;
  text-align: right;
  letter-spacing: 0.02em;
}
.rc-tl__connector { display: flex; flex-direction: column; align-items: center; }
.rc-tl__dot {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color-primary);
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-primary);
  position: relative;
  z-index: 1;
}
.rc-section--gray .rc-tl__dot { border-color: #F7F7F7; }
.rc-tl__line {
  display: block;
  width: 2px;
  flex: 1;
  background-color: #E5E5E5;
  min-height: 40px;
}
.rc-tl__body { padding-bottom: 32px; }
.rc-tl__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: none;
  padding: 0;
  margin-top: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
  letter-spacing: 0.01em;
}
.rc-tl__title::before { display: none; }
.rc-tl__text { font-size: 13px; line-height: 1.75; color: var(--color-text-light); margin: 0; }
.rc-tl__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 50px;
}

/* --- REQUIREMENTS --- */
.rc-req-card {
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  background-color: #fff;
}
.rc-req-card:last-child { margin-bottom: 0; }
.rc-req-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background-color: var(--color-dark);
  flex-wrap: wrap;
}
.rc-req-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  flex: 1;
  background: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
  letter-spacing: 0.01em;
}
.rc-req-card__title::before { display: none; }
.rc-req-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.rc-req-table { width: 100%; border-collapse: collapse; }
.rc-req-table th,
.rc-req-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid #E5E5E5;
  border-left: none;
  border-right: none;
  border-top: none;
  vertical-align: top;
  line-height: 1.75;
}
.rc-req-table tr:last-child th,
.rc-req-table tr:last-child td { border-bottom: none; }
.rc-req-table th {
  width: 30%;
  background-color: #fff3e8;
  color: var(--color-dark);
  font-weight: 700;
  white-space: nowrap;
}
.rc-req-table td { background-color: #fff; color: var(--color-text); word-break: break-word; }
.rc-req-table small { font-size: 12px; color: var(--color-text-light); display: block; margin-top: 4px; }

/* --- CTA (採用) --- */
.rc-cta {
  background: linear-gradient(135deg, var(--color-dark) 0%, #005990 100%);
  padding-block: 72px;
  position: relative;
  overflow: hidden;
}
.rc-cta__inner { position: relative; z-index: 1; text-align: center; }
.rc-cta__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 16px;
  border-radius: 2px;
}
.rc-cta__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  background: none;
  padding: 0;
  border: none;
}
.rc-cta__lead {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.80);
  margin-bottom: 40px;
}
.rc-cta__form-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background-color: #ffffff;
  border-radius: 16px;
  text-decoration: none;
  color: var(--color-dark);
  max-width: 640px;
  margin: 0 auto 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-size: 20px;
}
.rc-cta__form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  color: var(--color-dark);
  opacity: 1;
}
.rc-cta__form-btn-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.rc-cta__form-btn-label { font-size: 15px; font-weight: 700; letter-spacing: 0.02em; }
.rc-cta__form-btn small { font-size: 12px; color: var(--color-text-light); font-weight: 400; }
.rc-cta__note {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
}
.rc-cta__note-link {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.25s ease;
}
.rc-cta__note-link:hover { color: #ffffff; opacity: 1; }

/* --- レスポンシブ 768px〜 --- */
@media (min-width: 768px) {
  .rc-section { padding-block: 88px; }
  .rc-pc-br { display: inline; }
  .rc-hero__inner { padding-block: 120px 160px; }
  .rc-jobs__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .rc-jobs__grid--3col { grid-template-columns: repeat(3, 1fr); }
  .rc-work__grid { grid-template-columns: repeat(2, 1fr); }
  .rc-benefits__numbers { grid-template-columns: repeat(4, 1fr); }
  .rc-benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .rc-tl__item { grid-template-columns: 64px 40px 1fr; gap: 0 16px; }
  .rc-tl__time { font-size: 17px; }
  .rc-req-table th { width: 25%; }
  .rc-cta__title { font-size: 30px; }
  .rc-section__title { font-size: 30px; }
}
@media (min-width: 1024px) {
  .rc-section__title { font-size: 34px; }
  .rc-work__grid { grid-template-columns: repeat(2, 1fr); }
  .rc-benefits__grid { grid-template-columns: repeat(3, 1fr); }
  .rc-benefit-num__value { font-size: 52px; }
}

/* --- スマホ専用 --- */
@media (max-width: 767px) {
  .rc-hero { min-height: 92vh; }
  .rc-section__title { font-size: 22px; }
  .rc-req-table, .rc-req-table tbody, .rc-req-table tr,
  .rc-req-table th, .rc-req-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .rc-req-table th { width: 100%; white-space: normal; border-bottom: none; padding: 12px 16px 4px; }
  .rc-req-table td { padding: 4px 16px 16px; }
  .rc-req-card__header { padding: 16px 20px; }
  .rc-cta { padding-block: 56px; }
}
