@charset "UTF-8";
/*
    Template: swell
    Theme Name: Limo
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ - Limo株式会社カスタム
    Version: 2.0.0
    Author: Limo Inc.
    Author URI: https://limo-salon.co.jp/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ==========================================================================
   Google Fonts
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Noto+Serif+JP:wght@200;300;400;500;600&display=swap');

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
  /* Brand Colors - socie-world.co.jp inspired cool tone */
  --limo-black: #1a1a1a;
  --limo-white: #ffffff;
  --limo-gold: #98a8b1;
  --limo-gold-light: #adb8c0;
  --limo-gold-dark: #869298;
  --limo-warm-gray: #f2f2ef;
  --limo-cream: #f4f4f2;
  --limo-text: #444444;
  --limo-text-light: #5d5f68;
  --limo-text-muted: #888888;
  --limo-heading-sub: #bfc0c4;
  --limo-border: #dadcdb;
  --limo-border-light: #eff0ef;
  --limo-accent: #98a8b1;
  --limo-btn: #98a8b1;

  /* Typography */
  --font-en: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-jp: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', serif;
  --font-body: 'Noto Serif JP', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;

  /* Layout */
  --content-width: 1100px;
  --section-gap: 40px;       /* セクション間のマージン（padding と合わせて合計100px程度） */
  --section-padding: 60px;   /* セクション内の上下パディング */
  --header-height: 80px;

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.4s var(--ease-out-expo);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.limo-front {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.25px;
  color: var(--limo-text);
  background-color: var(--limo-cream);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.limo-front img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.limo-front a {
  color: var(--limo-black);
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-base);
}

.limo-front a:hover {
  color: var(--limo-gold);
}

/* ==========================================================================
   SWELL Layout Overrides
   ========================================================================== */

/* --- Content Width --- */
.limo-front .l-container,
.limo-front.l-fixHeader .l-header__bar,
.limo-front .l-header__inner,
.limo-front .l-footer__inner,
.limo-front .l-footer__widgetArea,
.limo-front .l-footer__nav,
.limo-front .alignwide,
body.limo-front .swell-block-fullWide__inner {
  max-width: var(--content-width) !important;
  margin-left: auto;
  margin-right: auto;
}

.limo-front .l-content {
  padding-top: 0 !important;
}

/* SWELL full-width sections */
body.limo-front .swell-block-fullWide {
  margin-bottom: 0 !important;
}

body.limo-front .swell-block-fullWide + .swell-block-fullWide {
  margin-top: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
.l-header {
  background: var(--limo-white) !important;
  border-bottom: none !important;
  box-shadow: none !important;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.l-header.is-scrolled,
.l-header.-scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06) !important;
}

.l-header__bar {
  background: transparent !important;
  padding: 0 !important;
}

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

/* Logo */
.c-headLogo {
  max-width: 160px;
}

.c-headLogo img {
  width: 100%;
  height: auto;
}

.c-headLogo a {
  display: block;
}

/* --- Global Navigation --- */
.c-gnav {
  display: flex;
  align-items: center;
  gap: 0;
}

.c-gnav a {
  font-family: var(--font-en) !important;
  font-size: 13px !important;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--limo-black) !important;
  padding: 0 18px !important;
  line-height: var(--header-height);
  position: relative;
  transition: color var(--transition-base);
}

.c-gnav a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 1px;
  background: var(--limo-gold);
  transition: transform var(--transition-base);
}

.c-gnav a:hover {
  color: var(--limo-gold) !important;
}

.c-gnav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Hide SWELL default nav decorations */
.c-gnav .c-gnav__btn::before,
.c-gnav .c-gnav__btn::after,
.c-gnav .sub-menu {
  border: none !important;
}

/* Sub-menu */
.c-gnav .sub-menu {
  background: var(--limo-white) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
  border-radius: 0 !important;
  padding: 15px 0 !important;
  min-width: 220px;
}

.c-gnav .sub-menu a {
  font-family: var(--font-jp) !important;
  font-size: 12px !important;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  padding: 8px 25px !important;
  line-height: 1.8;
}

/* ==========================================================================
   Hero / Main Visual
   ========================================================================== */

/* ==========================================================================
   SWELLメインビジュアル カスタムスタイル
   ========================================================================== */

/* MV画像にブライトネスフィルター適用 */
.p-mainVisual__imgLayer img {
  filter: brightness(0.7);
}

/* MVテキストレイヤー */
.p-mainVisual__textLayer {
  font-family: var(--font-jp) !important;
}

/* MVタイトル */
.p-mainVisual__slideTitle {
  font-family: var(--font-jp) !important;
  font-size: 38px !important;
  font-weight: 300 !important;
  letter-spacing: 8px !important;
  line-height: 1.8 !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* MVサブテキスト */
.p-mainVisual__slideText {
  font-family: var(--font-jp) !important;
  font-size: 14px !important;
  letter-spacing: 2px !important;
  font-weight: 300;
  color: rgba(255,255,255,0.85) !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* MVボタン */
.p-mainVisual .p-mainVisual__slideBtn a {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.6) !important;
  color: #fff !important;
  font-family: var(--font-en) !important;
  font-size: 13px;
  letter-spacing: 2.5px;
  padding: 16px 50px;
  text-transform: uppercase;
}

.p-mainVisual .p-mainVisual__slideBtn a:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: #fff !important;
}

/* Custom Hero（レガシー互換） */
.limo-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
  margin-top: 0 !important;
}

/* Remove gap between header and hero */
body:not(.admin-bar) .limo-hero {
  margin-top: 0;
}

.l-header + .l-content,
.l-header + main,
.l-header + .limo-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* If body has admin bar */
.admin-bar .limo-hero {
  margin-top: 0;
}

.limo-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.limo-hero__slide.is-active {
  opacity: 1;
}

.limo-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.limo-hero__content {
  position: absolute;
  bottom: 15%;
  left: 10%;
  z-index: 2;
  color: var(--limo-white);
}

.limo-hero__title {
  font-family: var(--font-en);
  font-size: 72px;
  font-weight: 400;
  letter-spacing: 8px;
  line-height: 1.2;
  margin: 0 0 15px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.limo-hero__subtitle {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 4px;
  text-shadow: 0 1px 15px rgba(0, 0, 0, 0.3);
}

.limo-hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--limo-white);
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.limo-hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: var(--limo-white);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   Typography - Headings
   ========================================================================== */

/* SWELLデフォルト見出しスタイルをリセット（marginは個別定義で制御） */
.limo-front .post_content h2,
.limo-front .post_content h3,
.limo-front .post_content h4,
.limo-front .post_content h5,
.limo-front .post_content h6,
.limo-front.limo-front .post_content h2,
.limo-front.limo-front .post_content h3 {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  position: relative;
}

.limo-front .post_content h2::before,
.limo-front .post_content h2::after,
.limo-front .post_content h3::before,
.limo-front .post_content h3::after {
  content: none !important;
  display: none !important;
}

/* H2 - Section Title */
.limo-front h2,
.limo-front .post_content h2,
.limo-front .swell-block-fullWide h2,
.limo-front .wp-block-heading:where([class*="h2"]) {
  font-family: var(--font-en) !important;
  font-size: 60px !important;
  font-weight: 600 !important;
  letter-spacing: 6px !important;
  line-height: 1.15 !important;
  color: var(--limo-heading-sub) !important;
  text-transform: uppercase;
  margin: 0 0 12px !important;  /* h2 → sublabel の間隔 */
  padding: 0 !important;
  background: none !important;
  border: none !important;
  text-align: left;
}

/* H2 Japanese Subtitle - use a span or small inside h2 */
.limo-front h2 small,
.limo-front h2 span.sub,
.limo-section__subtitle,
.limo-front .post_content h2 + p:first-of-type {
  display: block;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--limo-heading-sub);
  margin-top: 12px;
  text-transform: none;
}

/* H3 */
.limo-front h3,
.limo-front .post_content h3 {
  font-family: var(--font-en) !important;
  font-size: 32px !important;
  font-weight: 600 !important;
  letter-spacing: 3px !important;
  line-height: 1.3 !important;
  color: var(--limo-black) !important;
  margin: 0 0 25px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

/* H4 */
.limo-front h4,
.limo-front .post_content h4 {
  font-family: var(--font-jp) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  letter-spacing: 2px !important;
  line-height: 1.6 !important;
  color: var(--limo-black) !important;
  margin: 0 0 20px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

/* H5, H6 */
.limo-front h5, .limo-front .post_content h5 {
  font-family: var(--font-jp) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  color: var(--limo-black) !important;
}

.limo-front h6, .limo-front .post_content h6 {
  font-family: var(--font-jp) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  color: var(--limo-text-light) !important;
}

/* ==========================================================================
   Section Layouts
   ========================================================================== */
/* セクション: paddingで内部余白、margin-bottomでセクション間の間隔を確保 */
.limo-section {
  padding: var(--section-padding) 0;
  margin-bottom: var(--section-gap);
}

.limo-section:last-child {
  margin-bottom: 0;
}

/* 背景付きフルワイドセクション: 外側マージンなし、padding で間隔を確保 */
.limo-section.limo-fullwide {
  margin-bottom: 0;
  margin-top: 0;
  padding: var(--section-padding) 20px;
}

/* フルワイド後の通常セクション: 上に間隔を追加 */
.limo-section.limo-fullwide + .limo-section:not(.limo-fullwide) {
  margin-top: var(--section-gap);
}

/* フルワイド同士が連続する場合: 間隔なし */
.limo-section.limo-fullwide + .limo-section.limo-fullwide {
  margin-top: 0;
}

/* Normal section before fullwide: keep its bottom gap */

.limo-section--white {
  background: var(--limo-white);
}

.limo-section--warm {
  background: var(--limo-warm-gray);
}

.limo-section--dark {
  background: var(--limo-cream);
  color: var(--limo-text);
}

.limo-section--dark h2,
.limo-section--dark h3 {
  color: var(--limo-heading-sub) !important;
}

.limo-section__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* セクションヘッダーブロック（label + sublabel のラッパー） */
.limo-section__header {
  margin-bottom: 50px;
}

/* SWELLフルワイドブロックの余白制御 */
.limo-front .swell-block-fullWide {
  padding-top: var(--section-padding) !important;
  padding-bottom: var(--section-padding) !important;
  margin-top: 0 !important;
}

.limo-front .swell-block-fullWide + .swell-block-fullWide {
  margin-top: 0 !important;
}

/* フルワイドブロック前後のセクション間間隔 */
body.limo-front .l-mainContent > .swell-block-fullWide {
  margin-bottom: 0;
}

body.limo-front .l-mainContent > * + .swell-block-fullWide,
body.limo-front .l-mainContent > .swell-block-fullWide + * {
  margin-top: var(--section-gap);
}

/* ==========================================================================
   Content Box (White Cards)
   ========================================================================== */
.limo-box,
.limo-front .post_content .wp-block-group.has-background {
  background: var(--limo-white);
  padding: 50px;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

/* Reset SWELL button styles */
.limo-front .wp-block-button .wp-block-button__link,
.limo-front .swell-block-button a,
.limo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-en) !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--limo-white) !important;
  background: var(--limo-accent) !important;
  border: 1px solid var(--limo-accent) !important;
  border-radius: 2px !important;
  padding: 16px 50px !important;
  min-width: 220px;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  cursor: pointer;
  box-shadow: none !important;
}

.limo-front .wp-block-button .wp-block-button__link:hover,
.limo-front .swell-block-button a:hover,
.limo-btn:hover {
  background: var(--limo-gold) !important;
  color: var(--limo-white) !important;
  border-color: var(--limo-gold) !important;
}

/* Button with arrow (only on the link element, not wrapper) */
.limo-front .wp-block-button .wp-block-button__link::after {
  content: '\2192';
  font-size: 16px;
  transition: transform var(--transition-base);
}

.limo-front .wp-block-button .wp-block-button__link:hover::after {
  transform: translateX(5px);
}

/* Prevent arrow on wrapper .limo-btn (which is .wp-block-button) */
.wp-block-button.limo-btn::after {
  content: none !important;
}

/* ラッパー要素のボタンスタイルをリセット（子リンクだけにスタイル適用） */
.wp-block-button.limo-btn {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  min-width: auto;
  box-shadow: none !important;
}

/* Outline button variant */
.limo-front .wp-block-button.is-style-outline .wp-block-button__link,
.limo-btn--outline {
  background: transparent !important;
  color: var(--limo-btn) !important;
  border: 1px solid var(--limo-btn) !important;
}

.limo-front .wp-block-button.is-style-outline .wp-block-button__link:hover,
.limo-btn--outline:hover {
  background: var(--limo-gold) !important;
  color: var(--limo-white) !important;
  border-color: var(--limo-gold) !important;
}

/* Gold button variant */
.limo-btn--gold {
  background: var(--limo-gold) !important;
  border-color: var(--limo-gold) !important;
  color: var(--limo-white) !important;
}

.limo-btn--gold:hover {
  background: var(--limo-gold-dark) !important;
  border-color: var(--limo-gold-dark) !important;
  color: var(--limo-white) !important;
}

/* Accent (benchmark) button variant */
.limo-btn--accent {
  background: var(--limo-accent) !important;
  border-color: var(--limo-accent) !important;
}

/* Center button alignment */
.wp-block-button.aligncenter {
  text-align: center;
}

/* ボタンブロック（CTAボタン群）の上余白を統一 */
.limo-front .post_content .wp-block-buttons {
  margin-top: 40px;
}

/* ヒーロー内のボタンは上余白不要（テキストと自然に繋がる） */
.limo-hero .wp-block-buttons {
  margin-top: 20px;
}

/* ブランドカード内のボタンは小さめの上余白 */
.limo-brand-card .wp-block-buttons {
  margin-top: 20px;
}

/* キャッチコピー（大フォント段落）の下余白を統一 */
.limo-front .post_content .has-large-font-size,
.limo-front .post_content .has-x-large-font-size {
  margin-bottom: 30px !important;
}

/* ==========================================================================
   Columns / Grid
   ========================================================================== */
.limo-front .wp-block-columns {
  gap: 40px !important;
  margin-bottom: 40px;
}

.limo-front .wp-block-column {
  margin-bottom: 0;
}

/* ==========================================================================
   Images
   ========================================================================== */
.limo-front .wp-block-image {
  margin-bottom: 40px;
}

.limo-front .wp-block-image img {
  border-radius: 0;
}

.limo-front .wp-block-image figcaption {
  font-family: var(--font-jp);
  font-size: 11px;
  color: var(--limo-text-muted);
  letter-spacing: 1px;
  margin-top: 10px;
  text-align: center;
}

/* ==========================================================================
   Tables
   ========================================================================== */
.limo-front .wp-block-table,
.limo-front .post_content table {
  border-collapse: collapse;
  width: 100%;
  margin: 40px 0;
  font-size: 13px;
}

.limo-front .wp-block-table th,
.limo-front .wp-block-table td,
.limo-front .post_content table th,
.limo-front .post_content table td {
  border: 1px solid var(--limo-border-light) !important;
  padding: 15px 20px !important;
  text-align: left;
  vertical-align: top;
  font-weight: 300;
}

.limo-front .wp-block-table th,
.limo-front .post_content table th {
  background: var(--limo-warm-gray) !important;
  font-weight: 400;
  font-family: var(--font-jp);
  letter-spacing: 1px;
  color: var(--limo-black);
}

.limo-front .wp-block-table tr:nth-child(even) td {
  background: rgba(242, 242, 239, 0.3);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.limo-front .c-breadcrumb,
.limo-front .p-breadcrumb {
  background: transparent !important;
  padding: 15px 0 !important;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--limo-text-muted);
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.limo-front .c-breadcrumb a,
.limo-front .p-breadcrumb a {
  color: var(--limo-text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.limo-front .c-breadcrumb a:hover,
.limo-front .p-breadcrumb a:hover {
  color: var(--limo-gold);
}

.limo-front .c-breadcrumb__separator,
.limo-front .p-breadcrumb .sep {
  margin: 0 10px;
  opacity: 0.5;
}

/* ==========================================================================
   Page Title (Sub Pages)
   ========================================================================== */
/* SWELLページタイトル カスタムスタイル */
.limo-front .c-pageTitle,
.limo-front .p-ttlArea {
  background: var(--limo-cream) !important;
  padding: 100px 40px 70px !important;
  text-align: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 0 !important;
}

/* SWELLのページタイトル: h1.c-pageTitle > span.c-pageTitle__inner */
.limo-front .c-pageTitle,
.limo-front .c-pageTitle__ttl,
.limo-front .c-pageTitle__inner,
.limo-front .p-ttlArea__ttl {
  font-family: var(--font-en) !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  letter-spacing: 8px !important;
  color: var(--limo-heading-sub) !important;
  text-transform: uppercase !important;
  line-height: 1.3 !important;
  border: none !important;
}

.limo-front .c-pageTitle__subttl,
.limo-front .p-ttlArea__subttl {
  font-family: var(--font-jp) !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  letter-spacing: 2px !important;
  color: var(--limo-text-muted) !important;
  max-width: var(--content-width);
  margin: 8px auto 0 !important;
}

/* サブページヘッダー: PATCH定義と統合済み */
.limo-page-header {
  background: var(--limo-cream) !important;
  color: var(--limo-text) !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 100px 40px 70px !important;
  text-align: center;
}

.limo-page-header__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.limo-page-header__title {
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--limo-heading-sub);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.limo-page-header__subtitle {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--limo-text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
/* フッター: 上部マージンでコンテンツとの間隔を確保 */
.limo-front .l-footer {
  background: var(--limo-cream) !important;
  color: var(--limo-text) !important;
  border-top: 1px solid var(--limo-border-light);
  padding: 0 !important;
  margin-top: 60px;
}

.limo-front .l-footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 80px 40px 40px;
}

.limo-front .l-footer__widgetArea {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.limo-front .l-footer__widgetArea .widget {
  margin-bottom: 0;
}

.limo-front .l-footer__widgetArea .widget-title {
  font-family: var(--font-en) !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--limo-black);
  margin-bottom: 20px;
  padding: 0;
  border: none;
}

.limo-front .l-footer__widgetArea .widget-title::before,
.limo-front .l-footer__widgetArea .widget-title::after {
  display: none;
}

.limo-front .l-footer__widgetArea a {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--limo-text-light);
  line-height: 2.2;
}

.limo-front .l-footer__widgetArea a:hover {
  color: var(--limo-gold);
}

/* Footer Navigation */
.limo-front .l-footer__nav,
.limo-front .c-footerNav {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--limo-border-light);
  margin: 0 auto;
  max-width: var(--content-width);
}

.limo-front .l-footer__nav a,
.limo-front .c-footerNav a {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--limo-text-light);
}

.limo-front .l-footer__nav a:hover,
.limo-front .c-footerNav a:hover {
  color: var(--limo-gold);
}

/* Footer Bottom / Copyright */
.limo-front .l-footer__bottom,
.limo-front .c-copyright {
  text-align: center;
  padding: 25px 0 30px;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--limo-text-muted);
  border-top: 1px solid var(--limo-border-light);
}

.limo-front .c-copyright a {
  color: var(--limo-text-muted) !important;
}

/* Custom Footer */
.limo-footer {
  background: var(--limo-cream);
  border-top: 1px solid var(--limo-border-light);
}

.limo-footer__top {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 80px 40px 50px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.limo-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.limo-footer__logo {
  max-width: 140px;
  margin-bottom: 10px;
}

.limo-footer__brand-text {
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--limo-text-muted);
  line-height: 2;
}

.limo-footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.limo-footer__nav-title {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--limo-black);
  margin-bottom: 20px;
}

.limo-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.limo-footer__nav-list li {
  margin-bottom: 8px;
}

.limo-footer__nav-list a {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--limo-text-light);
  transition: color var(--transition-base);
}

.limo-footer__nav-list a:hover {
  color: var(--limo-gold);
}

.limo-footer__bottom {
  border-top: 1px solid var(--limo-border-light);
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
}

.limo-footer__sns {
  display: flex;
  gap: 20px;
}

.limo-footer__sns a {
  font-size: 16px;
  color: var(--limo-text-muted);
  transition: color var(--transition-base);
}

.limo-footer__sns a:hover {
  color: var(--limo-gold);
}

.limo-footer__copy {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--limo-text-muted);
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */
.limo-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.limo-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.limo-fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.limo-fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.limo-fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.limo-fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.limo-fade-in-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.limo-fade-in-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger animation delays */
.limo-delay-1 { transition-delay: 0.1s; }
.limo-delay-2 { transition-delay: 0.2s; }
.limo-delay-3 { transition-delay: 0.3s; }
.limo-delay-4 { transition-delay: 0.4s; }
.limo-delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   Store List (店舗一覧)
   ========================================================================== */
.limo-store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 60px 0;
}

/* 店舗カード: 統合定義 */
.limo-store-card {
  background: var(--limo-white);
  border: 1px solid var(--limo-border);
  padding: 30px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.limo-store-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.limo-store-card__image {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  overflow: hidden;
}

.limo-store-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.limo-store-card:hover .limo-store-card__image img {
  transform: scale(1.05);
}

.limo-store-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--limo-gold);
  color: var(--limo-white);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}

.limo-store-card__body {
  padding: 30px;
}

.limo-store-card__name {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--limo-black);
  margin: 0 0 5px;
  text-transform: uppercase;
}

.limo-store-card__name-jp {
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: var(--limo-text-muted);
  margin-bottom: 15px;
}

.limo-store-card__info {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 300;
  color: var(--limo-text-light);
  line-height: 2;
}

.limo-store-card__info li {
  display: flex;
  gap: 10px;
}

.limo-store-card__info li::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--limo-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}

.limo-store-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--limo-black);
  border-bottom: 1px solid var(--limo-black);
  padding-bottom: 3px;
  transition: color var(--transition-base), border-color var(--transition-base);
}

.limo-store-card__link:hover {
  color: var(--limo-gold);
  border-color: var(--limo-gold);
}

.limo-store-card__link::after {
  content: '\2192';
  transition: transform var(--transition-base);
}

.limo-store-card__link:hover::after {
  transform: translateX(4px);
}

/* Store Detail */
.limo-store-detail {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 80px 40px;
}

.limo-store-detail__header {
  margin-bottom: 50px;
}

.limo-store-detail__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
  margin-bottom: 50px;
}

.limo-store-detail__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.limo-store-detail__table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

.limo-store-detail__table th,
.limo-store-detail__table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--limo-border-light);
  font-size: 13px;
  font-weight: 300;
  text-align: left;
  vertical-align: top;
}

.limo-store-detail__table th {
  width: 150px;
  font-weight: 400;
  color: var(--limo-black);
  background: none;
}

/* ==========================================================================
   Brand Card (Gold)
   ========================================================================== */
/* ブランドカード: padding統一（PATCH定義と統合済み） */
.limo-brand-card {
  background: var(--limo-white);
  color: var(--limo-text);
  padding: 40px 30px !important;
  min-width: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--limo-border-light);
}

.limo-brand-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(0, 0, 0, 0.02);
  transform: rotate(15deg);
}

.limo-brand-card h3,
.limo-brand-card .wp-block-heading {
  font-family: var(--font-en) !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  letter-spacing: 3px !important;
  color: var(--limo-black) !important;
  margin-bottom: 15px !important;
  word-break: keep-all;
  overflow-wrap: normal;
}

.limo-brand-card p {
  color: var(--limo-text-light);
  font-size: 13px;
  line-height: 2;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.limo-contact {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}

.limo-contact__form,
.limo-front .wpcf7-form,
.limo-front .mw_wp_form {
  width: 100%;
}

.limo-front .wpcf7-form p,
.limo-front .mw_wp_form .mw_wp_form_input {
  margin-bottom: 30px;
}

.limo-front .wpcf7-form label,
.limo-front .mw_wp_form label {
  display: block;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--limo-black);
  margin-bottom: 8px;
}

.limo-front .wpcf7-form-control:not([type="submit"]),
.limo-front .mw_wp_form input[type="text"],
.limo-front .mw_wp_form input[type="email"],
.limo-front .mw_wp_form input[type="tel"],
.limo-front .mw_wp_form textarea,
.limo-front .mw_wp_form select,
.limo-input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--limo-text);
  background: var(--limo-warm-gray);
  border: 1px solid transparent;
  border-radius: 0;
  outline: none;
  transition: border-color var(--transition-base), background var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.limo-front .wpcf7-form-control:focus,
.limo-front .mw_wp_form input:focus,
.limo-front .mw_wp_form textarea:focus,
.limo-front .mw_wp_form select:focus,
.limo-input:focus {
  background: var(--limo-white);
  border-color: var(--limo-gold);
}

.limo-front .wpcf7-form textarea,
.limo-front .mw_wp_form textarea,
textarea.limo-input {
  min-height: 180px;
  resize: vertical;
}

.limo-front .wpcf7-form select,
.limo-front .mw_wp_form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

/* Required badge */
.limo-required,
.limo-front .wpcf7-form .required-badge {
  display: inline-block;
  background: var(--limo-btn);
  color: var(--limo-white);
  font-size: 9px;
  letter-spacing: 1px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Submit button */
.limo-front .wpcf7-form input[type="submit"],
.limo-front .mw_wp_form input[type="submit"],
.limo-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en) !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--limo-white);
  background: var(--limo-btn);
  border: 1px solid var(--limo-btn);
  border-radius: 2px;
  padding: 16px 60px;
  min-width: 260px;
  cursor: pointer;
  transition: all var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.limo-front .wpcf7-form input[type="submit"]:hover,
.limo-front .mw_wp_form input[type="submit"]:hover,
.limo-submit:hover {
  background: var(--limo-gold);
  color: var(--limo-white);
  border-color: var(--limo-gold);
}

/* Validation */
.limo-front .wpcf7-not-valid {
  border-color: #c45b5b !important;
}

.limo-front .wpcf7-not-valid-tip {
  font-family: var(--font-jp);
  font-size: 11px;
  color: #c45b5b;
  margin-top: 5px;
}

.limo-front .wpcf7 .wpcf7-response-output {
  border: 1px solid var(--limo-border) !important;
  padding: 15px 20px !important;
  font-size: 13px;
  margin: 30px 0 0 !important;
}

/* Radio & Checkbox */
.limo-front .wpcf7-radio .wpcf7-list-item,
.limo-front .wpcf7-checkbox .wpcf7-list-item {
  margin-right: 25px;
}

.limo-front .wpcf7-radio .wpcf7-list-item label,
.limo-front .wpcf7-checkbox .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  cursor: pointer;
}

/* ==========================================================================
   Lists
   ========================================================================== */
.limo-front .post_content ul,
.limo-front .post_content ol {
  padding-left: 20px;
  margin: 20px 0;
}

.limo-front .post_content ul li,
.limo-front .post_content ol li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 2;
}

.limo-front .post_content ul li::marker {
  color: var(--limo-gold);
}

/* ==========================================================================
   Separator / Divider
   ========================================================================== */
.limo-front .wp-block-separator,
.limo-front hr {
  border: none;
  border-top: 1px solid var(--limo-border-light);
  margin: 60px 0;
  opacity: 1;
}

/* ==========================================================================
   Blockquote
   ========================================================================== */
.limo-front .post_content blockquote,
.limo-front blockquote {
  border-left: 3px solid var(--limo-gold) !important;
  background: var(--limo-warm-gray) !important;
  padding: 30px 30px 30px 35px !important;
  margin: 40px 0 !important;
  font-style: italic;
  font-size: 14px;
  color: var(--limo-text-light);
}

.limo-front blockquote::before {
  display: none !important;
}

/* ==========================================================================
   SWELL Specific Overrides
   ========================================================================== */

/* Remove SWELL post list card shadows */
.limo-front .p-postList__item {
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* SWELL tabs */
.limo-front .swell-block-tab__nav-item {
  font-family: var(--font-jp) !important;
  font-size: 13px !important;
  letter-spacing: 1px;
}

/* SWELL accordion */
.limo-front .swell-block-accordion__title {
  font-family: var(--font-jp) !important;
  font-size: 14px !important;
  letter-spacing: 1px;
}

/* SWELL FAQ */
.limo-front .swell-block-faq .swell-block-faq__item {
  border: none !important;
  border-bottom: 1px solid var(--limo-border-light) !important;
}

/* SWELL banner links */
.limo-front .swell-block-bannerLink__title {
  font-family: var(--font-en) !important;
  letter-spacing: 3px;
}

/* SWELL step block */
.limo-front .swell-block-step__title {
  font-family: var(--font-jp) !important;
  font-weight: 400 !important;
}

/* SWELL blog card */
.limo-front .p-blogCard {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 1px solid var(--limo-border-light) !important;
}

/* Remove SWELL hover effects on links */
.limo-front .-hov-flash a:hover {
  opacity: 1 !important;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mt-0  { margin-top: 0 !important; }
.mt-20 { margin-top: 20px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-60 { margin-top: 60px !important; }
.mt-80 { margin-top: 80px !important; }

.mb-0  { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-80 { margin-bottom: 80px !important; }

.pt-0  { padding-top: 0 !important; }
.pb-0  { padding-bottom: 0 !important; }

.font-en {
  font-family: var(--font-en) !important;
}

.font-jp {
  font-family: var(--font-jp) !important;
}

.color-gold {
  color: var(--limo-gold) !important;
}

.bg-white {
  background: var(--limo-white) !important;
}

.bg-warm {
  background: var(--limo-warm-gray) !important;
}

.bg-black {
  background: var(--limo-cream) !important;
  color: var(--limo-text) !important;
}

/* ==========================================================================
   Responsive - Tablet (768px - 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --section-gap: 30px;
    --section-padding: 50px;
    --header-height: 70px;
  }

  .limo-front h2,
  .limo-front .post_content h2,
  .limo-front .swell-block-fullWide h2 {
    font-size: 44px !important;
    letter-spacing: 4px !important;
  }

  .limo-front h3,
  .limo-front .post_content h3 {
    font-size: 26px !important;
  }

  .limo-hero__title {
    font-size: 52px;
  }

  .limo-store-grid {
    gap: 30px;
  }

  .limo-footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .limo-footer__nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Responsive - Mobile (768px and below)
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --section-gap: 25px;
    --section-padding: 40px;
    --header-height: 60px;
    --content-width: 100%;
  }

  body.limo-front {
    font-size: clamp(12.5px, 3.5vw, 14px);
    letter-spacing: 0.5px;
    line-height: 2;
  }

  /* SWELLメインビジュアル モバイル対応 */
  .p-mainVisual__slideTitle {
    font-size: clamp(20px, 6.5vw, 28px) !important;
    letter-spacing: clamp(2px, 1vw, 4px) !important;
  }

  /* モバイルでは本文・キャッチコピーの<br>を無効化し自然な改行にする */
  .limo-section p:not(.limo-section__sublabel):not(.limo-numbers__value):not(.limo-numbers__label) br,
  .limo-hero p br,
  .limo-section .has-large-font-size br,
  .limo-section .has-x-large-font-size br {
    display: none;
  }

  /* Header Mobile */
  .l-header__inner {
    padding: 0 20px;
  }

  .c-headLogo {
    max-width: 120px;
  }

  /* Headings Mobile */
  .limo-front h2,
  .limo-front .post_content h2,
  .limo-front .swell-block-fullWide h2 {
    font-size: 32px !important;
    letter-spacing: 3px !important;
    line-height: 1.2 !important;
  }

  .limo-front h3,
  .limo-front .post_content h3 {
    font-size: 22px !important;
    letter-spacing: 2px !important;
  }

  .limo-front h4,
  .limo-front .post_content h4 {
    font-size: 16px !important;
  }

  /* Hero Mobile */
  .limo-hero {
    height: 100svh;
    min-height: 500px;
  }

  /* 縦長画像のモバイル調整（顔が見えるように） */
  .limo-hero__bg img {
    object-position: center 15% !important;
  }

  .limo-hero__content {
    bottom: 20%;
    left: 6%;
    right: 6%;
  }

  .limo-hero__title {
    font-size: 36px;
    letter-spacing: 4px;
  }

  .limo-hero__subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }

  /* ページヘッダー モバイル */
  .limo-front .c-pageTitle,
  .limo-front .p-ttlArea,
  .limo-page-header {
    padding: 60px 20px 50px !important;
  }

  .limo-front .c-pageTitle__ttl,
  .limo-front .c-pageTitle__inner,
  .limo-front .p-ttlArea__ttl,
  .limo-page-header__title {
    font-size: 32px !important;
    letter-spacing: 3px !important;
  }

  .limo-page-header h1 {
    font-size: 32px !important;
  }

  /* セクションラベル モバイル */
  .limo-section__label {
    font-size: clamp(28px, 8vw, 36px) !important;
  }

  /* ブランドカード見出し モバイル */
  .limo-brand-card h3 {
    font-size: 18px !important;
  }

  /* ヒーロー見出し モバイル（vw可変） */
  .limo-hero h1,
  .limo-hero .wp-block-heading {
    font-size: clamp(20px, 6.5vw, 28px) !important;
    letter-spacing: clamp(2px, 1vw, 4px) !important;
  }

  /* Breadcrumb Mobile */
  .limo-front .c-breadcrumb,
  .limo-front .p-breadcrumb {
    padding-left: 20px !important;
    padding-right: 20px !important;
    font-size: 10px;
  }

  /* Section Inner Mobile */
  .limo-section__inner {
    padding: 0 20px;
  }

  .limo-section__header {
    margin-bottom: 40px;
  }

  /* Fullwide padding reduction */
  .limo-fullwide {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* サブラベル モバイル余白 */
  .limo-section__sublabel {
    margin-bottom: 30px !important;
  }

  /* セクション間余白のモバイル調整 */
  .limo-section.limo-fullwide + .limo-section:not(.limo-fullwide) {
    margin-top: var(--section-gap);
  }

  /* Numbers section columns */
  .limo-numbers .wp-block-columns {
    flex-wrap: wrap !important;
    gap: 5px !important;
  }

  .limo-numbers .wp-block-column {
    flex-basis: 45% !important;
    width: 45% !important;
  }

  /* Table mobile fix */
  .limo-company__table table,
  .limo-job-card table,
  .limo-front .wp-block-table table {
    table-layout: fixed;
    width: 100%;
  }

  .limo-company__table table th,
  .limo-front .wp-block-table table th {
    width: 80px;
    word-break: keep-all;
  }

  .limo-company__table table td,
  .limo-front .wp-block-table table td {
    overflow-wrap: break-word;
    word-break: break-all;
  }

  /* Page header letter-spacing */
  .limo-page-header h1,
  .limo-page-header .wp-block-heading {
    letter-spacing: 4px !important;
  }

  /* Columns Mobile */
  .limo-front .wp-block-columns {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .limo-front .wp-block-column {
    flex-basis: 100% !important;
    width: 100% !important;
  }

  /* ボタンブロック モバイル余白 */
  .limo-front .post_content .wp-block-buttons {
    margin-top: 30px;
  }

  /* キャッチコピー モバイル余白・フォントサイズ可変（改行位置を自然にする） */
  .limo-front .post_content .has-large-font-size {
    font-size: clamp(14px, 4.2vw, 18px) !important;
    margin-bottom: 24px !important;
  }

  .limo-front .post_content .has-x-large-font-size {
    font-size: clamp(18px, 5.2vw, 24px) !important;
    margin-bottom: 24px !important;
  }

  /* Buttons Mobile */
  .limo-front .wp-block-button .wp-block-button__link,
  .limo-front .swell-block-button a,
  .limo-btn {
    min-width: 100%;
    padding: 14px 30px !important;
    font-size: 12px;
  }

  /* Store Grid Mobile */
  .limo-store-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
  }

  .limo-store-card__body {
    padding: 20px;
  }

  .limo-store-card__name {
    font-size: 18px;
  }

  .limo-store-detail {
    padding: 40px 20px;
  }

  .limo-store-detail__gallery {
    grid-template-columns: 1fr;
  }

  .limo-store-detail__table th {
    width: 100px;
  }

  /* ブランドカード モバイル */
  .limo-brand-card {
    padding: 30px 20px !important;
    margin-bottom: 15px;
  }

  /* Contact Form Mobile */
  .limo-contact {
    padding: 40px 20px;
  }

  .limo-front .wpcf7-form-control:not([type="submit"]),
  .limo-front .mw_wp_form input[type="text"],
  .limo-front .mw_wp_form input[type="email"],
  .limo-front .mw_wp_form input[type="tel"],
  .limo-front .mw_wp_form textarea,
  .limo-front .mw_wp_form select,
  .limo-input {
    padding: 12px 15px;
    font-size: 16px; /* Prevent iOS zoom */
  }

  .limo-front .wpcf7-form input[type="submit"],
  .limo-front .mw_wp_form input[type="submit"],
  .limo-submit {
    width: 100%;
    min-width: unset;
    padding: 14px 40px;
  }

  /* Table Mobile */
  .limo-front .wp-block-table,
  .limo-front .post_content table {
    font-size: 12px;
  }

  .limo-front .wp-block-table th,
  .limo-front .wp-block-table td,
  .limo-front .post_content table th,
  .limo-front .post_content table td {
    padding: 10px 12px !important;
  }

  /* Box Mobile */
  .limo-box,
  .limo-front .post_content .wp-block-group.has-background {
    padding: 30px 20px;
  }

  /* Footer Mobile */
  .limo-front .l-footer__inner {
    padding: 50px 20px 30px;
  }

  .limo-front .l-footer__widgetArea {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .limo-front .l-footer__nav,
  .limo-front .c-footerNav {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
  }

  .limo-footer__top {
    padding: 50px 20px 30px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .limo-footer__nav-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .limo-footer__bottom {
    flex-direction: column-reverse;
    gap: 15px;
    padding: 20px;
    text-align: center;
  }

  /* Animations - reduce motion */
  .limo-fade-in,
  .limo-fade-in-left,
  .limo-fade-in-right {
    transform: translateY(20px);
  }
}

/* ==========================================================================
   Responsive - Small Mobile (480px and below)
   ========================================================================== */
@media (max-width: 480px) {
  :root {
    --section-gap: 20px;
    --section-padding: 30px;
  }

  .limo-front h2,
  .limo-front .post_content h2,
  .limo-front .swell-block-fullWide h2 {
    font-size: 26px !important;
    letter-spacing: 2px !important;
  }

  .limo-front h3,
  .limo-front .post_content h3 {
    font-size: 20px !important;
  }

  .limo-hero__title {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .limo-hero h1,
  .limo-hero .wp-block-heading {
    font-size: 28px !important;
    letter-spacing: 4px !important;
  }

  .limo-section__label {
    font-size: 28px !important;
    letter-spacing: 3px !important;
  }

  .limo-section__sublabel {
    margin-bottom: 20px !important;
  }

  .limo-footer__nav-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .limo-front .c-pageTitle__ttl,
  .limo-front .p-ttlArea__ttl,
  .limo-page-header__title {
    font-size: 26px !important;
    letter-spacing: 2px !important;
  }

  .limo-page-header h1,
  .limo-page-header .wp-block-heading {
    font-size: 24px !important;
    letter-spacing: 3px !important;
  }

  /* Numbers: stack to single column on small screens */
  .limo-numbers .wp-block-column {
    flex-basis: 100% !important;
    width: 100% !important;
  }

  .limo-numbers__value {
    font-size: 2rem !important;
  }

  /* Brand card button fix */
  .limo-brand-card .wp-block-button__link {
    min-width: unset !important;
    width: auto !important;
    padding: 12px 25px !important;
    font-size: 11px !important;
  }
}

/* ==========================================================================
   Reduced Motion Preference
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .limo-fade-in,
  .limo-fade-in-left,
  .limo-fade-in-right,
  .limo-fade-in-scale {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
  body.limo-front {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .limo-front .l-header,
  .limo-front .l-footer,
  .limo-hero,
  .limo-hero__scroll,
  .c-breadcrumb {
    display: none !important;
  }

  .limo-fade-in,
  .limo-fade-in-left,
  .limo-fade-in-right,
  .limo-fade-in-scale {
    opacity: 1 !important;
    transform: none !important;
  }

  .limo-front a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 10pt;
    color: #666;
  }
}

/* ==========================================================================
   PATCH: Fix HTML/CSS class mismatches
   ========================================================================== */

/* --- Hero PATCH CSS: SWELLメインビジュアルに移行済みのためコメントアウト ---
.limo-hero {
  background: var(--limo-cream) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 120px 40px !important;
}

.limo-hero > .wp-block-group {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.limo-hero h1,
.limo-hero .wp-block-heading {
  color: var(--limo-white) !important;
  font-family: var(--font-jp) !important;
  font-size: 38px !important;
  font-weight: 300 !important;
  letter-spacing: 8px !important;
  line-height: 1.8 !important;
  margin-bottom: 30px !important;
  text-transform: none !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.limo-hero p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--font-jp) !important;
  font-size: 14px !important;
  letter-spacing: 2px !important;
  font-weight: 300;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.limo-hero .wp-block-button__link {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.6) !important;
  color: var(--limo-white) !important;
}

.limo-hero .wp-block-button__link:hover {
  background: rgba(255,255,255,0.15) !important;
  color: var(--limo-white) !important;
  border-color: var(--limo-white) !important;
}
--- コメントアウトここまで */

/* --- Remove header-content gap on front page --- */
.home .l-content {
  padding-top: 0 !important;
}

.home .l-content__inner {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ヒーロー直後のコンテンツ開始位置調整 */
.home .post_content > .limo-hero:first-child {
  margin-top: -2em !important;
}

/* ヒーロー → 最初のセクション間の間隔 */
.limo-hero + .limo-section {
  margin-top: 0;
  padding-top: var(--section-padding);
}

/* SWELL header bar, breadcrumb を非表示 */
.limo-front .l-header__bar,
.limo-front .p-breadcrumb {
  display: none !important;
}

/* Fix SWELL page wrapper overflow clipping full-width sections */
.limo-front[class*="page-template"],
.limo-front[class*="page-id-"],
.limo-front.home {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

/* Force 1-column layout (no sidebar) on all pages */
.limo-front .l-mainContent {
  max-width: 100% !important;
  width: 100% !important;
  float: none !important;
}

.limo-front .l-sidebar {
  display: none !important;
}

.limo-front .l-content {
  max-width: 100% !important;
  display: block !important;
}

/* Remove top padding/margin from sub-page content area */
.limo-front .l-content__inner,
.limo-front .l-mainContent__inner {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.limo-front .post_content {
  max-width: 100% !important;
  width: 100% !important;
}

/* --- ブランドカード追加スタイル --- */
.limo-brand-card .limo-brand-card__desc {
  font-size: 13px !important;
  line-height: 1.9 !important;
  color: var(--limo-text-light) !important;
}

.limo-brand-card .wp-block-image {
  margin-bottom: 20px !important;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--limo-warm-gray);
  border-radius: 4px;
}

.limo-brand-card .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.limo-brand-card .wp-block-button__link {
  background: transparent !important;
  border: 1px solid var(--limo-btn) !important;
  color: var(--limo-btn) !important;
  font-size: 12px !important;
  padding: 10px 30px !important;
}

.limo-brand-card .wp-block-button__link:hover {
  background: var(--limo-gold) !important;
  color: var(--limo-white) !important;
  border-color: var(--limo-gold) !important;
}

/* --- Full-wide section --- */
.limo-fullwide {
  max-width: none !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.limo-fullwide .wp-block-columns {
  max-width: 1100px;
  margin: 0 auto;
}

.limo-fullwide .limo-section__label,
.limo-fullwide .limo-section__sublabel {
  max-width: 1100px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* --- Constrain regular sections inside post_content --- */
.limo-front .post_content > .wp-block-group:not(.limo-hero):not(.limo-page-header):not(.limo-fullwide) {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Ensure WordPress text-align-center works */
.limo-front .post_content .has-text-align-center {
  text-align: center !important;
}

/* --- セクションラベル（h2）統合定義 --- */
.limo-section__label {
  font-family: var(--font-en) !important;
  font-size: 60px !important;
  font-weight: 600 !important;
  letter-spacing: 6px !important;
  line-height: 1.15 !important;
  color: var(--limo-heading-sub) !important;
  text-transform: uppercase !important;
  text-align: center !important;
  margin-bottom: 12px !important;  /* label → sublabel 間隔 */
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

/* --- セクションサブラベル 統合定義 --- */
.limo-section__sublabel {
  display: block;
  font-family: var(--font-jp) !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  letter-spacing: 2px !important;
  color: var(--limo-text-muted) !important;
  text-align: center !important;
  text-transform: none;
  margin-top: 0 !important;
  margin-bottom: 45px !important;  /* sublabel → 本文 間隔 */
}

/* サブラベル レスポンシブ（統合定義の後に配置して優先させる） */
@media (max-width: 768px) {
  .limo-section__sublabel {
    margin-bottom: 30px !important;
  }
}
@media (max-width: 480px) {
  .limo-section__sublabel {
    margin-bottom: 20px !important;
  }
}

/* --- 店舗カード テキストスタイル（上方定義と統合済み） --- */
.limo-store-card h4 {
  font-family: var(--font-jp) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
}

.limo-store-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--limo-text-light);
  margin-bottom: 8px;
}

.limo-store-card a {
  color: var(--limo-gold-dark);
  font-size: 12px;
}

/* --- ページヘッダー見出し・テキスト（上方の定義と統合済み） --- */
.limo-page-header h1,
.limo-page-header .wp-block-heading {
  font-family: var(--font-en) !important;
  font-size: 48px !important;
  font-weight: 600 !important;
  letter-spacing: 8px !important;
  color: var(--limo-heading-sub) !important;
  text-transform: uppercase;
  margin-bottom: 15px !important;
}

.limo-page-header p {
  color: var(--limo-text-muted) !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
}

/* --- Responsive Fixes（上方メディアクエリに統合済み） --- */

/* ==========================================================================
   Hero Background Image - SWELLメインビジュアルに移行済みのためコメントアウト
   ==========================================================================
.limo-hero {
  position: relative;
  overflow: hidden;
}

.limo-hero__bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 0 !important;
  overflow: hidden;
  transform: none !important;
}

.limo-hero__bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 20%;
  filter: brightness(0.7);
  max-width: none !important;
}

.limo-hero .wp-block-group__inner-container > .wp-block-group {
  position: relative;
  z-index: 2 !important;
}

.limo-hero .wp-block-group__inner-container {
  position: static !important;
}
--- コメントアウトここまで */

/* Section images max-height constraint */
.limo-section__image img,
.limo-section .wp-block-image:not(.limo-hero__bg):not(.limo-numbers__bg) img {
  max-height: 500px;
  object-fit: cover;
  width: 100%;
  border-radius: 4px;
}

/* ==========================================================================
   Numbers Section
   ========================================================================== */
/* Numbersセクション: 余白を統一 */
.limo-numbers {
  background-color: var(--limo-cream);
  color: var(--limo-text);
  padding: var(--section-padding) 20px !important;
  position: relative;
  overflow: hidden;
}

.limo-numbers .wp-block-group__inner-container {
  position: relative;
  z-index: 1;
}

.limo-numbers p,
.limo-numbers h2,
.limo-numbers .wp-block-columns {
  position: relative;
  z-index: 1;
}

.limo-numbers .limo-section__label {
  color: var(--limo-heading-sub) !important;
}

.limo-numbers .limo-section__sublabel {
  color: var(--limo-text-muted) !important;
}

.limo-number-item,
.limo-numbers__item {
  text-align: center;
  padding: 20px;
}

.limo-number-value,
.limo-numbers__value {
  font-family: var(--font-en) !important;
  font-size: 3.5rem !important;
  font-weight: 600 !important;
  color: var(--limo-gold) !important;
  line-height: 1.2 !important;
  display: block;
  margin-bottom: 8px;
}

.limo-numbers__value strong {
  font-size: inherit;
  color: inherit;
}

.limo-numbers__value span {
  font-size: 1.2rem;
  color: var(--limo-text);
}

.limo-number-label,
.limo-numbers__label {
  font-size: 0.9rem;
  color: var(--limo-text) !important;
  letter-spacing: 0.05em;
}

/* Numbers background image */
.limo-numbers__bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  z-index: 0 !important;
  overflow: hidden;
}

.limo-numbers__bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: brightness(0.9) opacity(0.15);
}

.limo-numbers > *:not(.limo-numbers__bg) {
  position: relative;
  z-index: 1;
}

.limo-numbers .wp-block-columns {
  position: relative;
  z-index: 1;
}

@media (max-width: 599px) {
  .limo-number-value,
  .limo-numbers__value {
    font-size: 2.5rem !important;
  }
}

/* ==========================================================================
   News List
   ========================================================================== */
.limo-news-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.limo-news-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--limo-border-light);
}

.limo-news-date {
  font-family: var(--font-en);
  font-size: 0.85rem;
  color: var(--limo-text-muted);
  white-space: nowrap;
  min-width: 100px;
}

.limo-news-title {
  font-size: 0.95rem;
  color: var(--limo-text);
}

.limo-news-title a {
  color: var(--limo-text);
  text-decoration: none;
}

.limo-news-title a:hover {
  color: var(--limo-gold);
}

@media (max-width: 599px) {
  .limo-news-item {
    flex-direction: column;
    gap: 4px;
  }
}

/* ==========================================================================
   History Timeline
   ========================================================================== */
.limo-timeline {
  position: relative;
  padding-left: 30px;
}

.limo-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--limo-gold);
}

.limo-timeline-item {
  position: relative;
  padding-bottom: 30px;
  padding-left: 20px;
}

.limo-timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--limo-gold);
  border: 2px solid var(--limo-white);
}

.limo-timeline-year {
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--limo-gold-dark);
  font-size: 1rem;
  margin-bottom: 8px;
}

.limo-timeline-text {
  font-size: 0.95rem;
  color: var(--limo-text);
}

/* ==========================================================================
   Job Opening Cards
   ========================================================================== */
.limo-job-card {
  background: var(--limo-white);
  border: 1px solid var(--limo-border);
  border-radius: 4px;
  padding: 30px !important;
  margin-bottom: 30px;
}

.limo-job-card h3 {
  font-size: 1.3rem !important;
  color: var(--limo-black) !important;
  border-bottom: 2px solid var(--limo-gold);
  padding-bottom: 10px;
  margin-bottom: 20px !important;
}

.limo-job-card .limo-company__table table {
  margin-top: 15px;
}

/* ==========================================================================
   Staff Voice
   ========================================================================== */
.limo-voice-card {
  background: var(--limo-warm-gray);
  padding: 30px !important;
  border-radius: 4px;
  margin-bottom: 20px;
  border-left: 3px solid var(--limo-gold);
}

.limo-voice-card blockquote {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.limo-voice-name {
  font-size: 0.85rem;
  color: var(--limo-text-muted);
  margin-top: 15px !important;
  text-align: right;
}

/* ==========================================================================
   Application Flow Steps
   ========================================================================== */
.limo-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--limo-border-light);
}

.limo-flow-number {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--limo-gold);
  line-height: 1;
  min-width: 60px;
}

.limo-flow-content h4 {
  margin-bottom: 12px !important;
  font-size: 1.1rem !important;
}

.limo-flow-content p {
  font-size: 0.9rem;
  color: var(--limo-text-light);
  margin: 0;
}

@media (max-width: 599px) {
  .limo-flow-step {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==========================================================================
   Contact Method Cards
   ========================================================================== */
.limo-contact-method {
  text-align: center;
  padding: 30px 20px;
  background: var(--limo-warm-gray);
  border-radius: 4px;
}

.limo-contact-method h4 {
  color: var(--limo-black);
  margin-bottom: 10px !important;
}

.limo-contact-method p {
  font-size: 0.9rem;
  color: var(--limo-text-light);
}

.limo-contact-method .limo-phone-number {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--limo-gold-dark);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Instagram Section
   ========================================================================== */
/* SNSセクション: フルワイドの場合paddingで統一 */
.limo-sns-section {
  background: var(--limo-warm-gray);
  padding: var(--section-padding) 20px !important;
  text-align: center;
}

/* ==========================================================================
   Benefits List
   ========================================================================== */
.limo-benefits-grid .wp-block-column {
  background: var(--limo-warm-gray);
  padding: 20px !important;
  border-radius: 4px;
  text-align: center;
}

.limo-benefits-grid .wp-block-column h4 {
  font-size: 0.95rem !important;
  margin-bottom: 12px !important;
}

.limo-benefits-grid .wp-block-column p {
  font-size: 0.85rem;
  color: var(--limo-text-light);
}

/* ==========================================================================
   Career Path Steps
   ========================================================================== */
.limo-career-path {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
}

.limo-career-step {
  background: var(--limo-btn);
  color: var(--limo-white);
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
  min-width: 120px;
}

.limo-career-arrow {
  color: var(--limo-gold);
  font-size: 1.5rem;
  font-weight: bold;
}

@media (max-width: 599px) {
  .limo-career-path {
    flex-direction: column;
  }
  .limo-career-arrow {
    transform: rotate(90deg);
  }
}

/* ==========================================================================
   Brand Card Image Enhancement
   ========================================================================== */
.limo-brand-card .wp-block-image img {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

/* ==========================================================================
   CEO Message
   ========================================================================== */
.limo-ceo-message {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.limo-ceo-message .wp-block-image {
  flex-shrink: 0;
  width: 250px;
}

.limo-ceo-message .wp-block-image img {
  border-radius: 4px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

@media (max-width: 781px) {
  .limo-ceo-message {
    flex-direction: column;
    align-items: center;
  }
  .limo-ceo-message .wp-block-image {
    width: 200px;
  }
}



/* add */
.c-headLogo img {
	max-height: 60%;
}