@charset "utf-8";
/**
 * Theme Name: Que Sera Sera Modern Premium (V2 - Mobile Optimized)
 * Description: スマホ最適化、洗練された余白とシャドウを用いた高品質CSS
 */

/* =================================================================
   1. VARIABLES（モダンカラーパレット）
   ================================================================= */
:root {
    /* --- カラーパレット --- */
    --c-primary: #7CB342;       /* ケセラセラの緑（安心感・健康） */
    --c-secondary: #FF9800;     /* ケセラセラのオレンジ（温かみ・活力） */
    --c-secondary-dark: #E68A00;
    
    --c-bg-body: #FFFFFF;
    --c-bg-light: #F8F9FA;      /* 洗練された極薄グレー */
    
    --c-text-main: #333333;     /* 視認性の高いダークグレー */
    --c-text-light: #70757A;    /* 上品なライトグレー */
    --c-border: #E8EAED;

    /* --- シャドウ（現代的な滑らかで広い影） --- */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.1);

    /* --- フォント --- */
    --font-jp-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    --font-jp-min: "Noto Serif JP", "Hiragino Mincho ProN", serif;

    /* --- レイアウト --- */
    --header-height-pc: 80px;
	--header-height-sp: 65px;
    --inner-width: 1100px;    
}

/* =================================================================
   2. RESET & BASE
   ================================================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-jp-sans);
    color: var(--c-text-main);
    background-color: var(--c-bg-body);
    line-height: 1.8;
    letter-spacing: 0.03em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* 横揺れ完全防止 */
    word-wrap: break-word;
}

a { color: inherit; text-decoration: none; transition: 0.3s; }
a:hover { opacity: 0.7; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
h1, h2, h3, h4, h5, h6 { line-height: 1.4; color: var(--c-text-main); font-weight: 700; }
p { margin-bottom: 1.5em; }

/* スマホメニュー展開時の背景固定用クラス */
body.overflow-hidden { overflow: hidden; }

/* =================================================================
   3. UTILITY & LAYOUT CLASSES
   ================================================================= */
.inner { 
    max-width: var(--inner-width); 
    margin: 0 auto; 
padding:0 30px;
}

/* PC/SPでの余白制御 */
.section { padding: 100px 0; position: relative; }
@media (max-width: 768px) {
    .section { padding: 60px 0; }
}

.section-bg-light { background-color: var(--c-bg-light); }
.bg-white { background-color: #ffffff; }

.text-center { text-align: center; }
.text-primary { color: var(--c-primary); }
.text-secondary { color: var(--c-secondary); }
.text-text-light { color: var(--c-text-light); }
.font-serif { font-family: var(--font-jp-min); }

/* --- Flexbox --- */
.flex-space-between { display: flex; justify-content: space-between; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-col-center { display: flex; flex-direction: column; align-items: center; }

.gap-10 { gap: 10px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-40 { gap: 40px; }

/* 幅のユーティリティ（PC用） */
.w-32 { width: 31.5%; }
.w-35 { width: 38%; }
.w-60 { width: 55%; }
.w-100 { width: 100%; }

.border-radius-20 { border-radius: 16px; }
.box-shadow-card { 
    box-shadow: var(--shadow-md); 
    background-color: #fff; 
    border: 1px solid rgba(0,0,0,0.03); 
}

/* =================================================================
   4. MODERN HEADINGS
   ================================================================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* 英語の透かし文字（clampでPC〜SPまでシームレスに可変） */
.section-title {
    font-family: 'Montserrat', var(--font-jp-sans);
    font-size: clamp(2.5rem, 6vw, 5rem); 
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
}

.section-lead {
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: var(--c-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    margin-bottom: 0;
}

/* 見出し下のモダンな装飾ライン */
.section-lead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--c-secondary);
    border-radius: 2px;
}
.section-lead::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: calc(50% + 24px);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-primary);
}

/* =================================================================
   5. PREMIUM BUTTONS
   ================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-secondary-dark) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin:50px auto 0px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
    color: #fff;
}

.btn-header { padding: 10px 24px; font-size: 0.9rem; box-shadow: none; margin: 0;}
.btn-accent { background: var(--c-primary); box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3); }
.btn-accent:hover { background: #689f38; box-shadow: 0 8px 20px rgba(124, 179, 66, 0.4); }

.btn i { margin-right: 8px; font-size: 1.1em; }

/* 輝きエフェクト */
.btn-shine::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg); animation: shine 3s infinite; z-index: -1;
}
@keyframes shine { 0%, 20% { left: -100%; } 80%, 100% { left: 200%; } }

/* =================================================================
   6. HEADER & DRAWER MENU
   ================================================================= */
.header {
    width: 100%; height: var(--header-height-pc); 
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm); 
    position: fixed; top: 0; left: 0; z-index: 999;
}
.header-inner { height: 100%; display: flex; justify-content: space-between; align-items: center; max-width: 1280px;}
.header-logo img { height:65px; display: block; }

/* 右側エリア全体（PC） */
.header-right { display: flex; align-items: center; gap: 30px; }

/* --- PCグローバルナビゲーション --- */
.header-nav { display: block; }
.global-menu { display: flex; list-style: none; gap: 24px; margin: 0; padding: 0; }
.global-menu a { 
    font-weight: 700; 
    font-size: 0.95rem; 
    color: var(--c-text-main); 
    transition: 0.3s ease;
    position: relative; /* ホバーアンダーラインの基準 */
    display: inline-block;
    padding: 5px 0;
}

/* ホバー時のモダンなアンダーラインアニメーション */
.global-menu a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background-color: var(--c-primary); transition: width 0.3s ease;
}
.global-menu a:hover { color: var(--c-primary); }
.global-menu a:hover::after { width: 100%; }

/* --- 連絡先・ボタンエリア（PC） --- */
.header-contact { display: flex; align-items: center; gap: 24px; border-left: 1px solid var(--c-border); padding-left: 24px; }
.header-tel {text-align: center; }
.tel-text { display: block; font-size: 0.75rem; color: var(--c-text-light); margin-bottom: -2px; }
.tel-num { font-size: 1.15rem; font-weight: 900; color: var(--c-primary); font-family: 'Montserrat', sans-serif; }

/* ノートPC等のやや狭い画面（1024px以下）でのメニューの詰まり防止 */
@media (max-width: 1024px) {
    .header-right { gap: 15px; }
    .global-menu { gap: 12px; }
    .global-menu a { font-size: 0.85rem; }
    .header-contact { gap: 15px; padding-left: 15px; }
    .tel-num { font-size: 1rem; }
}

/* --- ハンバーガーメニュー (SP) --- */
.hamburger { 
    width: 44px; height: 44px; /* タップしやすいサイズ */
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    cursor: pointer; z-index: 1001; position: relative; right: -10px;
}
.hamburger span { 
    display: block; width: 24px; height: 2px; 
    background-color: var(--c-text-main); 
    border-radius: 2px; transition: 0.3s; position: absolute;
}
.hamburger span:nth-of-type(1) { top: 14px; }
.hamburger span:nth-of-type(2) { top: 21px; }
.hamburger span:nth-of-type(3) { bottom: 14px; }

.hamburger.is-active span:nth-of-type(1) { top: 21px; transform: rotate(45deg); background-color: var(--c-secondary); }
.hamburger.is-active span:nth-of-type(2) { opacity: 0; }
.hamburger.is-active span:nth-of-type(3) { bottom: 21px; transform: rotate(-45deg); background-color: var(--c-secondary); }

/* --- ドロワーメニュー (SP) --- */
.drawer-menu {
    position:fixed;
	top: 0; right: -100%; width: 100%; height: 100vh;
background-color: #ffffff;
padding:50px 5% 40px; 
transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
z-index: 1000;
overflow-y:auto;
}
.drawer-menu.is-active { right: 0; }
.drawer-close { display: none; } 

.drawer-global-menu { list-style: none; margin-bottom:20px; padding: 0; }
.drawer-global-menu li { border-bottom: 1px solid var(--c-border); }
.drawer-global-menu a {
display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 700; color: var(--c-text-main);
    position: relative;
}
.drawer-global-menu a::after {
    content: '\f054'; font-family: "Font Awesome 6 Free"; font-weight: 900;
    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
    font-size: 0.8rem; color: var(--c-primary);
}

.drawer-contact { text-align: center; background: var(--c-bg-light); padding:20px 20px 25px; border-radius: 12px; }
.drawer-tel-num { font-size: 1.6rem; font-weight: 900; color: var(--c-secondary); display: block; margin:5px 0 5px; }
.drawer-contact p { font-size: 0.85rem; color: var(--c-text-light); margin-bottom: 5px; }
.drawer-contact .btn-drawer { width: 100%; margin-top: 15px; padding: 18px 20px; font-size: 1.05rem; }


/* =================================================================
   7. MAIN VISUAL
   ================================================================= */
.main-visual { height: 100vh; padding: 0; position: relative; margin-top: var(--header-height-pc); }
.mv-bg {
    width: 100%; height: 100%; position: absolute; top:-6%; left: 0;
    background-size: cover; background-position: center;
background-image:url(https://queserasera-toyohashi.com/wp-content/uploads/2026/04/3178cfbd5b89be1b8c60d6185eeef97d.jpeg);
}
.mv-bg::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
}
.mv-text-wrap { height: 100%; position: relative; z-index: 2; display: flex; align-items: center; padding:0;}
.mv-text-inner { max-width: 700px; padding:20px 0 10vw; }
.mv-catch { font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.4; margin-bottom: 20px; color: #FF9800;text-shadow: rgb(255, 255, 255) 2px 0px 0px, rgb(255, 255, 255) 1.75517px 0.958851px 0px, rgb(255, 255, 255) 1.0806px 1.68294px 0px, rgb(255, 255, 255) 0.141474px 1.99499px 0px, rgb(255, 255, 255) -0.832294px 1.81859px 0px, rgb(255, 255, 255) -1.60229px 1.19694px 0px, rgb(255, 255, 255) -1.97998px 0.28224px 0px, rgb(255, 255, 255) -1.87291px -0.701566px 0px, rgb(255, 255, 255) -1.30729px -1.5136px 0px, rgb(255, 255, 255) -0.421592px -1.95506px 0px, rgb(255, 255, 255) 0.567324px -1.91785px 0px, rgb(255, 255, 255) 1.41734px -1.41108px 0px, rgb(255, 255, 255) 1.92034px -0.558831px 0px;}
.mv-subcatch { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 40px; color: var(--c-text-main); font-weight: 700;
text-shadow: rgb(255, 255, 255) 2px 0px 0px, rgb(255, 255, 255) 1.75517px 0.958851px 0px, rgb(255, 255, 255) 1.0806px 1.68294px 0px, rgb(255, 255, 255) 0.141474px 1.99499px 0px, rgb(255, 255, 255) -0.832294px 1.81859px 0px, rgb(255, 255, 255) -1.60229px 1.19694px 0px, rgb(255, 255, 255) -1.97998px 0.28224px 0px, rgb(255, 255, 255) -1.87291px -0.701566px 0px, rgb(255, 255, 255) -1.30729px -1.5136px 0px, rgb(255, 255, 255) -0.421592px -1.95506px 0px, rgb(255, 255, 255) 0.567324px -1.91785px 0px, rgb(255, 255, 255) 1.41734px -1.41108px 0px, rgb(255, 255, 255) 1.92034px -0.558831px 0px;
}

/* =================================================================
   8. COMPONENTS (CARDS, TABLES)
   ================================================================= */
/* 特徴カード */
.feature-card { padding: 40px 30px; transition: all 0.3s ease; height: 100%; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.feature-icon { font-size: 2.8rem; margin-bottom: 20px; color: var(--c-secondary); }
.feature-title { font-size: 1.25rem; margin-bottom: 16px; color: var(--c-primary); line-height: 1.5; }
.feature-text { font-size: 0.95rem; color: var(--c-text-light); line-height: 1.8; margin-bottom: 0; text-align: left; }

/* コンセプト写真 */
.concept-photo { position: relative; border-radius: 20px; }
.concept-photo img { border-radius: 16px; box-shadow: var(--shadow-md); display: block; width: 100%; }
.concept-photo::before {
    content: ''; position: absolute; bottom: -15px; right: -15px; width: 100%; height: 100%;
    background: var(--c-primary); opacity: 0.15; border-radius: 16px; z-index: -1;
}

/* 料金テーブル（スマホでの横揺れ防止＆横スクロール対応） */
.fee-table-wrap { 
    background: #fff; padding: 30px; border-radius: 16px; 
    box-shadow: var(--shadow-sm); overflow-x: auto; -webkit-overflow-scrolling: touch; 
}
.fee-table { width: 100%; min-width: 600px; border-collapse: collapse; } /* PCでは100%、SPでは横スクロール発生 */
.fee-table th { padding: 20px; text-align: left; font-weight: 700; color: var(--c-primary); border-bottom: 2px solid var(--c-primary); white-space: nowrap; }
.fee-table td { padding: 20px; border-bottom: 1px solid var(--c-border); color: var(--c-text-main); vertical-align: middle; }
.fee-table tr:last-child td { border-bottom: none; }
.fee-table td.fee-amount { font-size: 1.2rem; font-weight: 900; color: var(--c-secondary); font-family: 'Montserrat', sans-serif; white-space: nowrap; }

/* ページナビ（リンクパネル） */
.page-nav-panel { background: #fff; padding: 30px 20px; transition: all 0.3s ease; height: 100%; }
.page-nav-panel:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border: 1px solid rgba(124, 179, 66, 0.3); }
.page-nav-icon { font-size: 2.5rem; color: var(--c-primary); margin-bottom: 15px; transition: 0.3s; }
.page-nav-panel:hover .page-nav-icon { transform: scale(1.1); color: var(--c-secondary); }
.page-nav-title { font-size: 1.1rem; color: var(--c-text-main); margin-bottom: 0; }

/* =================================================================
   AREA & CONDITIONS (モダンな縦積みレイアウト)
   ================================================================= */
.conditions-wrapper {
    max-width: 860px; /* 横に広がりすぎないよう制限し、視線の移動を減らして読みやすく */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px; /* 上下のカードの余白 */
}

/* カード共通スタイル */
.conditions-block {
    padding: 40px 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--c-border);
}
.conditions-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* カード内の見出し（アイコン付き） */
.conditions-block-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--c-border);
}
.conditions-block-header i { font-size: 1.8rem; }
.conditions-block-header h4 { font-size: 1.4rem; margin-bottom: 0; }

/* エリアのボタン余白 */
.mt-30 { margin-top: 30px; }

/* 利用対象者リストの装飾 */
.target-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}
.target-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--c-text-main);
}
.target-list li i {
    position: absolute;
    left: 5px;
    top: 6px;
    font-size: 1.1rem;
}

/* 区分5・6のハイライトボックス */
.target-highlight {
    background: var(--c-bg-light); /* 薄いグレーの背景 */
    border-left: 5px solid var(--c-primary); /* 左側に緑の太線 */
    padding: 20px 25px;
    border-radius: 8px;
}
.target-highlight p { margin-bottom: 0; font-size: 1.1rem; }
.target-highlight p i { margin-right: 8px; }

p.ukeire-p{
text-align:center;
}
.conditions-block-body img{
width:60%;
margin:0 auto 30px;
display:block;
filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}
/* --- スマホ表示調整 --- */
@media (max-width: 768px) {
    .conditions-wrapper { gap: 20px; }
    .conditions-block { padding: 30px 20px; }
    .conditions-block-header { gap: 10px; margin-bottom: 20px; }
    .conditions-block-header i { font-size: 1.4rem; }
    .conditions-block-header h4 { font-size: 1.25rem; }
    
    .target-list li { font-size: 0.95rem; padding-left: 30px; }
    .target-list li i { font-size: 1rem; top: 4px; left: 0; }
    .target-highlight { padding: 15px; }
    .target-highlight p { font-size: 0.95rem; }
}
/* =================================================================
   9. MODERN FLOATING CTA & BADGE (PC & スマホ共通)
   ================================================================= */

/* --- ラッパー（全体の位置調整） --- */
.modern-floating-cta-wrap {
    position: fixed;
    z-index: 990;
    /* ホバー時のガタつきを防ぐため、アニメーションは子要素にかける */
}

/* --- 追加：空き枠お知らせバッジ（吹き出し） --- */
.floating-urgency-badge {
    position: absolute;
    top: -50px; /* ボタンの上に配置 */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B00 0%, #FF3D00 100%); /* 目立つ朱色オレンジ */
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 61, 0, 0.3);
    pointer-events: none; /* クリックの邪魔にならないように */
    /* フワフワ動くアニメーション */
    animation: float-bounce 2.5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

/* 数字部分を少し大きく強調 */
.floating-urgency-badge .badge-num {
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    margin: 0 3px;
}

/* 吹き出しの「しっぽ（下向きの三角）」 */
.floating-urgency-badge::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #FF3D00 transparent transparent transparent;
}

@keyframes float-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}


/* --- カプセル型ボタン本体 --- */
.modern-floating-cta {
    display: flex;
    align-items: stretch;
    border-radius: 50px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

/* 全体をホバーした時のアクション */
.modern-floating-cta-wrap:hover .modern-floating-cta {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}
.modern-floating-cta-wrap:hover .floating-urgency-badge {
    /* ボタンが浮くのに合わせてバッジも少し上に逃がす */
    margin-top: -5px; 
}

.modern-floating-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* --- 電話ボタン（左側・白ベース） --- */
.floating-btn-tel {
    background: #ffffff;
    color: var(--c-text-main);
    padding: 12px 24px;
    gap: 12px;
}
.floating-btn-tel:hover { background: var(--c-bg-light); }
.floating-btn-tel i { font-size: 1.4rem; color: var(--c-primary); }
.floating-btn-tel .text-wrap { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.floating-btn-tel .label { font-size: 0.65rem; color: var(--c-text-light); }
.floating-btn-tel .number { font-size: 1.15rem; font-weight: 900; color: var(--c-text-main); font-family: 'Montserrat', sans-serif; }

/* --- メールボタン（右側・オレンジグラデーション） --- */
.floating-btn-mail {
    background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-secondary-dark) 100%);
    color: #ffffff !important;
    padding: 12px 32px !important;
    font-weight: 700;
    font-size: 1.05rem;
    gap: 8px;
}
.floating-btn-mail i { font-size: 1.2rem; }


/* =================================================================
   PC / スマホ の配置・サイズ調整
   ================================================================= */

@media (min-width: 769px) {
    .modern-floating-cta-wrap {
        bottom: 40px;
        right: 40px;
    }
}

@media (max-width: 768px) {
    .modern-floating-cta-wrap {
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        width: 92%;
        max-width: 400px;
    }
    
    /* スマホ時はバッジを少し小さく */
    .floating-urgency-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
        top: -42px;
    }
    .floating-urgency-badge .badge-num { font-size: 1.1rem; }

    .modern-floating-cta a { padding: 12px 10px; flex: 1; }
    .floating-btn-tel { gap: 8px; }
    .floating-btn-tel i { font-size: 1.1rem; }
    .floating-btn-tel .label { font-size: 0.6rem; }
    .floating-btn-tel .number { font-size: 0.95rem; }
    .floating-btn-mail { padding: 12px 10px !important; font-size: 0.95rem; }
}

/* =================================================================
   LOWER PAGES (下層ページ・固定ページ共通)
   ================================================================= */
/* ページ全体の背景 */
.sub-page-main {
    background-color: var(--c-bg-light); /* #F8F9FA */
    padding-top: var(--header-height-pc);
padding-bottom:100px;
}

/* --- 1. モダンヘッダー (CSS背景画像 + すりガラス) --- */
.page-header-modern {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
    /* ★ 全下層ページ共通の背景画像を設定（URLを任意の画像パスに変更してください） */
    background-image: url('https://queserasera-toyohashi.com/wp-content/uploads/2026/04/qeserasera-16.jpg');
    background-color: var(--c-bg-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    border-bottom: 1px solid rgba(0,0,0,0.02);
}
.page-id-3 .page-header-modern, .page-id-39 .page-header-modern{
background-image: url('https://queserasera-toyohashi.com/wp-content/uploads/2026/04/qeserasera-22.jpg');
}
.page-id-35 .page-header-modern{
background-image: url('https://queserasera-toyohashi.com/wp-content/uploads/2026/04/qeserasera-13.jpg');
background-position:0 -400px;
}
.page-id-6 .page-header-modern{
background-image: url('https://queserasera-toyohashi.com/wp-content/uploads/2026/04/qeserasera-8.jpg');
background-position:0 -440px;
}
.page-id-52 .page-header-modern{
background-image: url('https://queserasera-toyohashi.com/wp-content/uploads/2026/04/qeserasera-11.jpg');
background-position:0 -262px;
}
.page-id-37 .page-header-modern{
background-image: url('https://queserasera-toyohashi.com/wp-content/uploads/2026/04/qeserasera-17.jpg');
background-position: 0 -465px;
}
.page-id-41 .page-header-modern, .page-id-76 .page-header-modern{
background-image: url('https://queserasera-toyohashi.com/wp-content/uploads/2026/04/qeserasera-2.jpg');
}

.page-id-41 .modern-floating-cta-wrap, .page-id-76 .modern-floating-cta-wrap{
display:none!important;
}
/* 画像の上に敷く薄い白幕（すりガラスの文字を読みやすくするため） */
.page-header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
background: rgba(255, 255, 255, 0.2); 
    z-index: 1;
}

/* --- すりガラスのコンテナ --- */
.glass-container {
    position: relative;
    z-index: 2; /* オーバーレイより上に配置 */
background:rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px 80px;
    text-align: center;
    min-width: 400px;
    max-width: 90%;
}

/* 背面に敷く大きな英語タイトル */
.page-title-en-bg {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9); /* 後ろの写真になじむ「白い透かし」 */
    letter-spacing: 0.15em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
}

/* 日本語のページタイトル */
.page-title-modern {
    font-size: 2rem;
    color: var(--c-primary);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(255,255,255,0.8);
}

/* タイトル下のアクセントライン */
.title-line {
    width: 40px;
    height: 3px;
    background: var(--c-secondary);
    border-radius: 2px;
    margin: 15px auto 0;
}


/* --- 2. パンくずリスト --- */
.l-breadcrumbs {
    padding: 20px 5%;
    margin-bottom: 20px;
}
.l-inner {
    font-size: 0.85rem;
    color: var(--c-text-light);
}
/* AIOSEOのリンクカラー調整 */
.l-inner a {
    color: var(--c-text-main);
    font-weight: 500;
    transition: color 0.3s ease;
}
.l-inner a:hover { color: var(--c-primary); }

/* --- 3. 本文コンテンツエリア (WordPressエディタ標準スタイル) --- */
.page-wrap {
    max-width: 1000px;
}
.entry-content {
 max-width: 1080px;
    margin: 0 auto;
    background: #ffffff;
    padding: 10px 40px 70px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

/* エディタ入力用見出しデザイン */
.entry-content h2 {
    font-size: 1.7rem;
    color: var(--c-text-main);
    border-bottom: 2px solid var(--c-primary);
    padding-bottom: 12px;
    margin-top: 2.5em;
margin-bottom:1.8em;
}
.entry-content h3 {
    font-size: 1.35rem;
    color: var(--c-text-main);
    border-left: 5px solid var(--c-secondary);
    padding-left: 15px;
    margin-top: 2em;
    margin-bottom: 1em;
}
.entry-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 1em;
}
.entry-content p {
    line-height: 1.9;
    margin-bottom: 1.8em;
}
.entry-content img {
    border-radius: 12px;
    margin-bottom: 2em;
    box-shadow: var(--shadow-sm);
}

/* --- スマホ表示調整 --- */
@media (max-width: 768px) {
    .sub-page-main { padding-top: var(--header-height-sp); padding-bottom: 60px; }
    
    .page-header-modern { height: 220px; }
    .page-title-en-bg { font-size: 2.2rem; }
    .page-title-modern { font-size: 1.5rem; }
    
    .l-breadcrumbs { padding: 15px 5%; }
    .l-inner { font-size: 0.75rem; }
.entry-content{padding:30px 4% 40px;}
    .entry-content h2 { font-size: 1.4rem; margin-top: 2em; }
    .entry-content h3 { font-size: 1.2rem; margin-top: 1.8em; }

    .page-header-modern { height: 220px; }
    .glass-container { padding: 30px 20px; min-width: auto; width: 90%; }
}
/* =================================================================
   PC / スマホ の配置・サイズ調整
   ================================================================= */

/* --- PC (画面右下に配置) --- */
@media (min-width: 769px) {
    .modern-floating-cta {
        bottom: 40px;
        right: 40px;
    }
}

/* --- スマホ (画面下部の中央に浮遊させる) --- */
@media (max-width: 768px) {
    .modern-floating-cta {
        /* 画面の端から少し浮かせる */
        bottom: 24px;
        max-width: 400px;
    }
    
    /* ホバー時のガタつき防止 */
    .modern-floating-cta:hover { transform: translate(-50%, -2px); }

    .modern-floating-cta a { padding: 12px 10px; flex: 1; }
    .floating-btn-tel { gap: 8px; }
    .floating-btn-tel i { font-size: 1.1rem; }
    .floating-btn-tel .label { font-size: 0.6rem; }
    .floating-btn-tel .number { font-size: 0.95rem; }
    
    .floating-btn-mail { padding: 12px 10px !important; font-size: 0.95rem; }
    
    /* スマホ時は以前の固定メニュー分の余白を削除 */
    body { padding-bottom: 0 !important; }
}
/* =================================================================
    free 
   ================================================================= */
section.concept{
margin-top:-50px;
}

/* =================================================================
   FOOTER CTA
   ================================================================= */
.cta-btn-group .btn{
margin:0 auto;
}
.footer-cta {
    padding-bottom: 0; /* フッターとくっつけるため下部余白を削除 */
    transform: translateY(50px); /* フッターに少し被せるようなモダンな配置 */
    position: relative;
    z-index: 10;
    padding-top:50px;
}

/* CTA全体のカードスタイル */
.footer-cta-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, var(--c-bg-light) 100%);
    padding: 60px 50px;
    border: 1px solid var(--c-border);
    position: relative;
    overflow: hidden;
}

/* 背景のあしらい（ケセラセラの緑とオレンジをうっすら配置） */
.footer-cta-wrapper::before,
.footer-cta-wrapper::after {
    content: ''; position: absolute; border-radius: 50%; z-index: 0; opacity: 0.05; filter: blur(40px);
}
.footer-cta-wrapper::before { width: 300px; height: 300px; background: var(--c-primary); top: -100px; left: -100px; }
.footer-cta-wrapper::after { width: 250px; height: 250px; background: var(--c-secondary); bottom: -80px; right: -80px; }


/* ヘッダー部分 */
.footer-cta-header {
    position: relative; z-index: 1;
    margin-bottom: 40px;
}
.cta-catch {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}
.cta-hours { font-size: 1rem; font-weight: 500; }
.cta-hours i { margin-right: 5px; color: var(--c-primary); }


/* ボディ部分（電話とボタンのコンテナ） */
.footer-cta-body {
    position: relative; z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}


/* --- 電話パネル --- */
.cta-tel-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    max-width: 400px;
}
.cta-tel-panel {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.cta-tel-panel:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 179, 66, 0.2);
}
.tel-icon {
    width: 50px; height: 50px;
    background: var(--c-bg-light);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.4rem; color: var(--c-primary);
    margin-right: 20px;
    transition: 0.3s;
}
.cta-tel-panel:hover .tel-icon { background: var(--c-primary); color: #fff; }

.tel-info { display: flex; flex-direction: column; }
.tel-info .label { font-size: 0.8rem; color: var(--c-text-light); font-weight: 700; margin-bottom: 2px; }
.tel-info .number { font-size: 1.6rem; font-weight: 900; color: var(--c-text-main); font-family: 'Montserrat', sans-serif; line-height: 1.1; }


/* --- WEBボタンパネル --- */
.cta-btn-group {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-btn-lead {
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.btn-large {
    width: 100%;
    padding: 20px 40px;
    font-size: 1.15rem;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.35);
}


/* --- フッター本体の上部余白調整（CTAを被せるため） --- */
.footer { padding-top: 100px; }


/* --- スマホ表示調整 --- */
@media (max-width: 768px) {
    .footer-cta { transform: translateY(30px); }
    .footer-cta-wrapper { padding: 40px 20px; }
    .cta-catch { font-size:24px; }
    .footer-cta-body { flex-direction: column; gap:0px; }
    
    .cta-tel-group, .cta-btn-group { max-width: 100%; width: 100%; }
    .cta-tel-panel { padding: 15px; }
    .tel-icon { width: 40px; height: 40px; font-size: 1.1rem; margin-right: 15px; }
    .tel-info .number { font-size: 1.4rem; }
    
    .btn-large { padding: 18px 20px; font-size: 1.05rem; }
    .footer {padding-top:80px;
	padding-bottom:135px; }
}
/* =================================================================
   FOOTER (3列レイアウト対応)
   ================================================================= */
.footer {
    background-color: var(--c-bg-light);
    padding-top: 120px;
    position: relative;
    z-index: 1;
}

/* フレックスボックスで3列を等間隔（または指定幅）で並べる */
.footer-inner {
padding-bottom:100px;
    align-items: flex-start;
    gap: 2%; /* 隙間調整 */
}

/* 各エリアの幅調整（全体で100%になるように） */
.footer-info-wrap { width: 30%; }
.footer-map-wrap { width: 36%; padding: 5px 20px 0 0;}
.footer-nav-wrap { width: 30%; gap: 10px; }

/* --- 1. 左側：施設情報エリア --- */
.footer-logo img {
    height: 55px; 
    margin-bottom:0;
    /* 白浮き対策の乗算ブレンド */
    mix-blend-mode: multiply; 
}
.facility-name { font-size: 1.25rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 15px; }
.address-detail p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 10px; display: flex; align-items: flex-start; }
.address-detail p i { color: var(--c-secondary); margin-top: 5px; margin-right: 12px; font-size: 1.1rem; width: 16px; text-align: center; }
.medical-partner { margin-top: 15px; padding-top: 15px; border-top: 1px dashed var(--c-border); }

/* --- 2. 中央：Googleマップエリア --- */
.footer-map-inner {
    position: relative;
    width: 100%;
    /* マップを角丸にして少し影をつける（モダン化） */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    /* 高さを固定して iframe をレスポンシブ対応させる */
    height: 220px; 
}
.footer-map-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- 3. 右側：ナビゲーションエリア --- */
.footer-nav-block { min-width: 45%; } /* ナビの2列を綺麗に収める */
.footer-nav-title { font-size: 1.2rem; font-weight: 700; color: var(--c-text-main); margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-nav-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background-color: var(--c-primary); border-radius: 2px; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 12px; }
.footer-list a { font-size: 0.95rem; color: var(--c-text-light); display: inline-flex; align-items: center; transition: all 0.3s ease; }
.footer-list a i { font-size: 0.8rem; margin-right: 8px; color: var(--c-border); transition: all 0.3s ease; }
.footer-list a:hover { color: var(--c-primary); transform: translateX(5px); }
.footer-list a:hover i { color: var(--c-secondary); }

/* --- コピーライト --- */
.footer-bottom { border-top: 1px solid var(--c-border); padding: 25px 0; }
.footer-bottom p { font-size: 0.85rem; margin-bottom: 0; letter-spacing: 0.05em; }

/* --- スマホ表示調整 --- */
@media (max-width: 768px) {

    /* スマホでは縦1列（幅100%）に並べ替える */
    .footer-inner { flex-direction: column; gap: 40px; padding-bottom: 40px; }
    .footer-info-wrap, .footer-map-wrap, .footer-nav-wrap { width: 100%; }
    
    .footer-logo img {
		height:75px;
        margin: 0 auto;
        display: block;
        padding-right: 3%;
	}
.facility-name{
text-align:center;
    }
	.footer-map-inner { height: 250px; } /* スマホではマップを少し高めに */
    .footer-nav-wrap { flex-direction: column; gap: 30px; }
    .footer-nav-title { font-size: 1.1rem; margin-bottom: 15px; }
    
    .footer-bottom { padding-bottom: 40px; } 
	.address-detail{
	padding: 0 3% 0 1%;
    width: fit-content;
    margin: 0 auto;
	}
}
/* =================================================================
   STAFF PAGE (馴染ませる・オーラデザイン)
   ================================================================= */
.staff-page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 100px;
}

/* 導入テキスト */
.intro-desc {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* グリッドレイアウト */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* PC3列 */
    gap: 100px 40px; /* 躍動感のある配置のため、上下の隙間を広めに */
}

/* スタッフカード全体 */
.staff-card {
    height: 100%;
}

.staff-card-inner {
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--c-border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

/* カード全体の馴染ませ。薄い色調に */
.staff-type-orange .staff-card-inner {
    background: #FFFBF5; /* 超極薄ベージュ */
}
.staff-type-green .staff-card-inner {
    background: #FBFFFA; /* 超極薄ミント */
}

.staff-card:hover .staff-card-inner {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: var(--c-primary);
}

/* --- 【新設計】写真とオーラのエリエリア --- */
.staff-photo-area {
    position: relative;
    width: 100%;
    height: 360px; /* PCでの高さ */
    margin-top: -60px; /* カードから大きくはみ出させる躍動感 */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
}

/* ★馴染むオーラ（放射状グラデーション） */
.staff-aura {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    z-index: 1;
}

/* オレンジ系オーラ */
.staff-type-orange .staff-aura {
    background: radial-gradient(circle, #FFF3E0 0%, rgba(255, 243, 224, 0) 70%);
}

/* グリーン系オーラ */
.staff-type-green .staff-aura {
    background: radial-gradient(circle, #F1F8E9 0%, rgba(241, 248, 233, 0) 70%);
}

/* ★人物写真。マスクで下部をフェードアウト */
.staff-img {
    position: relative;
    z-index: 2;
    height: 100%;
    width: auto;
    object-fit: contain;
    /* 馴染ませるためのマスク処理（上から下へフェード） */
    -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 95%);
    mask-image: linear-gradient(to bottom, black 65%, transparent 95%);
    /* 写真に柔らかい立体感を出す */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); 
    transition: transform 0.4s ease;
}

.staff-card:hover .staff-img {
    transform: scale(1.03); /* ホバー時に人物だけ少し手前に */
}

/* --- テキスト情報エリア --- */
.staff-info-area {
    padding: 0px 30px 45px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-top: -82px;
}

.staff-header {
    text-align: center;
    margin-bottom:20px;
}

.entry-content h3.staff-name {
    font-size: 1.45rem !important; /* h3 */
    margin-bottom: 8px !important;
    border: none !important;
    padding: 0 !important;
}

.entry-content p.staff-role {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom:0;
}
.staff-intro{
margin-bottom:70px;
}
/* 趣味・ひとことの詳細 */
.staff-details {
    border-top: 1px dashed var(--c-border);
padding-top:22px;
    margin-top: auto; /* 下揃え */
}

.detail-item { margin-bottom: 15px; }
.detail-item:last-child { margin-bottom: 0; }

.detail-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-secondary);
    margin-bottom: 5px;
}

.detail-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 !important;
    color: var(--c-text-main);
}

/* --- レスポンシブ --- */
@media (max-width: 992px) {
    .staff-grid { grid-template-columns: repeat(2, 1fr); gap: 90px 30px; }
}

@media (max-width: 600px) {
    .staff-grid { grid-template-columns: 1fr; }
.staff-page-wrap { padding:0 15px 10px; }
    .staff-photo-area { height: 300px; }
    .staff-aura { width: 200px; height: 200px; }
    .staff-info-area { padding: 25px 20px 40px; margin-top:-100px;}
    .staff-name { font-size: 1.3rem !important; }
}
/* =================================================================
   FACILITY GALLERY (施設案内ページ)
   ================================================================= */

/* --- 1. メインビジュアル（上部） --- */
.facility-intro {
    margin-bottom: 60px;
}
.facility-main-img {
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    /* アイキャッチ風の縁取りと影 */
    border: 4px solid #ffffff;
    box-shadow:unset;
}
.facility-main-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow:unset;
margin-bottom:0;
}

/* --- 2. ギャラリー グリッドレイアウト --- */
.facility-grid {
    display: grid;
    /* PCでは幅300px以上のカードを画面幅に合わせて自動で並べる（2〜3列） */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* --- カードデザイン --- */
.facility-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--c-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

/* ホバー時の浮き上がり＆影の強調 */
.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(124, 179, 66, 0.2); /* ケセラセラの緑をうっすら */
}

/* --- 画像エリア --- */
.facility-card-img {
    width: 100%;
    aspect-ratio: 4 / 3; /* 写真の縦横比を全て綺麗に統一 */
    overflow: hidden;
    position: relative;
    background-color: var(--c-bg-light);
}
.facility-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 枠に合わせてトリミング（画像が伸びない） */
    transition: transform 0.6s ease;
}

/* ホバー時に写真だけがゆっくりズームする高級エフェクト */
.facility-card:hover .facility-card-img img {
    transform: scale(1.08);
}

/* --- テキスト（タイトル）エリア --- */
.facility-card-body {
    padding: 18px 20px;
    text-align: center;
    background: #ffffff;
    position: relative;
}
/* タイトルの上のアクセントライン */
.facility-card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--c-primary);
    border-radius: 2px;
}

/* wp標準のh3スタイルを上書きリセットしてカード用に最適化 */
.facility-card-title {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: var(--c-text-main) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* --- スマホ表示調整 --- */
@media (max-width: 768px) {
    .facility-intro { margin-bottom: 40px; }
    
    /* スマホでは1列に */
    .facility-grid { 
        grid-template-columns: 1fr; 
        gap:30px;
    }
    
    .facility-card-img { aspect-ratio: 3 / 2; } /* スマホでは少し横長に */
    .facility-card-body { padding: 15px; }
    .facility-card-title { font-size: 1.1rem !important; }
}
/* =================================================================
   SERVICE PAGE (サービス内容ページ)
   ================================================================= */
.service-page-wrap {
    /* 読みやすさを重視し、最大幅を制限 */
    max-width: 860px;
    margin: 0 auto;
}

/* --- 1. イントロダクション --- */
.intro-box {
    padding: 40px 50px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 30px;
}
.intro-icon {
    font-size: 3rem;
    line-height: 1;
    /* アイコンを丸い背景で囲んで優しさを演出 */
    background: var(--c-bg-light);
    width: 80px; height: 80px;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.intro-lead {
    font-size: 1.25rem;
    color: var(--c-primary);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}
.intro-text p:last-child { margin-bottom: 0; }

/* 余白ユーティリティ */
.mt-60 { margin-top: 60px; }
.mb-40 { margin-bottom: 40px; }

/* --- 2. 具体的なサービス内容（モダンテーブル） --- */
.modern-table-wrap {
    border: 1px solid var(--c-border);
}
.modern-table {
    border-collapse: collapse;
}
.modern-table th, 
.modern-table td {
    padding: 25px 30px;
    border-bottom: 1px solid var(--c-border);
    vertical-align: top; /* 上揃えで読みやすく */
}
.modern-table tr:last-child th,
.modern-table tr:last-child td {
    border-bottom: none;
}

/* 見出しセル（th）のデザイン */
.modern-table th {
    font-weight: 700;
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.5;
}
.modern-table th i {
    margin-right: 8px;
    font-size: 1.1rem;
    color: var(--c-secondary); /* アイコンはオレンジでアクセント */
}

/* データセル（td）のデザイン */
.modern-table td {
    line-height: 1.8;
}


/* --- スマホ表示調整 --- */
@media (max-width: 768px) {
    .intro-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    .intro-lead { font-size: 1.15rem; }
    .intro-text { text-align: left; }
    
    .modern-table-wrap {
        border-radius: 12px;
    }
    /* スマホではテーブルを縦並びの「カード形式」に変形させる */
    .modern-table, 
    .modern-table tbody, 
    .modern-table tr, 
    .modern-table th, 
    .modern-table td {
        display: block;
        width: 100%;
    }
    .modern-table tr {
        border-bottom: 1px solid var(--c-border);
    }
    .modern-table tr:last-child {
        border-bottom: none;
    }
    .modern-table th {
        padding: 20px 20px 10px;
        border-bottom: none; /* スマホではthの下線を消す */
        background: var(--c-bg-light); /* 背景色で区分け */
    }
    .modern-table td {
	padding:10px 20px 20px;
        border-bottom: none;
    }
}
/* =================================================================
   FLOW PAGE (1日の流れページ)
   ================================================================= */

/* 余白調整ユーティリティ */
.mt-60 { margin-top: 60px; }
.mb-10 { margin-bottom: 10px; }
.mb-0 { margin-bottom: 0 !important; }

/* --- 1. イントロダクション（サービス内容ページと共通スタイルを活用） --- */
/* intro-box などのスタイルはサービス内容ページで記述したものが効きます */

/* --- 2. タイムライン --- */
.timeline-wrapper {
    position: relative;
padding:20px;
}
.timeline {
    list-style: none;
    padding:0px;
    margin: 0;
    position: relative;
}

/* タイムラインの縦線（中央より少し左に配置） */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 120px; /* PCでの線の位置 */
    width: 3px;
    background: var(--c-bg-light); /* 薄いグレーのライン */
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}
.timeline-item-last {
    margin-bottom: 0;
}

/* 時間表示エリア */
.timeline-time {
    width: 100px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: right;
    padding-right: 30px;
    padding-top: 2px;
    letter-spacing: 0.05em;
}

/* タイムライン上の丸いドット */
.timeline-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 114px; /* 縦線の中央に合わせる */
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--c-primary);
    box-shadow: 0 0 0 4px #ffffff, 0 0 0 5px rgba(124, 179, 66, 0.2); /* 白フチと薄緑の影 */
    z-index: 2;
}

/* コンテンツエリア（右側） */
.timeline-content {
    flex: 1;
    padding-left: 50px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--c-border);
}
.timeline-item-last .timeline-content {
    border-bottom: none;
    padding-bottom: 0;
}

/* コンテンツ内の見出しを再定義（デフォルトのh3を上書き） */
.timeline-title {
    font-size: 1.25rem !important;
    color: var(--c-text-main) !important;
    border: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}
.timeline-content p {
    margin-bottom: 0;
    line-height: 1.7;
}

/* --- 特別に目立たせる項目（外出活動など） --- */
.timeline-item-active::before {
    background: var(--c-secondary); /* オレンジのドット */
    box-shadow: 0 0 0 4px #ffffff, 0 0 0 5px rgba(255, 152, 0, 0.2);
}
.timeline-item-active .timeline-content {
    background: rgba(255, 152, 0, 0.03); /* 背景をうっすらオレンジに */
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 152, 0, 0.1);
    margin-left: 30px; /* 余白調整 */
}

/* --- 3. 送迎エリア情報 --- */
.transport-box {
    align-items: center;
padding:20px;
}
.text-large-icon {
    font-size: 3.5rem;
}


/* --- スマホ表示調整 --- */
@media (max-width: 768px) {
    .timeline-wrapper { padding: 30px 15px; }
    
    /* 縦線を左端に寄せる */
    .timeline::before { left: 15px; }
    .timeline-item::before { left: 9px; top: 5px; width: 14px; height: 14px; }
    
    .timeline-item { flex-direction: column; margin-bottom: 30px; }
    
    /* 時間表示をコンテンツの上に移動 */
    .timeline-time {
        width: auto; text-align: left;
        padding-left: 40px; padding-right: 0; padding-bottom: 5px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        padding-left: 40px; padding-bottom: 15px;
    }
    .timeline-title { font-size: 1.1rem !important; }
    
    .timeline-item-active .timeline-content { margin-left: 20px; padding: 15px; }
    
    /* 送迎エリアのスマホ調整 */
    .transport-box { flex-direction: column; text-align: center; gap: 15px; padding: 30px 20px; }
}
/* =================================================================
   USAGE FLOW PAGE (ご利用の流れページ)
   ================================================================= */
.usage-flow-wrap {
    max-width: 860px;
    margin: 0 auto;
}

/* ユーティリティ */
.mb-20 { margin-bottom: 20px; }
.mt-60 { margin-top: 60px; }
@media (max-width: 768px) { .pc-only { display: none; } }

/* --- 2. ステップ解説エリア --- */
.usage-steps-container {
    position: relative;
    padding-left: 20px; /* 左側にライン用の余白を確保 */
}

/* 縦に走るコネクトライン */
.usage-steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 45px; /* バッジの中央を通るように配置 */
    width: 2px;
    background: repeating-linear-gradient(to bottom, var(--c-border) 0, var(--c-border) 10px, transparent 10px, transparent 20px);
    z-index: 0;
}

.step-card {
    position: relative;
    margin-bottom: 50px;
    padding-left: 60px; /* バッジとラインを避けるための余白 */
    z-index: 1;
}
.step-card:last-child {
    margin-bottom: 0;
}

/* STEPのバッジ（左上に丸く配置） */
.step-badge {
    position: absolute;
    top: 20px;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--c-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(124, 179, 66, 0.3);
    z-index: 2;
    line-height: 1.1;
}
.step-badge .num {
    font-size: 1.4rem;
    font-weight: 900;
}

/* カード本体 */
.step-card-inner {
    padding: 35px 40px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--c-border);
}
.step-card-inner:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 152, 0, 0.2); /* ホバーでうっすらオレンジ枠 */
}

/* アイコン */
.step-icon {
    font-size: 2.5rem;
    width: 60px;
    text-align: center;
    flex-shrink: 0;
    padding-top: 5px;
}

/* コンテンツ（タイトルと説明文） */
.step-title {
    font-size: 1.35rem !important;
    margin: 0 0 15px 0 !important;
    border: none !important;
    padding: 0 !important;
    letter-spacing: 0.05em;
}
.step-desc {
    margin: 0 !important;
    line-height: 1.8;
}

/* --- スマホ表示調整 --- */
@media (max-width: 768px) {
    .usage-steps-container {
        padding-left: 0;
    }
    
    /* スマホでは縦線を非表示にするか、左端に寄せる（今回はスッキリさせるため非表示） */
    .usage-steps-container::before {
        display: none;
    }

    .step-card {
        padding-left: 0;
        margin-bottom: 40px;
    }

    /* バッジをカードの上部中央に移動させる */
    .step-badge {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: -30px; /* カードにめり込ませる */
        border: 4px solid var(--c-bg-light); /* 背景に馴染ませる白フチ */
    }

    /* カード本体のスマホレイアウト */
    .step-card-inner {
        padding: 50px 20px 30px; /* 上部にバッジが来る分の余白 */
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .step-icon {
        font-size: 2rem;
        padding-top: 0;
    }

    .step-title {
        font-size: 1.2rem !important;
        margin-bottom: 12px !important;
    }
    .step-desc {
        text-align: left; /* 長い文章は左揃えが読みやすい */
        font-size: 0.95rem;
    }
}
/* =================================================================
   RECRUIT PAGE (採用情報ページ)
   ================================================================= */
.padding-40{
padding:40px;
}
.recruit-page-wrap {
    max-width: 800px; /* テーブルの横幅が広がりすぎないように少し絞る */
    margin: 0 auto;
}

/* メッセージエリア */
.recruit-message {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.recruit-lead {
    font-size: 1.35rem;
    color: var(--c-primary);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

/* 雇用形態などのバッジ装飾 */
.badge-type {
    display: inline-block;
    background: #ffffff;
    color: var(--c-secondary);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-right: 10px;
    border: 1px solid var(--c-secondary);
}

/* 給与などの強調文字 */
.text-large {
    font-size: 1.3rem;
}

/* ユーティリティ */
.mb-10 { margin-bottom: 10px; }

/* スマホ表示調整 */
@media (max-width: 768px) {
    .recruit-lead { font-size: 1.15rem; line-height: 1.6; }
    .text-large { font-size: 1.2rem; }
}
/* =================================================================
   ABOUT PAGE (会社概要ページ)
   ================================================================= */
.philosophy-box{
padding:20px 0 40px;
}
.about-page-wrap {
    max-width: 860px;
    margin: 0 auto;
}

/* ユーティリティ */
.line-height-loose { line-height: 2; }
.mt-60 { margin-top: 60px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

/* --- 経営方針リスト --- */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.policy-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}
.policy-list li:last-child {
    margin-bottom: 0;
}
.policy-list li i {
    position: absolute;
    left: 5px;
    top: 4px;
    font-size: 1.1rem;
}

/* --- Googleマップのレスポンシブ化 --- */
.about-map-inner {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%; /* PCでは横長の長方形（2:1） */
    background: var(--c-bg-light);
}
.about-map-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* --- スマホ表示調整 --- */
@media (max-width: 768px) {
    .text-md-left { text-align: left; } /* スマホでは長文を左寄せにして読みやすく */
    
    .policy-list li {
        font-size: 0.95rem;
        padding-left: 30px;
        margin-bottom: 12px;
    }
    .policy-list li i { left: 0; top: 3px; font-size: 1rem; }
    
    .about-map-inner {
        padding-bottom: 75%; /* スマホでは少し縦長（4:3）に広げて見やすく */
    }
}
/* =================================================================
   THANKS PAGE (送信完了ページ)
   ================================================================= */
.thanks-page-wrap {
    max-width: 760px; /* 文章が長くなりすぎないよう横幅を絞る */
    margin: 0 auto;
}

.thanks-content {
    padding:10px 0px;
}

/* 完了アイコン */
.thanks-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: popup-check 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
/* アイコンがポンッと飛び出すアニメーション */
@keyframes popup-check {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* タイトルとメッセージ */
.thanks-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}
.thanks-message {
    line-height: 1.9;
    margin-bottom: 40px;
}

/* 注意事項（自動返信が届かない場合）ボックス */
.thanks-caution {
    padding: 35px 40px;
    border: 1px solid var(--c-border);
}
.caution-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.caution-title i {
    margin-right: 5px;
}

/* 電話案内ボックス */
.thanks-tel-box {
    padding: 20px;
    border: 1px solid rgba(124, 179, 66, 0.2); /* ケセラセラの緑を薄く使用 */
}
.tel-lead {
    color: var(--c-text-light);
}
.tel-number {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 5px 0;
    transition: opacity 0.3s ease;
}
.tel-number:hover {
    opacity: 0.7;
}

/* ユーティリティ */
.mt-20 { margin-top: 20px; }
.mt-50 { margin-top: 50px; }


/* --- スマホ表示調整 --- */
@media (max-width: 768px) {
    .thanks-content {
        padding:0px 4%;
    }
    .thanks-icon {
        font-size: 4rem;
    }
    .thanks-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    .thanks-message {
        text-align: left; /* スマホでは文章を左寄せにして読みやすく */
        font-size: 0.95rem;
    }
    
    .thanks-caution {
        padding: 25px 20px;
    }
    .caution-title {
        font-size: 1rem;
    }
    .tel-number {
        font-size: 1.5rem;
    }
}
/* =================================================================
   CONTACT FORM 7 (ハイクオリティ・モダンデザイン)
   ================================================================= */
.modern-form-container {
    max-width: 700px;
    margin: 0 auto;
}

/* フォームの各行 */
.form-row {
    margin-bottom: 30px;
}

/* ラベルのデザイン */
.form-label {
    display: block;
    font-weight: 700;
    color: var(--c-text-main);
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 「必須」バッジ */
.label-required {
    background: #e53935;
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

/* 入力フィールド共通 */
.wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox) {
    width: 100% !important;
    padding: 15px 20px !important;
    border: 1px solid var(--c-border) !important;
    background: #fff !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box;
}

/* フォーカス時の挙動 */
.wpcf7-form-control:focus {
    outline: none !important;
    border-color: var(--c-primary) !important;
    box-shadow: 0 0 0 4px rgba(124, 179, 66, 0.1) !important;
}

/* セレクトボックスの矢印（モダン化） */
select.wpcf7-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237cb342'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 24px !important;
}

/* 同意チェックボックスのエリア */
.form-consent {
    margin: 40px 0 30px;
    padding: 25px;
    background: var(--c-bg-light);
    border-radius: 15px;
}
.consent-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--c-text-light);
}
.consent-text a {
    color: var(--c-primary);
    text-decoration: underline;
    font-weight: 700;
}

/* チェックボックス自体のデザイン微調整 */
.wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}
.wpcf7-acceptance label {
    font-weight: 700;
    color: var(--c-text-main);
    cursor: pointer;
}

/* 送信ボタン（既存の.btn-shineを流用） */
.form-submit .wpcf7-submit {
    min-width: 280px;
    padding: 18px 40px !important;
    font-size: 1.1rem !important;
    border: none !important;
    cursor: pointer;
}

/* エラーメッセージの装飾 */
.wpcf7-not-valid-tip {
    color: #e53935 !important;
    font-size: 0.85rem !important;
    margin-top: 5px !important;
    font-weight: 700;
}
.wpcf7-response-output {
    border-radius: 12px !important;
    margin: 2em 0 0 !important;
    padding: 1em 2em !important;
    font-weight: 700;
    text-align: center;
}

/* スマホ調整 */
@media (max-width: 768px) {
    .form-submit .wpcf7-submit {
        width: 100% !important;
    }
    .modern-form-container {
        padding: 0 5px;
    }
}
/* =================================================================
   CONTACT PAGE (お問い合わせページ全体)
   ================================================================= */
.page-id-3 .page-title-en-bg{
font-size: 2.7em;
}
.page-id-3 .entry-content{
padding:40px 40px 50px;
}
.contact-page-wrap {
    max-width: 860px;
    margin: 0 auto;
}

/* ユーティリティ */
.mt-60 { margin-top: 60px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* --- フォームのラップ --- */
.form-wrapper {
}

/* --- 電話案内セクション --- */
.tel-support-box {
    background-color: var(--c-bg-light);
    border: 2px dashed var(--c-border);
}

.contact-tel-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--c-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-tel-link i {
    font-size: 1.8rem;
    background: #ffffff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.contact-tel-link:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* --- スマホ表示調整 --- */
@media (max-width: 768px) {
    .form-wrapper {
        padding:30px 0 0 0; /* スマホでは余白を絞る */
    }
    
    .contact-tel-link {
        font-size: 1.6rem;
        gap: 10px;
    }
    
    .contact-tel-link i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .tel-support-box {
        padding: 40px 20px;
    }
}
/* =================================================================
   10. RESPONSIVE MEDIA QUERIES (Smartphone Focus)
   ================================================================= */
@media (min-width: 769px) {
    .sp-only { display: none !important; }
}

@media (max-width: 768px) {
    .pc-only { display: none !important; }
    
    .header-inner.inner {
        padding: 0 5%;
    }

    /* Header */
    .header { height: var(--header-height-sp); }
    .main-visual { margin-top: var(--header-height-sp); height: 80vh; min-height: 500px; }
    .header-logo img { height: 50px; } /* スマホでロゴが大きすぎないように */

    /* Typography Adjustments */
    .section-header { margin-bottom: 40px; }
    p { font-size: 0.95rem; margin-bottom: 1.2em; }

    /* Layout Reset (Flexbox to Stack) */
    .flex-space-between { flex-direction: column; gap: 30px; margin-top:25px; }
    .w-32, .w-35, .w-60 { width: 100%; }

    /* Main Visual Adjustments */
    .mv-text-inner { padding:80px 0 20px; background: none; }
    .mv-catch { font-size: 6vw;line-height:160%; }
    
    .btn-mv {
		        width: 275px;
        padding: 13px 20px;
        font-size: 1rem;
        margin: 0 auto;
        display: block;
        text-align: center;
	}

    /* Concept Section */
    section.concept { margin-top: 0; }
    .concept-content { flex-direction: column-reverse; gap: 30px; }
    
    /* Features & Page Nav Grids */
    .features-grid, .page-nav-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
    .feature-card, .page-nav-panel { padding:20px 20px 30px; }
    
    /* Fee Table */
    .fee-table-wrap { padding: 20px 15px; border-radius: 12px; }
    .fee-table th, .fee-table td { padding: 15px 12px; font-size: 0.9rem; min-width: 200px;}
    .fee-table td.fee-amount { font-size: 1.05rem; }

    /* Conditions */
    .conditions .section-title {
        font-size: 26px;
    }

    /* Floating CTA Mobile Fix (中央寄せの再調整) */
    .modern-floating-cta-wrap {
        bottom: 24px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 92%;
        max-width: 400px;
        transform: none; /* 中央寄せ競合回避 */
    }
    
    .modern-floating-cta { transform: none !important; }
    .modern-floating-cta:hover { transform: translateY(-2px) !important; }
.mv-text-wrap {
height:auto;
        padding: 0 4%;
        box-sizing: border-box;
}
.mv-bg{
    height: 110%;
	top: unset;
    bottom: 0;
	}
.section-title{
font-size:clamp(2.2rem, 6vw, 5rem);
	}
.text-large-icon{
font-size:3.2em;
margin:0;
}
.mv-subcatch{
line-height:160%;
	}
.conditions-block-body img {
    width: 100%;
    margin: 0 auto 25px;
}
.conditions-map-btn-wrap .btn{
	margin:0px auto 15px;
text-align:left;
	}
.fee-btn-wrap .btn{
text-align:left;
	}
.fee-table{
min-width:unset;
	}
.btn i{
margin-right:15px;
}
.footer-cta-header{
margin-bottom:20px;
}
.inner{
    padding:0 4%;
	}
.flow-timeline-section .padding-40, .transport-box.padding-40{
padding:20px 4% 40px;
}
.usage-flow-wrap .padding-40{
padding:20px 4% 40px;
}
.usage-steps-section.mt-60{
margin-top:10px;
	}
.staff-intro .section-title{
top:30%;
}
.staff-intro {
    margin-bottom: 90px;
}
.page-id-3 .page-title-en-bg {
font-size:1.7em;
}
.page-id-3 .entry-content{
padding:30px 6% 25px;
}
.footer-cta{
padding-top:30px;
}
.contact-form-section.mt-60{
margin-top:10px;
}
.thanks-action.mt-50{
margin-top:0;
	}
.page-id-35 .page-header-modern {
background-position: center;
}
.page-id-6 .page-header-modern{
background-position: center;
}
.page-id-52 .page-header-modern{
background-position: center;
}
.page-id-37 .page-header-modern{
background-position: center;
}
.philosophy-box {
    padding: 20px 4% 40px;
}
	}