/*!
Theme Name: Shelter momo
Description: 
Template:   cocoon-master
*/

/* === [MOMO_CSS_REFACTOR_LAYER v1] BEGIN =========================
   Purpose: Reduce duplication safely WITHOUT changing HTML.
   - Define design tokens (colors/spacing/radius/shadow)
   - Consolidate repeated patterns using :is(...) selector groups
   Place this block near the TOP of child style.css (after theme header),
   or load as a separate CSS file after the parent theme CSS.
   =============================================================== */

:root{
  --momo-brand: #eb6e8f;
  --momo-brand-2: #ee85a1;
  --momo-ink: #453336;
  --momo-ink-2: #62494d;
  --momo-text: #333;
  --momo-muted: #666;
  --momo-bg-soft: #fef4f7;
  --momo-white: #fff;

  --momo-radius-s: 8px;
  --momo-radius-m: 12px;
  --momo-radius-l: 16px;

  --momo-shadow-s: 0 6px 16px rgba(0,0,0,.08);
  --momo-shadow-m: 0 10px 28px rgba(0,0,0,.12);

  --momo-gap-s: 20px;
  --momo-gap-m: 30px;
  --momo-gap-l: 40px;

  --momo-section-pad-y: 80px;
  --momo-section-pad-x: 20px;
}

/* ---- Common Section Padding / Centering ---------------------- */
:is(.momo-home-cta,
    .momo-shelter-cta,
    .momo-volunteer-catch,
    .momo-en-cta){
  background: var(--momo-white);
  padding: var(--momo-section-pad-y) var(--momo-section-pad-x);
  text-align: center;
}

/* ---- Shared 3-column grids ----------------------------------- */
:is(.momo-support-grid,
    .momo-life-grid,
    .momo-shelter-life-grid,
    .momo-en-support-grid){
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--momo-gap-m);
  margin-top: 50px;
}

/* ---- Shared 2-column grids ----------------------------------- */
:is(.momo-voices-grid,
    .momo-residents-grid,
    .momo-shelter-voices-grid){
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--momo-gap-l);
  margin-top: 50px;
}

/* ---- Shared CTA button rows ---------------------------------- */
:is(.momo-support-cta-buttons,
    .momo-volunteer-cta-buttons,
    .momo-en-cta-buttons){
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--momo-gap-s);
}

/* ---- Shared step number pills -------------------------------- */
:is(.momo-flow-step-number,
    .momo-shelter-step-number){
  background: var(--momo-brand);
  color: var(--momo-white);
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

/* ---- Shared image fill rules --------------------------------- */
:is(.momo-shelter-flow-image img,
    .momo-en-header-image img,
    .momo-en-place-image img){
  display: block;
  width: 100%;
  height: auto;
}

/* ---- Shared card base (membership/activity) ------------------ */
:is(.momo-membership-card,
    .momo-activity-card){
  background: var(--momo-white);
  border-radius: var(--momo-radius-m);
  padding: 30px;
  text-align: center;
  transition: all .3s;
}

/* ---- Shared underline accent pseudo elements ----------------- */
:is(.momo-section-title::after,
    .support .support-section .ttl:after,
    .section-title:after){
  background: var(--momo-brand);
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  border-radius: 2px;
}

/* NOTE: legacy (will be removed after action-btn migration is complete) */
/* ---- Header / mobile action button base ---------------------- */
:is(.mobile-action-btn,
    .slicknav-action-btn){
  display: block !important;
  width: 50%;
  border-radius: var(--momo-radius-s) !important;
  transition: all .3s;
}

/* Brand filled variant (Consult) */
:is(.btn-consult,
    .mobile-action-btn.btn-consult,
    .slicknav-action-btn.btn-consult){
  background-color: var(--momo-brand) !important;
  color: var(--momo-white) !important;
  border: none !important;
}

/* === [MOMO_CSS_REFACTOR_LAYER v1] END =========================== */

/* ========================================
   サイト全体のフォント設定
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

.under-entry-content {
    display: none !important;
}

.single .article p {
    line-height: 2;
    margin-bottom: 1em !important;
}

/*body,
.site-header,
.navi-in a,
.slicknav_nav a,
button,
input,
select,
textarea {
    font-family: 'Zen Maru Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif !important;
    font-weight: 500 !important;
}*/

body,
.site-header,
/*.navi-in a,*/
.slicknav_nav a,
button,
input,
select,
textarea {
    font-family: 'M PLUS Rounded 1c', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif !important;
}

a {
    transition: color 0.3s;
}

/* 見出しにZen Maru Gothicを適用 */
h2,h3,h4,
.zenMaru-G {
    font-family: 'Zen Maru Gothic' !important;
}

/* ========================================
   基本設定
======================================== */
.article h2, .sidebar h2, .sidebar h3, .cat-link, .cat-label, .appeal-content .appeal-button, .demo .cat-label, .blogcard-type .blogcard-label, #footer {
    background-color: transparent;
    color: #eb6e8f;
}
.momo-mv-section *,
.momo-about-section *,
.momo-three-buttons *,
.momo-consultation-info *,
.momo-two-buttons *,
.momo-contact-section *,
.momo-news-section * {
    box-sizing: border-box;
}
.home .content {margin-top: 0;}
.home .main {padding: 0;}
.home .article {margin-bottom: 0;}
.home .entry-content {margin-top: 0; margin-bottom: 0;}
.home .article-header.entry-header {display: none;}

.content {margin-top: 0;}
.main {padding: 0;}
.article,
.entry-content>* {margin-bottom: 0 !important;}
.entry-content {margin: 0;}

table tr:nth-of-type(2n+1) {
    background-color: transparent;
}
table:not(.has-border-color) th,
table:not(.has-border-color) td {
    border-color: transparent;
}

.date-tags {display: none;}
.article h3, .article h4, .article h5, .article h6, .cat-link, .tag-link {border: none;}
.article h3 {
    padding: 12px 0;
}
.article h1, .article h2, .article h3, .article h4, .article h5, .article h6 {
    line-height: 1.6;
}


@media screen and (max-width: 834px) {
    main.main {
        padding: 0;
    }
}

.flex {display: flex;}

.t-center {text-align: center !important;}
.t-left {text-align: left !important;}
.t-right {text-align: right !important;}
.t-bold {font-weight: 700;}
.t-normal {font-weight: normal;}
.t-50 {font-size: 0.5em !important;}
.t-60 {font-size: 0.6em !important;}
.t-70 {font-size: 0.7em !important;}
.t-80 {font-size: 0.8em !important;}
.t-90 {font-size: 0.9em !important;}
.t-110 {font-size: 1.1em !important;}
.t-120 {font-size: 1.2em !important;}
.t-140 {font-size: 1.4em !important;}
.t-160 {font-size: 1.6em !important;}
.t-180 {font-size: 1.8em !important;}
.t-200 {font-size: 2.0em !important;}
.t-220 {font-size: 2.2em !important;}
.t-240 {font-size: 2.4em !important;}
.t-260 {font-size: 2.6em !important;}
.t-280 {font-size: 2.8em !important;}
.t-300 {font-size: 3.0em !important;}

.pink {color: #eb6e8f !important}

.mt-1 {margin-top: 1em !important;}
.mt-2 {margin-top: 2em !important;}
.mt-3 {margin-top: 2em !important;}
.mt-4 {margin-top: 4em !important;}
.mt-5 {margin-top: 5em !important;}
.mt-6 {margin-top: 6em !important;}
.mt-7 {margin-top: 7em !important;}
.mt-8 {margin-top: 8em !important;}
.mt-9 {margin-top: 9em !important;}
.mt-10 {margin-top: 10em !important;}
.mb-1 {margin-bottom: 1em !important;}
.mb-2 {margin-bottom: 2em !important;}
.mb-3 {margin-bottom: 2em !important;}
.mb-4 {margin-bottom: 4em !important;}
.mb-5 {margin-bottom: 5em !important;}
.mb-6 {margin-bottom: 6em !important;}
.mb-7 {margin-bottom: 7em !important;}
.mb-8 {margin-bottom: 8em !important;}
.mb-9 {margin-bottom: 9em !important;}
.mb-10 {margin-bottom: 10em !important;}


/* ========================================
   1. ヘッダーを100%幅に変更
======================================== */
.site-header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner,
.header-container {
    position: relative;
    margin: 0 auto;
    padding: /*15px*/ 0/*30px*/;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-container-in.wrap {
    width: 100%;
}

.header-container-in.hlt-top-menu.hlt-tm-small .logo-header {
    margin: 15px 0;
}

/* ========================================
   2. ヘッダーメニューの色変更（全画面共通）
======================================== */
.header-nav a,
.main-nav a,
.navi-in > ul > li > a {
    color: #57474f !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600 !important;
    transition: color 0.3s;
}

.header-nav a:hover,
.main-nav a:hover,
.navi-in > ul > li > a:hover {
    color: #eb6e8f !important;
}

/* ホームメニューをアイコンに */
#menu-item-130 .item-label {
    height: 38px;
    font-size: 0;
}

#menu-item-130 .item-label::before {
    content: "\f015";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
}

/* 現在のページのメニューをキーカラーに */
#navi .navi-in>ul>li.current-menu-item a,
#navi .navi-in>ul>li.current_page_item a {
    color: #eb6e8f !important;
}

/* NOTE: legacy (will be removed after action-btn migration is complete) */
/* ボタン共通スタイル */
.header-action-btn,
.mobile-action-btn,
.slicknav-action-btn,
.btn-consult,
.btn-support,
.momo-btn,
.momo-feature-btn ,
.momo-tab-btn ,
.momo-news-tab-btn,
.c-footer-links__btn/*,
.momo-footer-btn*/ {
    position: relative;
    font-family: 'Zen Maru Gothic' !important;
}

.arrow-r {
    position: relative;
    display: block;
    
}
.arrow-r:after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 6px;
    width: 6px;
    height: 10px;
    background-image: url(./img/i-arrow.png);
    background-position: 0 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: contain;
}

.btn-consult {
    background-color: #eb6e8f !important;
    color: #fff !important;
    border: none !important;
}

/* NOTE: legacy (will be removed after action-btn migration is complete) */
/* ヘッダーのボタンのみに適用 */
.header-action-btn.btn-consult:hover,
.mobile-action-btn.btn-consult:hover,
.slicknav-action-btn.btn-consult:hover {
    opacity: 0.8;
    color: #fff !important;
}

.btn-support {
    background-color: #fef4f7 !important;
    color: #eb6e8f !important;
    border: 1px solid #eb6e8f !important;
}

.header-action-btn.btn-support:hover,
.mobile-action-btn.btn-support:hover,
.slicknav-action-btn.btn-support:hover {
    opacity: 0.8;
    color: #eb6e8f !important;
}

.btn-consult span,
.btn-support span {
    position: relative;
}
.btn-consult span:before,
.btn-support span:before {
    position: absolute;
    display: block;
    content: "";
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 21px;
    height: 25px;
    padding-right: 8px;
    background-position: 0 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: contain;
}
.btn-consult span:before {
    background-image: url(./img/i-call.png);
}
.btn-support span:before {
    background-image: url(./img/i-clover.png);
}

/* モバイルアクションボタン（デフォルトは非表示） */
.mobile-actions {
    display: none;
}

.curl {
    position: relative;
    display: block;
}
.curl:after {
    position: absolute;
    display: block;
    content: "";
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 500px;
    height: 33px;
    background-image: url(./img/img-curl.png);
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: contain;
}

@media (max-width: 768px) {
    .curl:after {
        width: calc(268px + 232px * (100vw - 320px)/ 448px);
    }
}


/* ---- momo-btn compat restore (site-wide) -------------------------
   目的：未編集HTMLの .momo-btn / 各outline系を確実に復旧する
------------------------------------------------------------------- */

a.momo-btn{
  position: relative;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  line-height: 1.2;
}

a.momo-btn:before{
  position: absolute;
  display: block;
  content: "";
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 26px;
  padding-right: 8px;
  background-position: 0 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: contain;
}

/* 既にあなたのCSSにある pink-outline を“リンク要素に限定して”復旧 */
a.momo-btn-pink-outline{
  border: 4px solid #eb6e8f;
  color: #333;
  background-color: transparent;
}
a.momo-btn-pink-outline:hover{
  background-color: #eb6e8f;
  color: #fff;
}
/* pink-outline の矢印色（通常時＝ピンク、hover時＝白） */
a.momo-btn-pink-outline.arrow-r:after{
  filter: brightness(0) saturate(100%) invert(64%) sepia(27%) saturate(3896%) hue-rotate(304deg) brightness(99%) contrast(86%);
}
a.momo-btn-pink-outline:hover.arrow-r:after{
  filter: brightness(0) invert(1); /* 白 */
}


/* 他ページで使っているボタンがこれらなら、最低限の見た目を戻す */
a.momo-btn-white-outline{
  border: 4px solid #fff;
  color: #fff;
  background-color: transparent;
}
a.momo-btn-white-outline:hover{
  background-color: #fff;
  color: #333;
}

/* outline-dark は「塗りつぶさない」が元仕様 */
a.momo-btn-outline-dark{
  border: 2px solid #453336;
  color: #453336;
  background-color: transparent;
}
a.momo-btn-outline-dark:hover{
  color: #333;
  opacity: 0.8;
  background-color: transparent;
}

/* Instagram */
.momo-btn-instagram {
	display: inline-block;
	padding: 15px 40px;
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	font-weight: bold;
	/*margin-top: 20px;*/
	transition: all 0.3s;
}
.momo-btn-instagram:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
    color: #fff;
}

/* SP font-size（あなたの既存ルールと同じ思想） */
@media (max-width: 768px){
  a.momo-btn{
    font-size: calc(16px + 4 * (100vw - 320px)/ 448);
  }
}


/* =====================================================
   momo-btn COMPLETE RESTORE（padding / size / feel）
   元デザイン完全復元用
===================================================== */

/* ベース */
.momo-btn{
  position: relative;
  display: inline-block;
  padding: 12px 35px;          /* ★元の値 */
  border-radius: 16px;
  font-size: 20px;             /* ★元の値 */
  font-weight: 500;
  text-decoration: none;
  line-height: 1.4;            /* ★元の“余裕感”を復元 */
  transition: all 0.3s;
  box-sizing: border-box;      /* border込みでサイズ安定 */
}

/* 左アイコン */
.momo-btn:before{
  position: absolute;
  content: "";
  left: 14px;                  /* ★元 */
  top: 50%;
  transform: translateY(-50%);
  width: 18px;                 /* ★元 */
  height: 26px;                /* ★元 */
  background-repeat: no-repeat;
  background-size: contain;
}

/* ========== outline 系 ========= */

/* pink */
.momo-btn-pink-outline{
  border: 4px solid #eb6e8f;
  color: #333;
  background-color: transparent;
}
.momo-btn-pink-outline:hover{
  background-color: #eb6e8f;
  color: #fff;
}

/* white */
.momo-btn-white-outline{
  border: 4px solid #fff;
  color: #fff;
  background-color: transparent;
}
.momo-btn-white-outline:hover{
  background-color: #fff;
  color: #333;
}

/* dark（※塗りつぶさないのが元仕様） */
.momo-btn-outline-dark{
  border: 2px solid #453336;   /* ★元：2px */
  color: #453336;
  background-color: transparent;
}
.momo-btn-outline-dark:hover{
  color: #333;
  opacity: 0.8;
  background-color: transparent;
}

/* ========== SP ========= */
@media (max-width: 768px){
  .momo-btn{
    font-size: calc(16px + 4 * (100vw - 320px)/ 448); /* ★元 */
    padding: calc(10px + 2 * (100vw - 320px)/ 448)
             calc(26px + 9 * (100vw - 320px)/ 448);
  }
}




/* ========================================
   3. デスクトップ専用設定（1025px以上）
======================================== */
@media (min-width: 1024px) {
    /* ナビをflexboxに */
    #navi-in {
        display: flex !important;
        align-items: stretch !important;
        justify-content: flex-end !important;
        flex-wrap: nowrap;
        min-height: 70px;
    }
    
    /* メニューリスト */
    #navi .navi-in>ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0 10px;
        margin: 0;
        padding: 10px 0;
    }
    
    #navi .navi-in>ul>li {
        width: auto !important;
    }
    .hlt-tm-small .navi-in > ul li, .cl-slim .navi-in > ul li {
        height: 30px;
    }
    /* アクションボタン */
    .header-actions {
        display: flex;
        flex-shrink: 0;
        padding-left: 20px;
    }
    
    .header-action-btn {
        padding:0 18px 0 44px !important;
        font-size: 20px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        transition: all 0.3s;
        border-radius: 0 !important;
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .header-container-in.hlt-top-menu.hlt-tm-small .logo-header {
        margin: calc(10px + 5 * (100vw - 320px)/ 448) 0;
    }
    .header-container-in.hlt-top-menu.hlt-tm-small .logo-header img {
        max-height: calc(32px + 8 * (100vw - 320px)/ 448) !important;
    }
}

/* ========================================
   4. タブレット・モバイル設定（1023px以下）
======================================== */
@media (max-width: 1023px) {
    /* PCメニューは非表示 */
    #navi .navi-in>ul.menu-pc {
        display: none !important;
    }
    
    .slicknav_menutxt {
        display: none !important;
    }
    
    /* スライドメニュー本体を右側に配置 */
    .slicknav_nav {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background-color: #f9f2de !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        padding: 40px 15px 30px !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease !important;
    }
    
    /* メニューが閉じている時 */
    .slicknav_nav.slicknav_hidden {
        transform: translateX(100%) !important;
    }
    
    /* メニューが開いた時 */
    .slicknav_nav:not(.slicknav_hidden) {
        transform: translateX(0) !important;
    }
    
    /* ハンバーガーボタンを固定位置に */
    .slicknav_btn {
        position: absolute !important;
        top: 10px !important;
        right: 20px !important;
        z-index: 10001 !important;
        background-color: transparent !important;
        padding: 10px !important;
        margin: 0 !important;
        width: 44px !important;
        height: 44px !important;
    }

    /* メニューが開いた時だけ fixed */
    .slicknav_open .slicknav_btn {
        position: fixed !important;
    }
    
    .slicknav_menu {
        padding: 0;
        background: transparent !important;
    }
    
    /* ハンバーガーアイコンのアニメーション */
    .slicknav_icon {
        position: relative !important;
        width: 24px !important;
        height: 18px !important;
        display: block !important;
    }
    
    .slicknav_icon-bar {
        background-color: #57474f !important;
        height: 3px !important;
        width: 100% !important;
        position: absolute !important;
        left: 0 !important;
        transition: all 0.3s ease !important;
        margin: 0 !important;
    }
    
    .slicknav_icon-bar:nth-child(1) {
        top: 0 !important;
    }
    
    .slicknav_icon-bar:nth-child(2) {
        top: 7px !important;
    }
    
    .slicknav_icon-bar:nth-child(3) {
        top: 14px !important;
    }
    
    /* メニューが開いた時：❌に変形 */
    .slicknav_open .slicknav_icon-bar:nth-child(1) {
        top: 7px !important;
        transform: rotate(45deg) !important;
    }
    
    .slicknav_open .slicknav_icon-bar:nth-child(2) {
        opacity: 0 !important;
    }
    
    .slicknav_open .slicknav_icon-bar:nth-child(3) {
        top: 7px !important;
        transform: rotate(-45deg) !important;
    }
    
    /* メニュー項目のスタイル */
    .slicknav_nav a {
        color: #57474f !important;
        font-size: 16px;
        padding: 10px !important;
        border-bottom: 1px solid #57474f !important;
    }
    
    .slicknav_nav a:hover {
        color: #eb6e8f !important;
    }
    
    /* オーバーレイ（背景を暗くする） */
    .slicknav_menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    /* メニューが開いた時のオーバーレイ */
    .slicknav_menu.slicknav_open::before {
        opacity: 1;
        visibility: visible;
    }
    
    /* デスクトップボタンを非表示 */
    .header-actions {
        display: none !important;
    }
    
    /* モバイルボタンを表示 */
    .mobile-actions {
        display: flex !important;
        justify-content: center;
        gap: 10px;
        padding: 20px;
        margin: 0;
    }

    .mobile-action-btn {
        width: 50%;
        max-width: 300px;
        padding: 15px 20px !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        text-align: center;
        transition: all 0.3s;
        border-radius: 8px !important;
        display: block;
    }
    
    .mobile-action-btn.btn-consult {
        background-color: #eb6e8f !important;
        color: #fff !important;
        border: none !important;
    }
    
    .mobile-action-btn.btn-support {
        background-color: #fff !important;
        color: #eb6e8f !important;
        border: 2px solid #eb6e8f !important;
    }

    /* NOTE: legacy (will be removed after action-btn migration is complete) */
    /* スライドメニュー内のアクションボタン */
    .slicknav-actions {
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 30px 0 0 0;
        border-top: 1px solid #f0f0f0;
    }

    .slicknav-action-btn {
        width: 50%;
        max-width: 300px;
        padding: 15px 20px !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        text-align: center;
        transition: all 0.3s;
        border-radius: 8px !important;
        display: block;
    }

    .slicknav-action-btn.btn-consult {
        background-color: #eb6e8f !important;
        color: #fff !important;
        border: none !important;
    }

    .slicknav-action-btn.btn-support {
        background-color: #fff !important;
        color: #eb6e8f !important;
        border: 2px solid #ee85a1 !important;
    }
}

@media (max-width: 768px) {
    .slicknav_btn {
        top: calc(5px + 5 * (100vw - 320px)/ 448) !important;
        right: calc(10px + 10 * (100vw - 320px)/ 448) !important;
    }
    .mobile-action-btn {
        padding: calc(10px + 5 * (100vw - 320px)/ 448) calc(20px + 10 * (100vw - 320px)/ 448) !important;
    }
}
@media (max-width: 500px) {
    .mobile-action-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: calc(44px - 24 * (100vw - 320px)/ 180) !important;
        font-size: calc(16px + 4 * (100vw - 320px)/ 180) !important;
    }
}



/* ========================================
   メインビジュアル
======================================== */
.momo-mv-section {
    background-color: #fdfaf4;
    margin-bottom: 0 !important;
    padding: 60px 0 30px;
    text-align: center;
}

.momo-mv-subtitle {
    font-family: 'Zen Maru Gothic' !important;
    font-size: 28px;
    color: #eb6e8f;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 30px !important;
}

.momo-mv-subtitle br {
    display: none;
}

/* Swiper */
.momo-mv-swiper {
    max-width: 100%;
    margin: 0 auto 30px;
    overflow: visible;
}

.momo-mv-swiper .swiper-slide {
    width: 780px;
    max-width: 90%;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.momo-mv-swiper .swiper-slide-active {
    opacity: 1;
}

.momo-mv-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.momo-mv-swiper .swiper-pagination {
    display: none;
    margin-top: 20px;
}

.momo-mv-swiper .swiper-pagination-bullet {
    background-color: #eb6e8f;
    opacity: 0.3;
}

.momo-mv-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.momo-mv-message p {
    font-family: 'Zen Maru Gothic' !important;
    font-size: 32px;
    color: #eb6e8f;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .momo-mv-section {
        padding: calc(20px + 40 * (100vw - 320px)/ 448) 0 calc(20px + 10 * (100vw - 320px)/ 448);
    }
    .momo-mv-subtitle {
        font-size: calc(17px + 5 * (100vw - 320px)/ 448);
        margin-bottom: calc(0.1em + 1.7 * (100vw - 320px)/ 448);
    }

    .momo-mv-subtitle br {
        display: block;
    }
    
    .momo-mv-message p {
        margin-bottom: calc(0.1em + 1.7 * (100vw - 320px)/ 448);
        font-size: calc(17px + 7 * (100vw - 320px)/ 448);
    }
}

/* =========================================================
   [REFIT v1.2.1] Home Main Visual (momo → new classes)
   - 旧HTML（momo-*）でも、新HTML（c-hero / c-slider）でも同じ見た目
   - FIX: Swiper横はみ出し（overflow）対策
   - FIX: c-actionRow--mobile の表示条件（<=1023pxのみ）
   - FIX: Header buttons must NOT inherit action-btn layout (width/radius)
========================================================= */

/* 横スクロール防止（MVのはみ出し対策） */
html, body { overflow-x: hidden; }

/* Hero wrapper */
.momo-mv-section,
.p-home.c-hero {
  background-color: #fdfaf4;
  margin-bottom: 0 !important;
  padding: 60px 0 30px;
  text-align: center;
  overflow: hidden; /* ★ ここが肝：セクション外へのはみ出しを遮断 */
}

/* Lead (subtitle) */
.momo-mv-subtitle,
.c-hero__lead {
  font-family: 'Zen Maru Gothic' !important;
  font-size: 34px;
  color: #eb6e8f;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 30px !important;
}

.momo-mv-subtitle br,
.c-hero__lead br {
  display: none;
}

/* Swiper wrapper */
.momo-mv-swiper,
.c-slider[data-js="home-mv"] {
  max-width: 100%;
  margin: 0 auto 30px;
  overflow: hidden; /* ★ visible だとはみ出すので統合版では hidden */
}

/* Slides */
.momo-mv-swiper .swiper-slide,
.c-slider[data-js="home-mv"] .swiper-slide {
  width: 900px;
  max-width: 90%;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.momo-mv-swiper .swiper-slide-active,
.c-slider[data-js="home-mv"] .swiper-slide-active {
  opacity: 1;
}

.momo-mv-swiper .swiper-slide img,
.c-slider[data-js="home-mv"] .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Pagination */
.momo-mv-swiper .swiper-pagination,
.c-slider[data-js="home-mv"] .swiper-pagination {
  display: none;
  margin-top: 20px;
}

.momo-mv-swiper .swiper-pagination-bullet,
.c-slider[data-js="home-mv"] .swiper-pagination-bullet {
  background-color: #eb6e8f;
  opacity: 0.3;
}

.momo-mv-swiper .swiper-pagination-bullet-active,
.c-slider[data-js="home-mv"] .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Message */
.momo-mv-message p,
.c-hero__message p {
  font-family: 'Zen Maru Gothic' !important;
  font-size: 32px;
  color: #eb6e8f;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 30px;
}

/* =========================================================
   Mobile action row visibility
========================================================= */
.c-actionRow--mobile { display: none !important; }

@media (max-width: 1023px) {
  .c-actionRow--mobile {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    margin: 0;
  }
}

/* =========================================================
   Buttons (MV / slicknav) + Safety for Header
   - action-btn は「MV/モバイル導線・slicknav」で使う
   - Header は既存の .header-action-btn（あなたの523行目付近）を尊重し、巻き込まない
========================================================= */

/* c-btn は最小限（邪魔しない） */
.c-btn { text-decoration: none; }

/* 共通クラス（MV/モバイル導線向けの見た目） */
.action-btn {
  width: 50%;
  max-width: 300px;
  padding: 15px 20px !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  text-align: center;
  transition: all 0.3s;
  border-radius: 8px !important;
  display: block;
}

/* 互換（旧クラスが残っていても同じ見た目にする：MV/モバイル＆slicknavのみ）
   ※ここに header-actions を絶対に入れない（ヘッダー崩れの原因）
*/
.c-actionRow--mobile .mobile-action-btn,
.slicknav-actions .slicknav-action-btn {
  width: 50%;
  max-width: 300px;
  padding: 15px 20px !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  text-align: center;
  transition: all 0.3s;
  border-radius: 8px !important;
  display: block;
}

/* span 崩れ対策（導線ボタンのみ） */
.action-btn span,
.c-actionRow--mobile .mobile-action-btn span,
.slicknav-actions .slicknav-action-btn span {
  display: inline-block;
}

/* 色バリエ（既存の btn-consult / btn-support を尊重） */
.btn-consult {
  background: #eb6e8f;
  color: #fff;
  border: 2px solid #eb6e8f;
}

.btn-support {
  background: #fff;
  color: #453336;
  border: 2px solid #eb6e8f;
}

/* ★重要：ヘッダーは “action-btn の幅/角丸” を必ず無効化する
   （あなたの既存 @media(min-width:1024px) .header-action-btn の完成CSSが主役）
*/
@media (min-width: 1024px) {
  .header-actions .header-action-btn {
    width: auto !important;
    max-width: none !important;
    border-radius: 0 !important;
    display: flex !important;
    text-align: left !important;
  }
}

/* =========================================================
   Responsive typography
========================================================= */
@media (max-width: 768px) {
  .momo-mv-section,
  .p-home.c-hero {
    padding: calc(20px + 40 * (100vw - 320px)/ 448) 0 calc(20px + 10 * (100vw - 320px)/ 448);
  }

  .momo-mv-subtitle,
  .c-hero__lead {
    font-size: calc(17px + 5 * (100vw - 320px)/ 448);
    margin-bottom: calc(0.1em + 1.7 * (100vw - 320px)/ 448);
  }

  .momo-mv-subtitle br,
  .c-hero__lead br {
    display: block;
  }

  .momo-mv-message p,
  .c-hero__message p {
    margin-bottom: calc(0.1em + 1.7 * (100vw - 320px)/ 448);
    font-size: calc(17px + 7 * (100vw - 320px)/ 448);
  }
}




/* ========================================
   モモについて（c-only）
======================================== */
.c-about-section {
    padding: 80px 0;
    background-color: #fff;
}

.c-section-title {
    position: relative;
    color: #333 !important;
    text-align: center;
    font-size: 34px !important;
    font-weight: 500 !important;
    margin-bottom: 60px;
}

.c-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #eb6e8f;
}

.c-section-title__icon {
    color: #eb6e8f;
    margin-right: 10px;
}
.c-section-title__icon img {
    max-width: 50px;
    height: auto;
    padding-bottom: 11px;
}

.c-about-section__content {
    position: relative;
    width: 100%;
    overflow: visible;
}

.c-about-section__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 0 calc(40vw + 40px); /* 画像幅40vw + 余白40px */
}

.c-about-section__image {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40vw;
    min-width: 350px;
    max-width: 650px; /* 550px → 650px */
}

.c-about-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0 20px 20px 0;
}

.c-about-section__text {
    position: relative;
    z-index: 1;
}

.c-about-section__headline {
    font-size: 24px;
    color: #eb6e8f;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

.c-about-section__desc p {
    margin-bottom: 20px;
    line-height: 2;
    color: #453336;
    font-size: 18px;
}

/* CTAボタン（今回は既存 momo-btn を温存しつつ、スコープだけ c に移す） */
.c-about-section .momo-btn.momo-btn-pink-outline {
    padding-left: 50px;
}
.c-about-section .momo-btn.momo-btn-pink-outline:before {
    background-image: url(./img/favicon.png);
}

@media (max-width: 768px) {
    .c-about-section {
        padding: 40px 0;
    }
    .c-about-section__inner {
        padding: 0 20px;
    }
    .c-section-title {
        font-size: calc(18px + 10 * (100vw - 320px)/ 448) !important;
        margin-bottom: 24px !important;
    }
    .c-section-title__icon {
        margin-right: calc(5px + 5 * (100vw - 320px)/ 448);
    }
    .c-section-title__icon img {
        width: calc(24px + 26 * (100vw - 320px)/ 448);
        padding-bottom: calc(3px + 8 * (100vw - 320px)/ 448);
    }

    .c-about-section__image {
        position: static;
        width: 100%;
        min-width: auto;
        max-width: none;
        height: calc(150px + 250 * (100vw - 320px)/ 448);
        margin-bottom: 30px;
    }
    .c-about-section__image img {
        border-radius: calc(8px + 8 * (100vw - 320px)/ 448);
        object-position: center calc(-192px - 292px * (100vw - 320px) / 448px);
    }

    .c-about-section__headline {
        font-size: calc(17px + 7 * (100vw - 320px)/ 448);
        margin-bottom: calc(15px + 15 * (100vw - 320px)/ 448) !important;
    }

    .momo-btn {
        font-size: calc(16px + 4 * (100vw - 320px)/ 448);
    }
}

/* ===================
   3つのボタン（c-only）
==================== */
.c-three-buttons {
    margin-bottom: 0;
    padding-bottom: 60px;
    /*padding-bottom: 120px;
    background: url(./img/clovers2.jpg) center bottom scroll repeat-x;
    background-size: 42%;*/
}

.c-three-buttons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.c-three-buttons__btn {
    padding: 10px 15px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}
.c-three-buttons__btn:hover {
    color: #fff !important;
    opacity: 0.7;
}
.c-three-buttons__btn.arrow-r:after {
    filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(7500%) hue-rotate(321deg) brightness(101%) contrast(102%);
}

/* 既存の色クラスは併用してもOKだが、c-onlyへ寄せるならこちらを優先 */
.c-three-buttons__btn--shelter { background-color: #f19bb2; }
.c-three-buttons__btn--home { background-color: #a1b33d; }
.c-three-buttons__btn--aftercare { background-color: #a2d8f6; }

@media (max-width: 768px) {
    .c-three-buttons__grid {
        padding: 0 20px;
        gap: calc(10px + 10 * (100vw - 320px)/ 448);
    }

    .c-three-buttons__btn {
        padding: 10px calc(1px + 14 * (100vw - 320px)/ 448);
        border-radius: 16px;
        font-size: calc(14px + 4 * (100vw - 320px)/ 448);
    }
}
@media (max-width: 499px) {
    .c-three-buttons__grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Section title compat (momo -> c) --------------------------- */
.momo-section-title{
    position: relative;
    color: #333 !important;
    text-align: center;
    font-size: 34px !important;
    font-weight: 500 !important;
    margin-bottom: 60px;
}
.momo-section-title::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #eb6e8f;
}

/* icon compat */
.momo-title-icon{ margin-right: 10px; }
.momo-title-icon img{ max-width: 50px; height: auto; padding-bottom: 11px; }

@media (max-width: 768px){
  .momo-section-title{
    font-size: calc(18px + 10 * (100vw - 320px)/ 448) !important;
    margin-bottom: 24px !important;
  }
  .momo-title-icon{
    margin-right: calc(5px + 5 * (100vw - 320px)/ 448);
  }
  .momo-title-icon img{
    width: calc(24px + 26 * (100vw - 320px)/ 448);
    padding-bottom: calc(3px + 8 * (100vw - 320px)/ 448);
  }
}





/* ================================================================================
   相談と支援について
======================================== */

/* ---- Consultation (c-only) --------------------------------------
   Goal: c-* is the source of truth. momo-* stays in HTML temporarily.
------------------------------------------------------------------- */

.c-consultation{
    position: relative;
    overflow: hidden;
}

.c-consultation__hero{
    position: relative;
    margin-bottom: 0;
    padding: 80px 20px 1.8em;
    background: #fff/*#fafbf4*/;
    text-align: center;
}

/* このセクションではタイトルを上書き（他セクションのc-titleに影響させない） */
.c-consultation__hero .c-section-title{
    color: #333 !important;
    font-size: 32px;
    margin-bottom: 10px;
    padding-bottom: 35px;
}

.c-consultation__subtitle{
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.c-consultation__desc{
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 2;
}

.c-consultation__scroll{
    font-size: 24px;
    color: #eb6e8f;
}

.c-consultation__flowarrow{
    transform: rotate(-90deg);
    filter: brightness(0) invert(1);
}

/* fairy balls */
.c-consultation__fairy{
    position: absolute;
    z-index: 0;
    opacity: 0;
    transform: scale(0);
    transition: all 0.8s ease-out;
}

.c-consultation__fairy--blue{
    width: clamp(200px, 20vw, 350px);
    height: clamp(200px, 20vw, 350px);
    left: clamp(-100px, -5vw, -30px);
    top: 77%;
    transform: translateY(-50%) scale(0);
    transition-delay: 0s;
}

.c-consultation__fairy--green{
    width: clamp(150px, 15vw, 250px);
    height: clamp(150px, 15vw, 250px);
    left: clamp(17%, 27vw, 32%);
    top: clamp(5px, -5vw, -30px);
    transition-delay: 0.2s;
}

.c-consultation__fairy--yellow{
    width: clamp(180px, 18vw, 300px);
    height: clamp(180px, 18vw, 300px);
    right: clamp(10%, 20vw, 25%);
    top: clamp(33px, -3vw, -20px);
    transition-delay: 0.4s;
}

.c-consultation__fairy--pink{
    width: clamp(220px, 22vw, 350px);
    height: clamp(220px, 22vw, 350px);
    right: clamp(-120px, -8vw, -50px);
    top: clamp(30%, 40%, 50%);
    transition-delay: 0.6s;
}

/* animate state（クラスは wrapper=c-consultation に付く想定） */
.c-consultation.animate .c-consultation__fairy{
    opacity: 0.35;
    transform: scale(1);
}
.c-consultation.animate .c-consultation__fairy--blue{
    transform: translateY(-50%) scale(1);
}

/* テキストを前面に */
.c-consultation__hero > *:not(.c-consultation__fairy){
    position: relative;
    z-index: 1;
}

/* Tabs */
.c-consultation__tabs{
    padding: 0;
    background: #fafbf4;
    margin-bottom: 0;
}

.c-consultation__tabbar{
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.c-consultation__tab{
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.3s;
    background-color: #fff !important;
    color: #eb6e8f !important;
    border: 4px solid #ee85a1 !important;
    border-bottom: none;
}

.c-consultation__tab.active{
    background-color: #ee85a1 !important;
    color: #fff !important;
    border: 4px solid #ee85a1;
    border-bottom: none;
}

.c-consultation__tab:hover{
    opacity: 0.8;
    color: inherit !important;
}
.c-consultation__tab.active:hover{
    opacity: 1;
    color: #fff !important;
}

/* panels（表示制御はJS依存なので momo-tab-content のまま維持） */
.c-consultation__panel{
    background-color: #ee85a1;
}

/* contact/flow */
.c-consultation__contact{
    padding: 80px 20px;
    background: #ee85a1;
    text-align: center;
    color: #fff;
}

.c-consultation__phone{
    font-size: 48px;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 10px !important;
    letter-spacing: 0.05em;
}
.c-consultation__phone a{
    color: #fff;
    text-decoration: none;
}

.c-consultation__hours{
    font-size: 16px;
    margin-bottom: 50px !important;
}

.c-consultation__flow h3{
    font-size: 32px;
    margin-bottom: 20px !important;
    font-weight: 500;
}

.c-consultation__flowgrid{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.c-consultation__flowitem{
    background-color: #fff;
    color: #453336;
    border-radius: 16px;
    width: 240px;
    min-width: 240px;
    height: 240px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.c-consultation__flowitem h4{
    margin-bottom: 0;
    border: none;
    color: #eb6e90;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 1px;
}

.c-consultation__flowitem p{
    font-size: 16px;
    font-weight: 500;
    color: #62494d;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0;
}

.c-consultation__flowitem img{
    max-height: 112px;
}

/* このセクション内の white-outline はサイズ等が特殊なのでスコープ固定で保持 */
.c-consultation a.momo-btn-white-outline{
    border: 4px solid #fff;
    background-color: transparent;
    font-size: 24px;
    color: #fff;
}
.c-consultation a.momo-btn-white-outline:hover{
    background-color: #fff;
    color: #eb6e8f;
}
.c-consultation a.momo-btn-white-outline.arrow-r:after{
    filter: brightness(0) saturate(100%) invert(98%) sepia(0%) saturate(7500%) hue-rotate(321deg) brightness(101%) contrast(102%);
}
.c-consultation a.momo-btn-white-outline:hover.arrow-r:after{
    filter: brightness(0) saturate(100%) invert(78%) sepia(32%) saturate(6719%) hue-rotate(303deg) brightness(96%) contrast(92%);
}
.c-consultation a.momo-btn.momo-btn-white-outline{
    padding-left: 35px;
}
.c-consultation a.momo-btn.momo-btn-white-outline:before{
    display: none;
}

/* support */
.c-consultation__support{
    max-width: 880px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.c-consultation__supportTitle{
    font-size: 32px !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

.c-consultation__supportSubtitle{
    margin-bottom: 30px !important;
    border: none !important;
    color: #333;
    font-size: 24px !important;
    font-weight: 500 !important;
    text-align: center;
    line-height: 1.8 !important;
}

.c-consultation__supportDesc{
    padding: 50px 70px;
    margin-bottom: 60px;
    border-radius: 16px;
    background-color: #fff;
    color: #333 !important;
    text-align: left;
}

.c-consultation__supportDesc p{
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

.c-consultation__supportButtons{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.c-consultation__supportButtons .momo-btn{
    min-width: 250px;
}

@media (max-width: 768px){
    .c-consultation__hero{
        padding-top: 60px;
    }
    .c-consultation__hero .c-section-title{
        font-size: calc(24px + 8 * (100vw - 320px) / 448) !important;
    }
    .c-consultation__tabbar{
        max-width: 90%;
    }
    .c-consultation__tab{
        padding: calc(8px + 12 * (100vw - 320px)/ 448)
                 calc(1px + 39 * (100vw - 320px)/ 448)
                 calc(8px + 12 * (100vw - 320px)/ 448)
                 calc(24px + 16 * (100vw - 320px)/ 448);
        font-size: calc(16px + 4 * (100vw - 320px)/ 448);
    }
    .c-consultation__contact{
        padding: calc(50px + 30 * (100vw - 320px)/ 448) 20px;
    }
    .c-consultation.animate .c-consultation__fairy{
        opacity: 0.4;
    }
    .c-consultation__fairy--blue{ width:150px; height:150px; }
    .c-consultation__fairy--green,
    .c-consultation__fairy--yellow{ width:120px; height:120px; }
    .c-consultation__fairy--pink{ width:140px; height:140px; }
    .c-consultation__flowarrow{ transform: rotate(0deg); }

    .c-consultation__phone{
        font-size: calc(32px + 16 * (100vw - 320px)/ 448);
    }
    .c-consultation__hours{
        font-size: calc(14px + 2 * (100vw - 320px)/ 448);
        margin-bottom: calc(20px + 30 * (100vw - 320px)/ 448) !important;
    }
    .c-consultation__flow h3{
        font-size: calc(24px + 8 * (100vw - 320px)/ 448);
        margin-bottom: calc(10px + 10 * (100vw - 320px)/ 448) !important;
    }
    .c-consultation__flowgrid{
        flex-direction: column;
        gap: calc(10px + 10 * (100vw - 320px)/ 448);
    }
    .c-consultation a.momo-btn-white-outline{
        font-size: calc(20px + 4 * (100vw - 320px)/ 448);
    }

    .c-consultation__supportTitle{
        font-size: calc(24px + 8 * (100vw - 320px)/ 448) !important;
        margin-bottom: calc(20px + 20 * (100vw - 320px)/ 448) !important;
    }
    .c-consultation__supportDesc{
        padding: calc(34px + 16 * (100vw - 320px)/ 448) calc(20px + 50 * (100vw - 320px)/ 448);
        margin-bottom: calc(34px + 26 * (100vw - 320px)/ 448);
    }
    .c-consultation__supportDesc p{
        margin-bottom: calc(5px + 15 * (100vw - 320px)/ 448);
    }
    .c-consultation__supportDesc p img{
        width: calc(120px + 28 * (100vw - 320px)/ 448);
    }
    .c-consultation__supportSubtitle{
        margin-bottom: calc(10px + 20 * (100vw - 320px)/ 448) !important;
        font-size: calc(18px + 6 * (100vw - 320px)/ 448) !important;
    }
}

@media (max-width: 500px){
    .c-consultation__fairy--blue{
        width: 140px; height: 140px; left: -16px; top: 77%;
    }
    .c-consultation__fairy--green{
        width: 80px; height: 80px; left: 13%; top: 10px;
    }
    .c-consultation__fairy--yellow{
        width: 90px; height: 90px; right: 7%; top: 33px;
    }
    .c-consultation__fairy--pink{
        width: 140px; height: 140px; right: -16px; top: 51%;
    }
}


/* tabs visibility: JS depends on momo-tab-content + active */
.c-consultation .momo-tab-content{
  display: none;
}
.c-consultation .momo-tab-content.active{
  display: block;
}


/* panel bg: keep source of truth on momo-tab-content while JS lives */
.c-consultation .momo-tab-content{
  background-color: #ee85a1;
}

/* =====================================================
   TAB BUTTON FIX (authority layer)
   - keep JS hooks (momo-tab-btn / active)
   - fix radius, colors, filters, hover behaviors
===================================================== */

/* 角丸と境界：momoの左右クラスを「確実に効かせる」 */
.c-consultation .momo-tab-btn-consult{
  border-radius: 10px 0 0 0 !important;
  border-right: none !important;
}
.c-consultation .momo-tab-btn-support{
  border-radius: 0 10px 0 0 !important;
  border-left: none !important;
}

/* 非active（相談する/支援するのデフォルト） */
.c-consultation .momo-tab-btn{
  background-color: #fff !important;
  color: #eb6e8f !important;
  border: 4px solid #ee85a1 !important;
  border-bottom: none !important;
  opacity: 1;
}

/* active（現在表示中のタブ） */
.c-consultation .momo-tab-btn.active{
  background-color: #ee85a1 !important;
  color: #fff !important;
  border-color: #ee85a1 !important;
}

/* hover：色を壊さず opacity のみ */
.c-consultation .momo-tab-btn:hover{
  opacity: 0.8;
}
.c-consultation .momo-tab-btn.active:hover{
  opacity: 1;
}

/* ===== before icon filter =====
   どこに :before が付いていても効くように a/span 両方に当てる
*/
.c-consultation .momo-tab-btn.active:before,
.c-consultation .momo-tab-btn.active span:before{
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(220deg) brightness(103%) contrast(104%) !important;
}
.c-consultation .momo-tab-btn:not(.active):before,
.c-consultation .momo-tab-btn:not(.active) span:before{
  filter: brightness(0) saturate(100%) invert(77%) sepia(54%) saturate(1072%) hue-rotate(293deg) brightness(93%) contrast(101%) !important;
}

/* hover時も filter を維持（テーマ側の上書きを遮断） */
.c-consultation .momo-tab-btn.active:hover:before,
.c-consultation .momo-tab-btn.active:hover span:before{
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(220deg) brightness(103%) contrast(104%) !important;
}
.c-consultation .momo-tab-btn:not(.active):hover:before,
.c-consultation .momo-tab-btn:not(.active):hover span:before{
  filter: brightness(0) saturate(100%) invert(77%) sepia(54%) saturate(1072%) hue-rotate(293deg) brightness(93%) contrast(101%) !important;
}









/* ================================================================================
   お知らせ - frontpage
======================================== */

/* === [DEPRECATED MOMO_NEWS_ORIGINAL v1] ============================
   Original momo-news-section styles were removed.
   Replaced by:
   - [NEWS_AUTHORITY_MIN v1] (JS hook only)
   - [C_NEWS_ONLY v2 - spec based] (visual spec source of truth)
=================================================================== */

/* ---- News (authority MIN layer: JS hook only) ----------------------
   JS depends on:
   - .momo-news-tab-btn + .active
   - .momo-news-tab-content + .active
   NOTE:
   - Visual styles are defined in [C_NEWS_ONLY v2 - spec based]
------------------------------------------------------------------- */
.momo-news-section .momo-news-tab-content{ display:none; }
.momo-news-section .momo-news-tab-content.active{ display:block; }








/* ========================================
   フッターリンク
======================================== */

/* ---- Footer links (c-layer) --------------------------------------
   Goal: c-* only. momo-* kept in HTML temporarily for safe rollback.
------------------------------------------------------------------- */

.c-footer-links{
  margin-bottom: 0;
  padding: 80px 20px 60px;
  background-color: #fdfaf4;
}

.c-footer-links__container{
  max-width: 1200px;
  margin: 0 auto;
}

.c-footer-links__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.c-footer-links__btn{
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #62494d;
  padding: 30px 25px;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transition: opacity 0.3s;
}

.c-footer-links__btn:hover{
  opacity: 0.8;
  color: #fff !important;
}

.c-footer-links__btn.arrow-r:after{
  filter: brightness(0) invert(1);
}

.c-footer-links__icon{
  width: 100px;
}

.c-footer-links__menu{
  list-style: none;
  padding: 20px 0 0 0 !important;
  margin: 0;
}

.c-footer-links__menu li{
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

.c-footer-links__menu li::before{
  content: "・";
  position: absolute;
  left: 0;
  color: #333;
}

.c-footer-links__menu a{
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.c-footer-links__menu a:hover{
  color: var(--momo-brand) !important;
}

/* responsive (c-only) */
@media (max-width: 1024px){
  .c-footer-links__btn{
    gap: calc(5px + 10 * (100vw - 768px)/ 256);
    padding: 30px calc(15px + 15 * (100vw - 768px)/ 256);
  }
  .c-footer-links__icon{
    width: calc(50px + 50 * (100vw - 768px)/ 256);
  }
}

@media (max-width: 767px){
  .c-footer-links__grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .c-footer-links__btn{
    gap: calc(5px + 10 * (100vw - 320px)/ 447);
    padding: 30px calc(15px + 15 * (100vw - 320px)/ 447);
  }
  .c-footer-links__icon{
    width: calc(50px + 50 * (100vw - 320px)/ 447);
  }
}


/* ========================================
   フッター
======================================== */
.footer {
    margin-top: 0;
}
.footer.footer-container {
    background-color: #453336 !important;
}
.footer-bottom-logo {
    float: none !important;
    bottom: 0;
    position: relative !important;
}
.footer-bottom-logo a.site-name-text-link:hover {
  background-color: transparent !important;
  opacity: 0.7 !important;
  transition: 0.3s;
}
.footer-bottom-content {
    float: none !important;
    text-align: center !important;
}

.footer-bottom-content .copyright {
    color: #fff !important;
}



/* ================================================================================
   モモについて ページ
======================================== */

/* ページヘッダー */
.momo-page-header {
    background-color: #fef4f7;
    padding: 60px 20px 40px;
    text-align: center;
}

.momo-page-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.momo-page-subtitle {
    font-size: 18px;
    color: #666;
}

/* モモとは（理念） */
.momo-about-mission {
    padding: 80px 20px;
    background-color: #fff;
}

.momo-about-mission-inner {
    max-width: 900px;
    margin: 0 auto;
}

.momo-section-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #eb6e8f;
    text-align: center;
    margin-bottom: 40px;
}

.momo-mission-content p {
    font-size: 18px;
    line-height: 2;
    color: #333;
    margin-bottom: 20px;
}

/* モモの想い */
.momo-philosophy {
    padding: 80px 20px;
    background-color: #fef4f7;
}

.momo-philosophy-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.momo-philosophy-image img {
    width: 100%;
    border-radius: 10px;
}

.momo-philosophy-title {
    font-size: 32px;
    font-weight: 700;
    color: #eb6e8f;
    margin-bottom: 30px;
}

.momo-philosophy-message {
    font-size: 18px;
    line-height: 2;
    color: #333;
    margin-bottom: 30px;
}

.momo-philosophy-text p {
    font-size: 16px;
    line-height: 2;
    color: #333;
}

/* 活動内容 */
.momo-activities {
    padding: 80px 20px;
    background-color: #fff;
}

.momo-activities-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.momo-activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.momo-activity-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.momo-activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.momo-activity-image {
    width: 100%;
    /*height: 200px;*/
    overflow: hidden;
}

.momo-activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.momo-activity-content {
    padding: 30px 20px;
}

.momo-activity-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.momo-activity-description {
    font-size: 16px !important;
    text-align: left;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* 代表者メッセージ */
.momo-message {
    padding: 80px 20px;
    background-color: #fef4f7;
}

.momo-message-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.momo-message-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-top: 60px;
}

.momo-message-photo {
    text-align: center;
}

.momo-message-photo img {
    width: 100%;
    max-width: 240px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.momo-message-role {
    font-size: 14px;
    color: #666;
}

.momo-message-name-text {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.momo-message-title {
    font-size: 24px;
    font-weight: 700;
    color: #eb6e8f;
    margin-bottom: 30px;
}

.momo-message-text p {
    font-size: 16px;
    line-height: 2;
    color: #333;
}

/* 実績 */
.momo-achievements {
    padding: 80px 20px;
    background-color: #eb6e8f;
}

.momo-achievements-inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

.momo-achievement-item {
    text-align: center;
}

.momo-achievement-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.momo-achievement-number span {
    font-size: 24px;
}

.momo-achievement-label {
    font-size: 14px;
    color: #fff;
}

/* 法人概要 */
.momo-organization {
    padding: 80px 20px;
    background-color: #fff;
}

.momo-organization-inner {
    max-width: 900px;
    margin: 0 auto;
}

.momo-organization-table {
    width: 100%;
    margin-top: 60px;
    border-collapse: collapse;
}

.momo-organization-table th,
.momo-organization-table td {
    padding: 20px;
    border-bottom: 1px solid #c8bcc2 !important/*#e0e0e0*/;
    text-align: left;
    vertical-align: top;
}

.momo-organization-table th {
    width: 200px;
    font-weight: 700;
    color: #333;
    background-color: #fff !important/*#fef4f7*/;
}

.momo-organization-table td {
    color: #666;
    line-height: 1.8;
}

/* CTA */
.momo-cta {
    padding: 80px 20px;
    background-color: #fef4f7;
}

.momo-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    margin: 0;
}

.momo-cta-btn {
    width: 50%;
    max-width: 300px;
    padding: 40px 20px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    border-radius: 8px;
    display: block;
}
.momo-cta-btn:hover {
    opacity: 0.7;
}

/*.momo-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.momo-cta-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.momo-cta-text {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.momo-cta-btn-consult:hover .momo-cta-text {
    color: #eb6e8f !important;
}

.momo-cta-btn-support:hover .momo-cta-text {
    color: #eb6e8f !important;
}*/

/* レスポンシブ */
@media (max-width: 1024px) {
    .momo-philosophy-inner {
        grid-template-columns: 1fr;
    }
    
    .momo-activities-grid {
        grid-template-columns: 1fr;
    }
    
    .momo-message-content {
        grid-template-columns: 1fr;
    }
    
    .momo-achievement-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .momo-page-title {
        font-size: 28px;
    }
    
    .momo-section-title,
    .momo-section-subtitle {
        font-size: 24px;
    }
    
    .momo-philosophy-title {
        font-size: 24px;
    }
    
    .momo-cta-buttons {
        grid-template-columns: 1fr;
    }
    
    .momo-organization-table th,
    .momo-organization-table td {
        display: block;
        width: 100%;
    }
    
    .momo-organization-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }
}












/* 
================================================================================
相談するページ 
========================================
*/

/* ページヘッダー */
.momo-consult-header {
    background: linear-gradient(135deg, #fef4f7 0%, #fff 100%);
    padding: 80px 20px 60px;
    text-align: center;
}

.momo-consult-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-consult-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #453336;
    margin-bottom: 20px;
    line-height: 1.4;
}

.momo-consult-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

/* 電話番号セクション */
.momo-consult-phone {
    background: #fff;
    padding: 60px 20px;
}

.momo-consult-phone-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #fef4f7;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(235, 110, 143, 0.1);
}

.momo-consult-phone-label {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.momo-consult-phone .momo-phone-number {
    margin: 20px 0;
}

.momo-consult-phone .momo-phone-number a {
    /*font-size: 2.5rem;
    font-weight: bold;*/
    color: #eb6e8f;
    /*text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;*/
}

.momo-consult-phone-number a:hover {
    transform: scale(1.05);
}

.momo-consult-phone-time {
    font-size: 1rem;
    color: #666;
    margin: 20px 0;
}

.momo-consult-phone-buttons {
    margin: 30px 0 20px;
}

.momo-consult-contact-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #eb6e8f;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
}

.momo-consult-contact-btn:hover {
    background: #d5537a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(235, 110, 143, 0.3);
}

.momo-consult-note {
    margin-top: 20px;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
}

/* 悩みセクション */
.momo-consult-problems {
    background: #fff;
    padding: 80px 20px;
}

.momo-consult-problems-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.momo-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.momo-problem-item {
    background: #fef4f7;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.momo-problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(235, 110, 143, 0.15);
}

.momo-problem-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.momo-problem-text {
    font-size: 1rem;
    color: #453336;
    line-height: 1.6;
}

.momo-consult-assurance {
    text-align: center;
    font-size: 1.2rem;
    color: #eb6e8f;
    font-weight: bold;
    line-height: 1.8;
}

/* 相談の流れ */
.momo-consult-flow {
    background: #fef4f7;
    padding: 80px 20px;
}

.momo-consult-flow-inner {
    max-width: 900px;
    margin: 0 auto;
}

.momo-flow-diagram {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.momo-flow-step {
    text-align: center;
    margin: 20px 0;
}

.momo-flow-circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: #fff;
    /* border: 4px solid #eb6e8f; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #453336;
    box-shadow: 0 4px 15px rgba(235, 110, 143, 0.2);
}

.momo-flow-circle-large {
    width: 300px;
    height: 300px;
    border-radius: 150px;
    background: #eb6e8f;
    border: 4px solid #eb6e8f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 4px 15px rgba(235, 110, 143, 0.3);
    padding: 20px;
}

.momo-flow-desc {
    font-size: 18px;
    color: #333;
}

.momo-flow-desc-large {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.momo-consult-flow .momo-flow-arrow {
    transform: rotate(0deg);
    filter: none;
}

.momo-flow-branches {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.momo-flow-branch {
    text-align: center;
}

.momo-flow-or {
    font-size: 1.2rem;
    color: #666;
    font-weight: bold;
    padding: 10px;
}

.momo-flow-notes {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    border: 3px solid #ee85a1;
    font-size: 16px;
}

.momo-flow-notes li::marker {
    color: #eb6e8f;
}

.momo-flow-notes p {
    margin: 10px 0;
    color: #666;
    line-height: 1.8;
}

.consultation .momo-contact-section {
    padding: 40px 20px;
}

.flow-boxes {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    max-width: 900px;
    margin-bottom: 50px;
    margin: auto;
    gap: 20px;
}
.flow-boxes .flow-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #fff;
    color: #333;
    border-radius: 16px;
}
.flow-boxes .flow-desc {
    padding: 10px 32px 10px 10px;
    font-size: 20px;
    text-align: left;
}
.flow-boxes .flow-desc p {
    margin-top: 1em;
    margin-bottom: 0;
    font-size: 80%;
    line-height: 1.6em;
}

.flow-notes {
    /* background: #fff; */
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    /* border: 3px solid #ee85a1; */
    font-size: 18px;
    text-align: left;
}

.flow-notes li::marker {
    color: #fff;
}

.flow-notes p {
    margin: 10px 0;
    color: #fff;
    line-height: 1.8;
}

/* 子ども担当弁護士 */
.momo-consult-lawyer {
    background: #fff;
    padding: 40px 20px;
}

.momo-consult-lawyer-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-lawyer-content {
    /* background: #fef4f7; */
    padding: 40px;
    border-radius: 15px;
    line-height: 1.8;
    border: 4px dashed #f8e1bc !important;
    box-shadow: 0 0 0 2px #fdf6ea;
}

.momo-lawyer-content p {
    margin: 20px 0;
    color: #453336;
    font-size: 1.05rem;
}

/* 支援内容 */
.momo-support-content {
    background: #fef4f7;
    padding: 40px 20px;
}

.momo-support-content-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.momo-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.momo-support-card {
    background: #fff;
    padding: 40px 24px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.momo-support-card:hover {
    /*transform: translateY(-8px);*/
    box-shadow: 0 8px 30px rgba(235, 110, 143, 0.2);
}

.momo-support-card .inner {
    display: flex;
    flex-direction: column;
}

.momo-support-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-height: 88px;
    /* font-size: 3.5rem; */
    margin-bottom: 20px;
}
.momo-support-icon img {
    width: auto;
    height: 100%;
}

.momo-support-content .momo-support-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #453336;
    margin-bottom: 20px;
    line-height: 1.4;
}
.momo-support-title p {
    margin: 0;
}

.momo-support-desc {
    min-height: 80px;
    font-size: 0.95rem;
    color: #666;
    text-align: left;
    line-height: 1.7;
    margin-bottom: 25px;
}

.momo-support-detail {
    min-height: 150px;
    margin-bottom: 30px;
    padding: 20px;
    background: #fef4f7;
    border-radius: 10px;
    text-align: left;
}

.momo-support-detail p {
    font-size: 0.9rem;
    color: #453336;
    margin: 8px 0;
}

.momo-support-content .momo-btn.momo-btn-pink-outline {
    padding: 12px;
    width: 100%;
    font-size: 100%;
    border-radius: 100px;
    border-width: 3px;
}

/* よくある質問 */
.momo-consult-faq {
    background: #fff;
    padding: 80px 20px;
}

.momo-consult-faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.momo-faq-list {
    margin-top: 50px;
}

.momo-faq-item {
    background: #fef4f7;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #eb6e8f;
}

.momo-faq-q {
    font-size: 1.1rem;
    font-weight: bold;
    color: #453336;
    margin-bottom: 15px;
}

.momo-faq-a {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* 周りの大人へ */
.momo-consult-adults {
    background: #453336;
    padding: 80px 20px;
    color: #fff;
}

.momo-consult-adults-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.momo-adults-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.momo-adults-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.momo-adults-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
}

.momo-adults-phone,
.momo-adults-email {
    margin: 20px 0;
}

.momo-adults-phone a,
.momo-adults-email a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    transition: opacity 0.3s;
}

.momo-adults-phone a:hover,
.momo-adults-email a:hover {
    opacity: 0.8;
}

.momo-adults-time {
    font-size: 1rem;
    margin-top: 20px;
    opacity: 0.9;
}

/* CTA */
.momo-consult-cta {
    background: #fef4f7;
    padding: 80px 20px;
}

.momo-consult-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.momo-consult-cta-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #453336;
    margin-bottom: 40px;
}

.momo-cta-contacts {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.momo-cta-contact {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.momo-cta-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.momo-cta-value a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #eb6e8f;
    text-decoration: none;
    transition: opacity 0.3s;
}

.momo-cta-value a:hover {
    opacity: 0.7;
}

.momo-cta-time {
    font-size: 1rem;
    color: #666;
}

/* レスポンシブ: タブレット */
@media (max-width: 1023px) {
    .momo-support-grid {
        grid-template-columns: 1fr;
    }
    .momo-support-card .inner {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    .momo-support-card .momo-support-title {
        padding: 0;
    }
    .momo-support-card .item {
        display: flex;
        flex-direction: column-reverse;
        flex: 1;
    }
    .momo-support-icon {
        margin: 10px 0 0;
    }
    .momo-support-icon img {
        width: 80px;
        height: auto;
    }
    .momo-support-desc {
        font-size: 16px;
        font-weight: 500;
    }
    .momo-support-content .momo-btn.momo-btn-pink-outline {
        width: auto;
        min-width: 280px;
        font-size: 100%;
    }
}

/* レスポンシブ: スマートフォン */
@media (max-width: 768px) {
    .momo-consult-title {
        font-size: 1.8rem;
    }
    
    .momo-consult-phone-number a {
        font-size: 1.8rem;
    }
    
    .momo-problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .momo-section-title {
        font-size: 1.5rem;
    }
    
    .momo-flow-circle {
        width: 150px;
        height: 150px;
        font-size: 1.1rem;
    }
    
    .momo-flow-circle-large {
        width: 250px;
        height: 150px;
        font-size: 1.1rem;
    }
    
    .momo-flow-branches {
        flex-direction: column;
        gap: 20px;
    }
    
    .momo-cta-contacts {
        flex-direction: column;
    }
    
    .momo-consult-cta-text {
        font-size: 1.3rem;
    }

    .momo-problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .momo-support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .consultation .momo-contact-section {
        padding: calc(20px + 20 * (100vw - 320px)/ 447) calc(10px + 20 * (100vw - 320px)/ 447);
    }
    .flow-boxes .flow-box {
        flex-direction: column;
        width: calc(300px + 224 * (100vw - 320px)/ 447);
        margin: auto;
        padding: 0 calc(10px + 15 * (100vw - 320px)/ 447) calc(15px + 15 * (100vw - 320px)/ 447);
    }
    .flow-boxes .flow-desc {
        padding: 10px calc(5px + 27 * (100vw - 320px)/ 447) 10px calc(5px + 5 * (100vw - 320px)/ 447);
        font-size: 18px;
        text-align: left;
    }
    .momo-support-card .inner {
        flex-direction: column;
    }
    .momo-support-card .item {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .momo-consult-header {
        padding: calc(30px + 30 * (100vw - 320px)/ 180) calc(10px + 10 * (100vw - 320px)/ 180) calc(20px + 20 * (100vw - 320px)/ 180);
    }
    
    .momo-consult-title {
        font-size: 1.5rem;
    }
    
    .momo-consult-phone-inner {
        padding: 30px 20px;
    }
    
    .momo-flow-circle {
        width: 130px;
        height: 130px;
        font-size: 1rem;
    }
    
    .momo-flow-circle-large {
        width: 200px;
        height: 130px;
        font-size: 1rem;
        padding: 15px;
    }
    .momo-flow-box {
        width: 100%;
        min-width: 100%;
        height: 100%;
        min-height: 100%;
    }
}


/* 
========================================
支援するページ CSS
========================================
*/

/* ページヘッダー */
.momo-support-header {
    /*background: linear-gradient(135deg, #fef4f7 0%, #fff 100%);*/
    background: url(img/bg-mv-support.jpg);
    background-position: center top;
    background-attachment: fixed;
    background-size: cover;
    padding: 80px 20px 60px;
    text-align: center;
}

.momo-support-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-support-header .momo-support-title {
    font-size: 40px !important;
    font-weight: bold;
    color: #453336;
    margin-bottom: 10px;
}

.momo-support-subtitle {
    font-size: 1.3rem;
    color: #eb6e8f;
    font-weight: bold;
}

/* 導入文 */
.momo-support-intro {
    background: #fff;
    padding: 60px 20px;
}

.momo-support-intro-inner {
    max-width: 740px;
    margin: 0 auto;
    line-height: 1.9;
    color: #453336;
}

.momo-support-intro-inner p {
    margin: 20px 0;
    font-size: 18px;
}

/* ページ内ナビゲーション */
.momo-support-nav {
    background: #62494d /*#fef4f7*/;
    padding: 40px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.momo-support-nav-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.momo-support-nav-btn {
    padding: 15px 35px;
    background: #fff;
    color: #453336;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
    /*border: 2px solid #eb6e8f;*/
}

.momo-support-nav-btn:hover {
    background: #eb6e8f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(235, 110, 143, 0.3);
}

/* セクション共通 */

.support .support-section {
    margin: 0 auto;
    padding: 60px 0 0;
    text-align: center;
}

.support .support-section .inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

/*.support .support-section .ttl {
    position: relative;
    margin-bottom: 60px;
    padding: 15px 0;
    color: #333;
    font-size: 34px;
    font-weight: 500;
    text-align: center;
}
.support .support-section .ttl:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #eb6e8f;
}*/

.momo-bg-light {
    background: #fef4f7;
}

/* 寄付ブロック */
.momo-donation-block {
    max-width: 1024px;
    margin: 0 auto;
    padding: 40px 20px;
}

.momo-donation-block .subTtl {
    color: #fff;
    font-size: 28px;
}

.momo-donation-subtitle,
.momo-goods-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #eb6e8f;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #eb6e8f;
}

/* タブ */
.momo-two-buttons {
    background: transparent;
}
.tab-1 {
    border-radius: 10px 0 0 0;
    border-right: none;
}
.tab-2 {
    border-radius: 0 10px 0 0;
    border-left: none;
}

/* 会員タイプ */
.momo-membership-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    /*margin-top: 30px;*/
}

.momo-membership-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.momo-membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(235, 110, 143, 0.2);
}

.momo-membership-card h4 {
    font-size: 1.5rem;
    color: #eb6e8f;
    margin-bottom: 20px;
}

.momo-membership-feature {
    color: #666;
    margin: 20px 0;
    line-height: 1.6;
    min-height: 50px;
}

.momo-membership-fees {
    background: #fef4f7;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.momo-membership-fees p {
    margin: 10px 0;
    color: #453336;
}

/* 寄付方法 */
.momo-donation-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.momo-donation-method {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.momo-donation-method h4 {
    font-size: 1.3rem;
    color: #453336;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eb6e8f;
}
.momo-donation-method h5 {
    margin: 0;
    padding: 10px 0 0;
}

.momo-bank-info {
    background: #fef4f7;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.momo-bank-info p {
    margin: 10px 0;
    color: #453336;
}

.momo-account-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #eb6e8f;
    margin: 0 !important;
}

.momo-bank-note {
    margin-top: 20px;
    padding: 20px;
    background: #fff8f0;
    /* border-left: 4px solid #eb6e8f; */
    border-radius: 5px;
    font-size: 90%;
}

.momo-bank-note p {
    margin: 10px 0;
    font-weight: 600;
    color: #453336;
}

.momo-bank-note ul {
    margin: 15px 0;
    padding-left: 25px;
}

.momo-bank-note li {
    margin: 8px 0;
    /* color: #666; */
    text-align: left;
}

/* 物資支援 */
.momo-goods-block {
    margin: 60px 0;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.momo-goods-block:last-child {
    margin-bottom: 0;
}

.momo-goods-block p {
    margin: 15px 0;
    line-height: 1.8;
    color: #453336;
}

.momo-goods-examples {
    background: #fef4f7;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.momo-goods-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 20px;
}

.momo-goods-block .momo-btn {
    margin-top: 25px;
}

.lkc-external-wrap, .lkc-internal-wrap, .lkc-this-wrap {
    max-width: 100%;
    text-align: left;
}

/* モーダル */
    .momo-btn-note {
        display: inline-block;
        border: none;
        font-size: 1rem;
        /*padding: 12px 24px;
        background: #fff8f0;
        color: #453336;
        border: 2px solid #eb6e8f;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s;*/
    }
    
    .momo-btn-note:hover {
        background: #eb6e8f;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(235, 110, 143, 0.3);
    }
    
    /* モーダル背景 */
    .momo-modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.6);
        animation: fadeIn 0.3s;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* モーダルコンテンツ */
    .momo-modal-content {
        background-color: #fff;
        margin: 5% auto;
        padding: 30px;
        border-radius: 15px;
        width: 90%;
        max-width: 600px;
        position: relative;
        animation: slideIn 0.3s;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    }
    
    @keyframes slideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    /* 閉じるボタン */
    .momo-modal-close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        line-height: 20px;
        cursor: pointer;
        transition: color 0.3s;
    }
    
    .momo-modal-close:hover,
    .momo-modal-close:focus {
        color: #eb6e8f;
    }
    
    /* モーダルのヘッダー */
    .momo-modal-content h3 {
        color: #453336;
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 3px solid #eb6e8f;
    }
    
    /* モーダルのボディ */
    .momo-modal-body {
        color: #453336;
        line-height: 1.8;
    }
    
    .momo-modal-body p {
        margin-bottom: 15px;
    }
    
    .momo-modal-body ul {
        list-style: none;
        padding-left: 0;
    }
    
    .momo-modal-body li {
        padding: 10px 0;
        padding-left: 25px;
        position: relative;
        text-align: left;
    }
    
    .momo-modal-body li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #eb6e8f;
        font-weight: bold;
    }
    
    .momo-modal-body small {
        font-size: 0.9rem;
        color: #666;
    }
    
    /* スマホ対応 */
    @media (max-width: 768px) {
        .momo-modal-content {
            width: 95%;
            margin: 10% auto;
            padding: 20px;
        }
        
        .momo-modal-content h3 {
            font-size: 1.2rem;
        }
        
        .momo-btn-note {
            width: 100%;
            text-align: center;
        }
    }

/* ボランティア */
.momo-volunteer-intro {
    font-size: 1.1rem;
    text-align: center;
    margin: 30px 0 40px;
    color: #453336;
    line-height: 1.8;
}

/* CTA */
.momo-support-cta {
    background: #453336;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.momo-support-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-support-cta-text {
    margin-bottom: 40px;
    color: #fff /*#eb6e8f*/;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}

.momo-support-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}



.momo-btn-pink {
    background: #eb6e8f;
    color: #fff;
}

.momo-btn-pink:hover {
    background: #fff;
    color: #eb6e8f;
    box-shadow: 0 4px 15px rgba(235, 110, 143, 0.3);
}

.momo-btn-pink.arrow-r:after {
    filter: brightness(0) invert(1); /* 白 */
}
.momo-btn-pink:hover.arrow-r:after {
    filter: brightness(0) saturate(100%) invert(64%) sepia(27%) saturate(3896%) hue-rotate(304deg) brightness(99%) contrast(86%);
}

/* ボタンスタイル 

.momo-btn-outline {
    background: #fff;
    color: #eb6e8f;
    border: 2px solid #eb6e8f;
}

.momo-btn-outline:hover {
    background: #eb6e8f;
    color: #fff;
}
*/

/* アンカーリンクの停止位置調整（PCのみ） */
@media (min-width: 769px) {
    #donation,
    #goods,
    #volunteer {
        scroll-margin-top: 230px; /* stickyナビの高さ235px + 余白15px */
    }
}

/* レスポンシブ: タブレット */
@media (max-width: 1024px) {
    /*.momo-donation-methods {
        grid-template-columns: 1fr;
    }*/
}

/* レスポンシブ: スマートフォン */
@media (max-width: 768px) {
    .momo-support-title {
        font-size: 1.8rem;
    }

    .momo-support-nav {
        position: relative;
    }
    
    .momo-support-nav-inner {
        flex-direction: column;
        align-items: center;
    }
    
    .momo-support-nav-btn {
        width: 80%;
    }
    
    .momo-support-cta-text {
        font-size: 1.3rem;
    }
    
    .momo-support-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .momo-support-header {
        padding: 60px 20px 40px;
    }
    
     .momo-membership-types,
     .momo-donation-methods {
        grid-template-columns: 1fr;
    }

    .momo-goods-block {
        padding: 25px 20px;
    }
}


/* 
========================================
自立援助ホームについて CSS
========================================
*/

/* ページヘッダー */
.momo-home-header {
    background: linear-gradient(135deg, #eaf4e0 0%, #fff 100%);
    padding: 80px 20px 60px;
    text-align: center;
}

.momo-home-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-home-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #453336;
    margin-bottom: 20px;
}

.momo-home-subtitle {
    font-size: 1.2rem;
    color: #eb6e8f;
    font-weight: bold;
}

/* 概要 */
.momo-home-intro {
    background: #fff;
    padding: 60px 20px;
}

.momo-home-intro-inner {
    max-width: 900px;
    margin: 0 auto;
}

.momo-home-intro-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #453336;
    margin: 25px 0;
}

/* ホームセクション */
.momo-homes-section {
    background: #f7fbf3;
    padding: 80px 20px;
}

.momo-homes-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.momo-homes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 50px;
}

.momo-home-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 400px 1fr;
    transition: all 0.3s;
}

.momo-home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(124, 179, 66, 0.15);
}

.momo-home-image {
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    gap: 10px;
}

.momo-home-image img {
    width: 100%;
    height: auto;
}

.momo-home-content {
    padding: 40px;
}

.momo-home-name {
    margin-bottom: 25px;
    color: #453336;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}

.momo-home-info {
    background: #fffde0;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.momo-home-info p {
    margin: 8px 0;
    color: #453336;
    font-size: 1rem;
}

.momo-home-desc {
    line-height: 1.8;
    color: #666;
    font-size: 1rem;
}

/* 生活イメージ */
.momo-home-life {
    background: #f7fbf3;
    padding: 80px 20px;
}

.momo-home-life-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.momo-life-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.momo-life-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.momo-life-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.15);
}

.momo-life-icon {
    font-size: 3rem;
    margin-top: 15px;
}

.momo-life-icon img {
    opacity: 0.7;
}

.momo-life-item h4 {
    font-size: 1.2rem;
    color: #7cc530;
    margin-bottom: 15px;
}

.momo-life-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* 職員の声 */
.momo-home-voices {
    padding: 80px 20px;
}

.momo-home-voices-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.momo-voices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.momo-voice-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.momo-voice-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.momo-voice-card h4 {
    font-size: 1.3rem;
    color: #453336;
    margin-bottom: 20px;
}

.momo-voice-text {
    line-height: 1.8;
    color: #666;
    text-align: left;
}

/* 入居者の声 */
.momo-home-residents {
    background: #fff;
    padding: 80px 20px;
}

.momo-home-residents-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.momo-residents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.momo-resident-card {
    background: #fffde0;
    padding: 40px;
    border-radius: 15px;
}

.momo-resident-card h4 {
    font-size: 1.2rem;
    color: #453336;
    margin-bottom: 20px;
}

.momo-resident-text {
    line-height: 1.8;
    color: #666;
}

/* 入居までの流れ */
.momo-home-flow {
    padding: 80px 20px;
}

.momo-home-flow-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-flow-diagram {
    margin-top: 50px;
}

.momo-flow-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.momo-flow-step-number {
    display: inline-block;
    padding: 8px 20px;
    background: #eb6e8f;
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.momo-flow-item h4 {
    font-size: 1.3rem;
    color: #453336;
    margin: 15px 0;
}

.momo-flow-item p {
    color: #666;
    line-height: 1.7;
    margin: 15px 0;
}

.momo-flow-arrow {
    font-size: 2rem;
    color: #eb6e8f;
    margin: 15px 0;
}

.momo-flow-final {
    background: linear-gradient(135deg, #eb6e8f 0%, #d5537a 100%);
    color: #fff;
}

.momo-flow-final h4 {
    color: #fff;
}

.momo-flow-final p {
    color: #fff;
}

.momo-flow-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

/* CTA */
.momo-home-cta {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.momo-home-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.momo-home-cta-text {
    font-size: 1.5rem;
    color: #453336;
    font-weight: bold;
    margin-bottom: 30px;
}

/* 共通 */
.momo-bg-light {
    background: #fef4f7;
}

/* レスポンシブ: タブレット */
@media (max-width: 1024px) {
    .momo-home-card {
        grid-template-columns: 1fr;
    }
    
    .momo-home-image {
        min-height: 300px;
    }
    
    .momo-life-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* レスポンシブ: スマートフォン */
@media (max-width: 768px) {
    .momo-home-title {
        font-size: 1.8rem;
    }
    
    .momo-life-grid {
        grid-template-columns: 1fr;
    }
    
    .momo-voices-grid,
    .momo-residents-grid {
        grid-template-columns: 1fr;
    }

    .momo-flow-arrow {
        font-size: calc(1rem + 1 * (100vw - 320px) / 448);
        margin: calc(2px + 13 * (100vw - 320px) / 448);
    }
}

@media (max-width: 500px) {
    .momo-home-header {
        padding: 60px 20px 40px;
    }
    
    .momo-home-content {
        padding: 25px 20px;
    }
}


/* 
========================================
子どもシェルターについて CSS
========================================
*/

/* ページヘッダー */
.momo-shelter-header {
    background: linear-gradient(135deg, #fef4f7 0%, #fff 100%);
    padding: 80px 20px 60px;
    text-align: center;
}

.momo-shelter-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-shelter-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #453336;
    margin-bottom: 20px;
}

.momo-shelter-subtitle {
    font-size: 1.2rem;
    color: #eb6e8f;
    font-weight: bold;
}

/* 概要 */
.momo-shelter-intro {
    background: #fff;
    padding: 60px 20px;
}

.momo-shelter-intro-inner {
    max-width: 900px;
    margin: 0 auto;
}

.momo-shelter-intro-text {
    font-size: 18px;
    line-height: 1.8;
    margin: 25px 0;
}

/* モモの家 */
.momo-shelter-momo {
    background: #fef4f7;
    padding: 80px 20px;
}

.momo-shelter-momo-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.momo-shelter-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
}

.momo-shelter-image {
    display: flex;
    flex-direction: row;
    min-height: 370px;
    background: #f5f5f5;
    gap: 10px;
}

.momo-shelter-image img {
    width: 50%;
    height: auto;
    /*object-fit: cover;*/
}

.momo-shelter-content {
    padding: 50px 40px;
}

.momo-shelter-info-box {
    background: #fef4f7;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.momo-shelter-info-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(235, 110, 143, 0.2);
}

.momo-shelter-info-item:last-child {
    border-bottom: none;
}

.momo-shelter-label {
    font-weight: bold;
    color: #453336;
}

.momo-shelter-value {
    color: #eb6e8f;
    font-weight: bold;
}

.momo-shelter-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #453336;
    margin: 20px 0;
}

.momo-shelter-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 20px;
    padding: 15px;
    background: #fff8f0;
    border-radius: 5px;
}

/* 生活イメージ */
.momo-shelter-life {
    padding: 80px 20px;
}

.momo-shelter-life-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.momo-shelter-life-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.momo-shelter-life-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.momo-shelter-life-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(235, 110, 143, 0.15);
}

.momo-shelter-life-icon {
    font-size: 3rem;
    margin-top: 15px;
}

.momo-shelter-life-item h4 {
    font-size: 1.2rem;
    color: #eb6e8f;
    margin-bottom: 15px;
}

.momo-shelter-life-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* 職員の声 */
.momo-shelter-voices {
    background: #fff;
    padding: 80px 20px;
}

.momo-shelter-voices-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.momo-shelter-voices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.momo-shelter-voice-card {
    background: #f7fbf3;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.momo-voice-header {
    text-align: center;
    margin-bottom: 25px;
}

.momo-voice-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.momo-voice-icon {
    font-size: 3rem;
}

.momo-voice-header h4 {
    font-size: 1.2rem;
    color: #453336;
}

.momo-voice-message {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    line-height: 1.8;
    color: #666;
}

/* 入所までの流れ */
.momo-shelter-flow {
    padding: 80px 20px;
}

.momo-shelter-flow-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-shelter-flow-diagram {
    margin: 50px 0;
}

.momo-shelter-flow-step {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.momo-shelter-step-number {
    display: inline-block;
    padding: 8px 20px;
    background: #eb6e8f;
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.momo-shelter-flow-step h4 {
    font-size: 1.3rem;
    color: #453336;
    margin: 15px 0;
}

.momo-shelter-flow-step p {
    color: #666;
    line-height: 1.7;
    margin: 15px 0;
}

.momo-shelter-note-text {
    font-size: 0.9rem;
    color: #666;
}

.momo-shelter-arrow {
    font-size: 2rem;
    color: #eb6e8f;
    margin: 15px 0;
}

.momo-shelter-flow-final {
    background: linear-gradient(135deg, #eb6e8f 0%, #d5537a 100%);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(235, 110, 143, 0.3);
}

.momo-shelter-flow-final h4 {
    color: #fff;
    font-size: 1.5rem;
}

.momo-shelter-flow-final p {
    color: #fff;
}

.momo-shelter-flow-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.momo-shelter-flow-image {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.momo-shelter-flow-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA */
.momo-shelter-cta {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.momo-shelter-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.momo-shelter-cta-text {
    font-size: 1.5rem;
    color: #453336;
    font-weight: bold;
    margin-bottom: 30px;
}

/* 共通 */
.momo-bg-light {
    background: #fef4f7;
}

/* レスポンシブ: タブレット */
@media (max-width: 1024px) {
    .momo-shelter-life-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* レスポンシブ: スマートフォン */
@media (max-width: 768px) {
    .momo-shelter-title {
        font-size: 1.8rem;
    }
    
    .momo-shelter-life-grid {
        grid-template-columns: 1fr;
    }
    
    .momo-shelter-voices-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .momo-shelter-header {
        padding: 60px 20px 40px;
    }
    
    .momo-shelter-content {
        padding: 30px 20px;
    }

    .momo-shelter-image {
        flex-direction: column;
        min-height: 370px;
        gap: 10px;
    }

    .momo-shelter-image img {
        width: 100%;
        height: auto;
    }
}


/* 
========================================
ボランティアについて CSS
========================================
*/

/* ページヘッダー */
.momo-volunteer-header {
    position: relative;
    overflow: hidden;
}

.momo-volunteer-header-bg {
    background: linear-gradient(135deg, rgba(235, 110, 143, 0.9) 0%, rgba(213, 83, 122, 0.9) 100%),
                url('[upload]/volunteer-hero.jpg') center/cover;
    padding: 120px 20px 100px;
    text-align: center;
    color: #fff;
}

.momo-volunteer-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-volunteer-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.momo-volunteer-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
}

/* キャッチコピー */
.momo-volunteer-catch {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.momo-volunteer-catch-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-volunteer-catchcopy {
    font-size: 2.2rem;
    font-weight: bold;
    color: #eb6e8f;
    line-height: 1.6;
    margin-bottom: 30px;
}

.momo-volunteer-catch-text {
    font-size: 1.1rem;
    color: #453336;
    line-height: 1.8;
}

/* 活動内容 */
.momo-volunteer-activities {
    background: #fef4f7;
    padding: 80px 20px;
}

.momo-volunteer-activities-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.momo-volunteer-intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: #453336;
    margin: 30px 0 50px;
}

.momo-activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.momo-activity-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.momo-activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(235, 110, 143, 0.15);
}

.momo-activity-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.momo-activity-card h3 {
    font-size: 1.3rem;
    color: #453336;
    margin-bottom: 15px;
}

.momo-activity-card p {
    margin-top: auto;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* イメージ写真 */
.momo-volunteer-images {
    padding: 80px 20px;
}

.momo-volunteer-images-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.momo-volunteer-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.momo-volunteer-photo {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.momo-volunteer-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.momo-volunteer-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* 登録の流れ */
.momo-volunteer-flow {
    background: #fff;
    padding: 80px 20px;
}

.momo-volunteer-flow-inner {
    max-width: 800px;
    margin: 0 auto;
}

.momo-flow-content {
    margin-top: 50px;
}

.momo-flow-intro {
    font-size: 1.05rem;
    color: #453336;
    text-align: center;
    line-height: 1.9;
    margin-bottom: 50px;
}

.momo-flow-steps {
    margin: 40px 0;
}

.momo-flow-step-item {
    background: #fef4f7;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.momo-flow-step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #eb6e8f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
}

.momo-flow-step-content h3 {
    font-size: 1.3rem;
    color: #453336;
    margin-bottom: 10px;
}

.momo-flow-step-content p {
    color: #666;
    line-height: 1.7;
}

.momo-flow-arrow-down {
    text-align: center;
    font-size: 2rem;
    color: #eb6e8f;
    margin: 10px 0;
}

.momo-flow-step-final {
    background: linear-gradient(135deg, #eb6e8f 0%, #d5537a 100%);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(235, 110, 143, 0.3);
}

.momo-flow-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.momo-flow-step-final h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.momo-flow-step-final p {
    color: #fff;
    font-size: 1.05rem;
}

.momo-flow-note {
    background: #fff8f0;
    padding: 20px;
    border-radius: 5px;
    margin-top: 40px;
}

.momo-flow-note p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.momo-volunteer-seminar-image {
    margin-top: 50px;
    text-align: center;
}

.momo-volunteer-seminar-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.momo-image-caption {
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

/* CTA */
.momo-volunteer-cta {
    background: #fef4f7;
    padding: 80px 20px;
    text-align: center;
}

.momo-volunteer-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.momo-volunteer-cta-title {
    font-size: 2rem;
    font-weight: bold;
    color: #453336;
    margin-bottom: 25px;
    line-height: 1.5;
}

.momo-volunteer-cta-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.momo-volunteer-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 共通 */
.momo-bg-light {
    background: #fef4f7;
}

/* レスポンシブ: タブレット */
@media (max-width: 1024px) {
    .momo-activities-grid {
        grid-template-columns: 1fr;
    }
    
    .momo-volunteer-photo-grid {
        grid-template-columns: 1fr;
    }
}

/* レスポンシブ: スマートフォン */
@media (max-width: 768px) {
    .momo-volunteer-title {
        font-size: 2rem;
    }
    
    .momo-volunteer-catchcopy {
        font-size: 1.6rem;
    }
    
    .momo-flow-step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .momo-volunteer-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .momo-volunteer-header-bg {
        padding: 80px 20px 60px;
    }
    
    .momo-volunteer-cta-title {
        font-size: 1.5rem;
    }
}



/* 
========================================
法人概要
========================================
*/

.profile .inner {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 20px;
    font-size: 34px !important;
    font-weight: 500 !important;
    color: #333 !important;
    text-align: center;
}
.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 3px;
    transform: translateX(-50%);
    background: #eb6e8f;
}

.sub-section04 .momo-organization-table th {
    width: 8em;
}



/* 
========================================
お知らせ
========================================
/* お知らせページ用スタイル */

/* お知らせアーカイブページのレイアウト調整 */
body.category .content-in,
body.tag .content-in,
body.date .content-in,
body.author .content-in {
    max-width: 100% !important;
    width: 100% !important;
}

body.category .main,
body.tag .main,
body.date .main,
body.author .main,
body.post-type-archive .main {
    max-width: 820px;
    margin: 0 auto 80px auto !important;
    padding: 0 20px;
}

body.category .sidebar,
body.tag .sidebar,
body.date .sidebar,
body.author .sidebar,
    body.post-type-archive .sidebar {
    display: none !important;
}

/* アーカイブページのコンテンツエリア */
body.category #content,
body.tag #content,
body.date #content,
body.author #content {
    /*display: flex;
    justify-content: center;*/
    min-height: calc(100vh - 200px);
}


/* カテゴリ・タグ表示を非表示 */
.entry-categories-tags {
    display: none !important;
}

/* 投稿日メタ情報 */
.post-date-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #888;
}

.post-date-meta i {
    font-size: 12px;
    color: #888;
}

.post-date-meta time {
    font-weight: 500;
}

/* お知らせヘッダー（全幅） */
.news-header {
    background: linear-gradient(135deg, #f8f7f5 0%, #faf9f7 100%);
    border-bottom: 3px solid #62494D;
    margin: 0 0 40px 0;
    padding: 0;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.news-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #62494D;
    font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
}

.news-header-title i {
    font-size: 1.6rem;
    color: #62494D;
}

.news-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #62494D;
    color: #fff !important;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.news-back-btn:hover {
    background: #4a3539;
    transform: translateX(-4px);
    color: #fff !important;
}

.news-back-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.news-back-btn:hover i {
    transform: translateX(4px);
}

/* 投稿下部共通スタイル */
.news-bottom-wrapper {
    max-width: 820px;
    margin: 60px auto 0;
    padding: 0 20px;
}

/* 前後ナビゲーション */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid #f0f0f0;
}

.post-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #faf9f7;
    border: 2px solid #e8e6e3;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-nav-link:hover {
    background: #f5f3f0;
    border-color: #62494D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(98, 73, 77, 0.1);
}

.post-nav-prev {
    text-align: left;
}

.post-nav-next {
    text-align: right;
    justify-content: flex-end;
}

.post-nav-link i {
    font-size: 1.2rem;
    color: #62494D;
    flex-shrink: 0;
}

.post-nav-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.post-nav-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.post-nav-title {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 最新のお知らせ */
.recent-news {
    margin-bottom: 50px;
}

.recent-news-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #62494D;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #62494D;
    font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
}

.recent-news-title i {
    font-size: 1.2rem;
}

.recent-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-news-item {
    border-bottom: 1px solid #e8e6e3;
}

.recent-news-item a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    text-decoration: none;
    transition: background 0.3s ease;
}

.recent-news-item:hover {
    background: #faf9f7;
}

.recent-date {
    flex-shrink: 0;
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
    min-width: 90px;
}

.recent-title {
    flex: 1;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
}

.recent-news-item:hover .recent-title {
    color: #62494D;
}

/* 一覧へ戻るボタン */
.news-list-link {
    text-align: center;
}

.news-list-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #62494D;
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.news-list-btn:hover {
    background: #4a3539;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(98, 73, 77, 0.3);
    color: #fff !important;
}

.news-list-btn i {
    font-size: 1rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .news-header-inner {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .news-header-title {
        font-size: 1.2rem;
    }
    
    .news-header-title i {
        font-size: 1.3rem;
    }
    
    .news-back-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .news-bottom-wrapper {
        padding: 0 15px;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .post-nav-link {
        padding: 15px;
    }
    
    .post-nav-title {
        font-size: 0.9rem;
    }
    
    .recent-news-item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 0;
    }
    
    .recent-date {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .recent-title {
        font-size: 0.9rem;
    }
    
    .news-list-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

/* 投稿ページの下部余白 */
body.single .main,
body.page .main {
    padding-bottom: 40px;
}





/* === [MOVED] NEWS/SNS CSS ==========================================
   Moved to:
   - assets/css/news.css
   - assets/css/sns.css
=================================================================== */




/*===============================================================================================*/
/*=== [SELF REFACTORING]
=================================================================================================*/

/*-----------------------------------------------------------
  共通
-----------------------------------------------------------*/
.header-container,
.c-footer-links,
#footer {
    position: relative;
    z-index: 1;
}
body.page .main {
	padding-bottom: 0;
}
.inner {
    position: relative;
}
.ttl {
    position: relative;
    margin-bottom: 60px;
    padding: 15px 0 !important;
    color: #333 !important;
    font-size: 34px !important;
    font-weight: 500;
    text-align: center;
}
.ttl:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #eb6e8f;
}
.note {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    line-height: 1.8;
}

.quote {
    position: relative;
}
.quote:before,
.quote:after {
    position: absolute;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-size: 40px;
	font-weight: 900;
    line-height: 1;
}
.quote:before {
	content: "\f10d";
    top: 40px;
	left: 0;
}
.quote:after {
	content: "\f10e";
    bottom: 40px;
	right: 0;
}

.post-navigation {
	padding: 0 20px 60px;
}


.arrow-down:after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    bottom: -40px;
    width: 30px;
    height: 17px;
    background-image: url(../../img/i-arrow-down.png);
    background-position: center;
    background-attachment: scroll;
    background-size: contain;
}

.clover:before,
.clover:after {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
    width: 1000px;
    height: 188px;
    background-image: url("./img/bg-clover.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.32;
}


.pos {
	position: relative;
}
.fade-up {
	transition-duration: 1s;
	opacity: 0;
	transform: translate(0, 50px);
}
.fade-visible {
	transition-duration: 0.8s;
	opacity: 0;
	transform: translate(0, 50px);
}
.isAnimate {
	opacity: 1;
	transform: translate(0, 0);
}



@media (max-width: 1024px) {
    .quote:before,
    .quote:after {
        font-size: calc(32px + 8 * (100vw - 768px) / 256);
    }
    .quote:before {
        top: calc(32.001px + 7.999 * (100vw - 768px) / 256);
        left: calc(24.001px - 24 * (100vw - 768px) / 256);
    }
    .quote:after {
        bottom: calc(32.001px + 7.999 * (100vw - 768px) / 256);
        right: calc(24.001px + 24 * (100vw - 768px) / 256);
    }
}


@media (max-width: 768px) {
    .ttl {
        padding-bottom: ;
        font-size: calc(24px + 10 * (100vw - 320px) / 448) !important;
    }
    .ttl:after {
        width: calc(40px + 20 * (100vw - 320px) / 448);
    }
    .quote:before,
    .quote:after {
        font-size: calc(24px + 8 *(100vw - 320px) / 448);
    }
    .quote:before {
        top: calc(14px + 18 * (100vw - 320px) / 448);
        left: calc(14px + 10 * (100vw - 320px) / 448);
    }
    .quote:after {
        bottom: calc(14px + 18 * (100vw - 320px) / 448);
        right: calc(14px + 10 * (100vw - 320px) / 448);
    }
}

/*-----------------------------------------------------------
  CONSULT PHONE
-----------------------------------------------------------*/
.consult-phone {
    --consult-phone-number-color: #eb6e8f;
    --consult-phone-hours-color: #666;
    --consult-phone-label-color: #453336;
    background: #fff;
    padding: 60px 20px;
}
.consult-phone .inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #fef4f7;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(235, 110, 143, 0.1);
}
.consult-phone h2 {
    margin-bottom: 15px;
}
.consult-phone .ttl {
    font-size: 2.5rem;
}
.consult-phone .ttl:after {
    display: none;
}
.consult-phone .phone-number {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: transform 0.3s;
}
.consult-phone .phone-number a {
    text-decoration: none;
}
.consult-phone .phone-hours {
    font-size: 16px;
    margin-bottom: 50px !important;
}
.consult-phone .btwrap {
    margin: 30px 0 20px;
}
.consult-phone .bt {
    display: inline-block;
    padding: 15px 40px;
    background: #eb6e8f;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
}
.consult-phone .bt:hover {
    background: #ee85a1;
    transform: translateY(2px);
    box-shadow: 0 4px 15px rgba(235, 110, 143, 0.3);
    color: #fff;
}

@media (max-width: 768px) {
    .consult-phone .phone-number {
        font-size: calc(32px + 16 * (100vw - 320px) / 448);
    }
    .consult-phone .phone-hours {
        font-size: calc(14px + 2 * (100vw - 320px) / 448);
        margin-bottom: calc(20px + 30 * (100vw - 320px) / 448) !important;
    }
}

@media (max-width: 767px) {
    .consult-phone .ttl {
        font-size: 1.8rem;
    }
}


/*-----------------------------------------------------------
  MAIN VISUAL (PAGE)
-----------------------------------------------------------*/
.mv {
    padding: 80px 20px 60px;
    text-align: center;
}
.mv .inner {
    position: relative;
    margin: 0 auto;
}
.mv h1.ttl {
    position: relative;
    display: inline-block;
    font-size: 2.5rem !important;
    font-weight: 700;
    margin-bottom: 0;
    color: #333;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.24);
	-webkit-text-stroke: 10px #fff;
	text-stroke: 2px #fff;
	paint-order: stroke;
}
.mv h1.ttl:after {
    display: none;
}
.mv .subttl {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
}
.mv .note {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .mv {
        padding: 60px 20px 50px;
    }
    .mv h1.ttl {
        font-size: calc(22px + 18 * (100vw - 320px) / 447) !important;
        /*text-shadow: 0px 0px calc(8px + 12 * (100vw - 320px) / 448) rgba(255, 255, 255, 1);*/
        -webkit-text-stroke: calc(5px + 5 * (100vw - 320px) / 448) #fff;
        text-stroke: calc(5px + 5 * (100vw - 320px) / 448) #fff;
        paint-order: stroke;
        font-weight: bold;
    }
    .mv .subttl {
        font-size: 1.2rem;
    }
}


/*-----------------------------------------------------------
  BTN
-----------------------------------------------------------*/
@media (max-width: 767px) {
    .c-actionRow--mobile .mobile-action-btn,
    .slicknav-actions .slicknav-action-btn {
        padding: 
        calc(8px + 12 * (100vw - 320px) / 448) 
        calc(1px + 39 * (100vw - 320px) / 448) 
        calc(8px + 12 * (100vw - 320px) / 448) 
        calc(24px + 16 * (100vw - 320px) / 448) !important;
        border-radius: 8px !important;
		font-size: calc(16px + 4 * (100vw - 320px) / 448) !important;
    }
}

/*-----------------------------------------------------------
  CARD
-----------------------------------------------------------*/
.card {
    margin: 25px auto;
	padding: 40px;
	border: solid 5px;
	border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
	background: #fff;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}
.card .ttl:after {
    content: "・・・・・";
	bottom: -20px;
	width: auto;
	height: auto;
	color: var(--momo-brand);
	font-size: 30px;
	background: transparent;
}
.card .img-catch {
    text-align: center;
}
.card .imgWrap {
	display: flex;
    flex-wrap: wrap;
	gap: 20px;
	box-sizing: border-box;
	margin-bottom: 40px;
	/* min-height: 370px; */
}
.card .imgWrap img {
	width: calc(50% - 10px);
	border-radius: 16px;
}
.card .content .info-box {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 20px;
	width: fit-content;
	margin: 0 auto 30px;
	padding: 10px 30px;
	border-radius: 15px;
	background: #fef4f7;
	border: solid 5px #bba3a7;
	border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
	background: #fff;
}
.card .content .info-box .item {
	display: flex;
	justify-content: space-between;
	padding: 15px 0;
	/* border-bottom: 1px solid rgba(235, 110, 143, 0.2); */
	font-weight: 500;
}
.card .content .info-box .item .label {
	color: #333;
	padding-right: 0.4em;
}
.card .content .info-box .item .value {
	color: #333;
}

/*-----------------------------------------------------------
  LIFE IMAGE
-----------------------------------------------------------*/
@media (max-width: 768px) {
	.life-image .grid {
		grid-template-columns: repeat(2, 1fr);
		gap: calc(10px + 20 * (100vw - 320px) / 448);
	}
    .life-image .item {
        padding: calc(15px + 15 * (100vw - 320px) / 448);
    }
    .life-image .item h4 {
        margin-bottom: calc(5px + 10 * (100vw - 320px) / 448) !important;
        padding: calc(0.4em + 0.2 * (100vw - 320px) / 448) calc(0.2em + 0.4 * (100vw - 320px) / 448) !important;
        font-size: calc(1.0rem + 0.2 * (100vw - 320px) / 448) !important;
    }
    .life-image .item p {
        margin-bottom: calc(8px + 19.36 * (100vw - 320px) / 448);
    }
    .life-image .icon {
        margin-top: calc(1px + 14 * (100vw - 320px) / 448);
        font-size: initial;
    }
    .life-image .icon img {
        width: calc(56px + 42 * (100vw - 320px) / 448);
    }
}

/*-----------------------------------------------------------
  VOICES
-----------------------------------------------------------*/
.voices .grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 50px;
}
.voices.staff .grid {
	grid-template-columns: 1fr;
}
.voices .header {
    height: auto;
    margin-bottom: 0;
}
.voices .card {
    display: flex;
    padding: 40px;
    border: none;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.voices .card .message {
    padding: 25px;
	border-radius: 10px;
    background: #fff;
    color: #333;
}
.voices.staff .card {
	/*flex-direction: row;*/
}
.voices.residents .card {
    flex-direction: column;
}
.voices.staff .card .avatar {
    margin: 0 20px 0 0;
}

.voices .process-flow-link {
    margin-top: 40px;
    padding: 40px 0 0;
    text-align: center;
}
.voices .process-flow-link .icon {
    position: relative;
    display: block;
    max-width: 56px;
    margin: 0 auto 10px;
}
.voices .process-flow-link .icon img {
    width: 100%;
    display: block;
}

.deco {
    position: absolute;
    display: block;
}
.funway {
    width: 2.4rem !important;
	top: -1rem;
	right: -0.5rem;
}

@media (max-width: 768px) {
    .voices .grid {
    	grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .voices .grid {
		gap: 0;
        margin-top: calc(0.001px + 49.999 * (100vw - 320px) / 447);
	}
    .voices .card {
        padding: calc(20px + 20 * (100vw - 320px)/ 447) calc(10px + 30 * (100vw - 320px)/ 447);
    }
    .voices.staff .card {
        flex-direction: column;
        align-items: center;
    }
    .voices .card .avatar {
        /*margin: 0;*/
    }
    .voices .card .message {
        padding: calc(20px + 5 * (100vw - 320px) / 447) calc(10px + 15 * (100vw - 320px) / 447);
    }
}


/*-----------------------------------------------------------
  FRONT
-----------------------------------------------------------*/
.c-hero__lead,
.c-hero__message p {
    font-size: 34px;
    font-weight: 600;
}
.front .about h2.ttl .inner {
    display: inline-block;
}
.front .about h2.ttl .inner:before,
.front .about h2.ttl .inner:after {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
    width: 1000px;
    height: 188px;
    background-image: url("./img/bg-clover.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.32;
}
.front .about h2.ttl .inner:before {
    left: -1024px;
}
.front .about h2.ttl .inner:after {
    right: -1024px;
}

.front .about .content .inner {
    display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 8%;
    padding: 0 20px;
}
.front .about .txt {
    width: 50%
}
.front .about .txt h3 {
    color: var(--momo-brand) !important;
    font-size: 22px !important;
}
.front .about .txt h3:after {
    display: none;
}
.front .about .imgWrap {
    position: relative;
	width: auto;
	min-width: auto;
	max-width: max-content;
    text-align: center;
}
.front .about .imgWrap img {
    height: auto;
    /*object-fit: none;
    overflow: visible;*/
}

@media (max-width: 1440px) {
    .c-hero__lead,
    .c-hero__message {
        font-size: calc(32px + 2 * (100vw - 1024px) / 426);
    }
}
@media (max-width: 1023px) {
    .c-hero__lead,
    .c-hero__message {
        font-size: calc(30px + 2 * (100vw - 768px) / 255);
    }
    .front .about .content .inner {
        flex-direction: column;
        gap: 20px;
    }
    .front .about .imgWrap img {
        max-width: 340px;
    }
    .front .about .txt {
        width: 100%;
        max-width: 700px;
        margin: auto;
    }
}
@media (max-width: 768px) {
    .front .momo-mv-subtitle,
    .c-hero__lead,
    .c-hero__message p {
        font-size: calc(17px + 13 * (100vw - 320px) / 448);
		margin-bottom: calc(0.1em + 1.7 * (100vw - 320px) / 448) !important;
	}
    .momo-mv-message p,
    .c-hero__message p {
		margin-top: calc(0.1em + 1.7 * (100vw - 320px) / 448) !important;
		margin-bottom: calc(0.1em + 1.7 * (100vw - 320px) / 448) !important;
	}
    .momo-mv-swiper,
    .c-slider[data-js="home-mv"] {
        margin: 0 auto calc(8px + 22 * (100vw - 320px) / 448);
    }
	.front .about h2.ttl {
		margin-bottom: 24px !important;
        font-size: calc(18px + 10 * (100vw - 320px) / 448) !important;
	}
    .front .about h2.ttl .inner:before,
    .front .about h2.ttl .inner:after {
        top: calc(134px + 90 * (100vw - 320px) / 448);
        width: calc(500px + 500 * (100vw - 320px) / 448);
        height: calc(94px + 94 * (100vw - 320px) / 448);
    }
    .front .about h2.ttl .inner:before {
        left: calc(-440px - 526 * (100vw - 320px) / 448);
        -webkit-transform: translateY(-50%) scaleX(-1);
        -ms-transform: translateY(-50%) scaleX(-1);
        transform: translateY(-50%) scaleX(-1);
    }
    .front .about h2.ttl .inner:after {
        right: calc(-440px - 526 * (100vw - 320px) / 448);
    }
    .front .about .txt h3 {
        font-size: calc(18px + 4 * (100vw - 320px) / 448) !important;
    }
    .front .about .imgWrap {
        height: auto;
        margin-bottom: calc(0.001px + 19.999 * (100vw - 320px) / 448);
    }
    .front .about .imgWrap img {
        width: calc(160px + 180 * (100vw - 320px) / 448);
        height: auto;
        object-position: center top;
    }
}
@media (max-width: 499px) {
    .c-three-buttons__grid {
		place-items: center;
	}
    .c-three-buttons__btn {
        width: 60%;
    }
}



/*-----------------------------------------------------------
  PROFILE
-----------------------------------------------------------*/

.profile .organization-section,
.profile .history,
.profile .activities,
.profile .sub-section04 {
    margin-bottom: 80px !important;
}

.profile .history .momo-organization-table th {
    max-width: 7em;
}
.profile .history .momo-organization-table th:nth-child(2) {
    max-width: 5em;
    text-align: right;
}

.profile .activities h3 {
    margin-bottom: 1em;
}

.profile .sub-section04.link .copy {
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
}
.profile .sub-section04.link .link-txt {
    text-align: center;
}
.profile .sub-section04.link .link-txt br {
    display: none;
}

@media (max-width: 768px) {
	.profile .momo-organization-table th,
    .profile .momo-organization-table td {
		display: table-cell;
		width: auto;
	}
    .profile .momo-organization-table th,
    .profile .momo-organization-table td {
	    padding: calc(10px + 10 * (100vw - 320px) / 448);
    }

    .profile .inner,
    .profile .momo-organization-inner {
        padding: 0 20px;
    }
    .profile ol {
        font-size: var(--cocoon-text-size-s);
    }
    .profile .sub-section04.link .link-txt br {
        display: block;
    }
}
@media (max-width: 500px) {

    .profile .history .momo-organization-table th {
        width: 5.4em;
        padding-right: 0;
    }
    .profile .history .momo-organization-table th:nth-child(2) {
        max-width: 2.4em;
        padding-left: 0;
    }
    .profile .sub-section04 .momo-organization-table th {
        width: 6em;
    }
    .profile .sub-section04.link .copy,
    .profile .sub-section04.link .link-txt {
        text-align: left;
    }
    .profile .sub-section04.link .copy br,
    .profile .sub-section04.link .link-txt br {
        display: none;
    }
}