@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #020301;
  --white-color: #fff;
  --white-color02:#fff7f7;
  --gray-color: #898989;
  --primary-color:#ffc6c3;
  --accent-color:#FF8383;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */

body{
  color: var(--black-color);
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
}

/* スマホ版だけスクロールバーを非表示 */
@media screen and (max-width: 1023px) {
  html, body {
    /* Firefox 用 */
    scrollbar-width: none;
    /* IE11 用 */
    -ms-overflow-style: none;
  }

  /* WebKit 系ブラウザ用 */
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
  }
}


/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* ---------- utility ---------- */

@media screen and (min-width: 1024px) {
  .u_lg-dn {
    display: none; /* PCでは改行を消す */
  }
}


/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}


.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 64px 0;
}
@media screen and (min-width: 1080px) {
.l_contents {
  padding: 80px 0;
}
}



/* ==================================== */
/* 01. リセット (ブラウザ既定の余白を消す) */
/* ==================================== */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}

/* ==================================== */
/* 02. Header／ハンバーガーメニュー共通 */
/* ==================================== */
.l_header { 
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 16px;
  margin-bottom: 16px;
  background: var(--white-color);
  z-index: 1000;
  overflow: visible;
}

/* 疑似要素：初期は透明、ホバーでガラス化 */
.l_header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: transparent;
  backdrop-filter: none;
  transition: background 0.3s, backdrop-filter 0.3s;
  pointer-events: none;
  z-index: 0;
}

/* ヘッダー内要素を前面表示 */
.l_header > * {
  position: relative;
  z-index: 1;
}

/* ロゴサイズ (3段階) */
.l_header-logo { width: 100px; }
@media screen and (min-width: 768px) {
  .l_header-logo { width: 130px; }
}
@media screen and (min-width: 1024px) {
  .l_header-logo { width: 160px; }
}

/* ナビ (モバイルドロップダウン) */
.l_header-nav {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  padding: 16px 0;
  background: var(--white-color02);
  border: 1px solid var(--accent-color);
  border-radius: 30px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}
.l_header-nav.is-active {
  display: flex !important;
}
.l_header-nav_list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}
.l_header-nav_item {
  font-size: 16px;
  padding: 16px 0;
  font-weight: bold;
  text-align: center;
}
.l_header-nav_link {
  display: inline-block;
  height: 100%;
  overflow: hidden;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.l_header-nav_link:hover {
  text-decoration: underline dotted 4px var(--accent-color);
}

/* ハンバーガーメニュー (モバイル) */
.m_hamburger {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.m_hamburger-bar {
  position: absolute;
  width: 28px;
  height: 3px;
  background-color: var(--white-color);
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease-in-out;
}
.m_hamburger-bar:nth-child(1) { top: 14px; }
.m_hamburger-bar:nth-child(2) { top: 23px; }
.m_hamburger-bar:nth-child(3) { top: 32px; }

/* ==================================== */
/* 03. Desktop (1024px以上) */
/* ------------------------------------ */
@media screen and (min-width: 1024px) {
  /* 背景透明 → Hover でガラス */
  .l_header {
    background: transparent; /* 常時透明 */
    margin-bottom: 0;
  }
  .l_header:hover::before {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
  }
  /* ナビを常時表示に */
  .l_header-nav {
    display: flex;
    position: static;
    transform: none;
    width: auto;
    padding: 0 16px;
    background: transparent;
    border: none;
    flex-direction: row;
    gap: 32px;
    opacity: 1;
    visibility: visible;
  }
  .l_header-nav_list {
    display: flex;
    gap: 32px;
    margin: 0;
  }
  .l_header-nav_item {
    font-size: 18px;
    padding: 0;
  }
  /* ハンバーガー非表示 */
  .m_hamburger { display: none; }
}

/* ------------------------------------------ *
 * ベース（0～1023px）：ナビ隠し／ハンバーガー表示
 * ------------------------------------------ */
 .l_header-nav {
  display: none !important;
}
.l_header-nav_list {
  display: none !important;
}
.m_hamburger {
  display: block !important;
}

/* ハンバーガーメニューを開いたときは必ずナビを表示 */
.l_header-nav.is-active {
  display: flex    !important;
}
.l_header-nav.is-active .l_header-nav_list {
  display: flex    !important;
}

/* ------------------------------------------ *
 * デスクトップ（1024px以上）：ナビ表示／ハンバーガー隠し
 * ------------------------------------------ */
@media screen and (min-width: 1024px) {
  .l_header-nav {
    display: flex   !important;
    position: static !important;
    transform: none !important;
    width: auto     !important;
    padding: 0 16px !important;
    background: transparent !important;
    border: none    !important;
    flex-direction: row !important;
    gap: 32px       !important;
    opacity: 1      !important;
    visibility: visible !important;
  }
  .l_header-nav_list {
    display: flex !important;
    gap: 32px     !important;
    margin: 0     !important;
  }
  .m_hamburger {
    display: none !important;
  }
}

/* タブレット～スマホ帯(～1023px)のモバイルナビ調整 */
@media screen and (max-width: 1023px) {
  /* 1) 開いたナビ全体を縦並びに */
  .l_header-nav.is-active {
    display: flex         !important;
    flex-direction: column!important;
    align-items: center   !important;
    gap: 12px             !important;
  }

  /* 2) リスト本体も縦並び＆横幅いっぱいに */
  .l_header-nav_list {
    display: flex         !important;
    flex-direction: column!important;
    width: 100%           !important;
    margin: 0             !important;
    padding: 0 16px       !important;
    gap: 12px             !important;
  }

  /* 3) リストアイテムを中央寄せ */
  .l_header-nav_item {
    display: block        !important;
    width: 100%           !important;
    text-align: center    !important;
    padding: 12px 0       !important;
  }
}



/* ---------- フッター全体 ---------- */
.l_footer {
  position: relative;
  text-align: center;
  height: auto;
  padding: 64px 0 24px 0;
  width: 100%;
  background: var(--white-color) url(../img/footer_bg.png) no-repeat center bottom;
  background-size: contain;
}

@media screen and (min-width: 1024px) {
  .l_footer {
    /* フッター全体をピンクに塗りつぶした上に波形を重ね */
    background-color: var(--accent-pink);
    background-image: url(../img/footer_bg.png);
    background-repeat: no-repeat;
    background-size: 100% auto;

    /* 波形を要素の上端ではなく、60px 下から描画する */
    background-position: center 60px;
  }
}


/* --------------------------------------------------
   2. フッター・ロゴエリア
-------------------------------------------------- */
@media screen and (min-width: 375px) {
  .l_footer-logo_wrap {
   margin-bottom: 24px;
   }
}

@media screen and (min-width: 768px) {
  .l_footer-logo_wrap{
    margin-bottom: 32px;
  }
}
.l_footer-logo_img {
  width: 100px;
  height: auto;
}
/* PC版：ロゴサイズを大きく */
@media (min-width: 768px) {
  .l_footer-logo_img {
    width: 150px;
  }
}

/* --------------------------------------------------
   3. フッターコンテンツ（ナビ、SNS、コピーライト）
-------------------------------------------------- */
.l_footer_content {
  max-width: 343px;
  margin: 0 auto;
  margin-top: 24px;
  box-sizing: border-box;
}

@media screen and (min-width: 1080px) {
  .l_footer_content{
    max-width: 1024px;
    margin-top: 32px;
  }  
}

/* --------------------------------------------------
   4. ナビゲーション
-------------------------------------------------- */

.l_footer-nav {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) { 
  .l_footer-nav{
    margin-top: 32px;
    display: flex;
    justify-content:center ;
    align-items: center;
  }
}


.l_footer-nav_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block; /* モバイル：縦並び */
}

@media (min-width: 1024px) {
  .l_footer-nav_list {
    display: flex;            /* 横並びに */
    flex-direction: row;
  }
}

/* 【モバイル】縦並びのときの設定 */
.l_footer-nav_list li {
  margin-bottom: 20px;  /* 各項目の下に10pxの余白 */
}

@media screen and (min-width: 768px) {
  .l_footer-nav_list li {
    margin-bottom: 0;         /* 縦の余白は不要 */
    white-space: nowrap; /* 1文字ずつ改行を防ぐ */
  }
}

@media screen and (min-width: 1024px){
  .l_footer-nav_list li {
    margin-right: 32px;  /* PC幅の時だけ余白 */
  }
}



  .l_footer-nav_list li:last-child {
    margin-right: 0;
  }

.l_footer-nav_list li:last-child {
  margin-bottom: 0;  /* 最後の項目は余白なし */
}

@media screen and (min-width: 768px) {
  .l_footer-nav_list li:last-child {
    margin-right: 0;          /* 最後の項目は右余白なし */
  }
}

.l_footer-nav_item{
  font-size: 14px;
  color: var(--black-color);
}

@media screen and (min-width: 768px) {
  .l_footer-nav_item{
    font-size: 20px;
  }
}

.l_footer-nav_link {
  height: 100%;
  text-decoration: none;
  color: var(--black-color);       
}

.l_footer-nav_link:hover {
  text-decoration:underline dotted 4px var(--accent-color);
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

/* --------------------------------------------------
   5. SNSアイコンエリア
-------------------------------------------------- */
.l_footer-sns_list {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 24px 0;
  
}

@media screen and (min-width: 1080px) {
  .l_footer-sns_list{
    padding: 32px 0;
  }
}

.l_footer-sns_link {
  text-decoration: none;
  display: inline-block;
}

/* アイコンボタン */
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-color);
  transition: background-color 0.3s, opacity 0.3s;
}
.icon-button img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
.icon-button:hover {
  filter: saturate(2.0);
}

/* --------------------------------------------------
   6. コピーライト
-------------------------------------------------- */
.l_footer_copy {
  margin-top: 20px;
}
.l_footer_copy-right {
  font-size: 14px;
  color: var(--black-color);
}


/* ---------- module ---------- */


/* ボタン外側ラッパー */
@media screen and (min-width: 768px) {
  .m_btn-container{
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}



.m_btn-wrap {
  display: inline-block;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .m_btn-wrap {
    margin-top: 40px;
  }
}
/* ボタン本体 */

.m_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color); /* ピンク色 */
  font-weight: bold;
  width: 240px;
  height: 48px;
  border-radius: 50px;
  border: 3px dashed var(--white-color);
  box-shadow: 0 0 0 6px var(--accent-color);
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .m_btn {
    width: 280px;
    height: 64px;
}
}

/* ホバー時：ボタンが下に2px移動し、ベースとのずれが縮小 */
.m_btn:hover {
  transform: translateY(2px);
  filter: saturate(2.0);
  transition: background-color 0.3s;
}

/* クリック時（active）：さらに下に移動して、より押された感じに */
.m_btn:active {
  transform: translateY(4px);
  transition: background-color 0.3s;
}

/* ボタン内部コンテンツ */
.m_btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ボタンテキスト */
.m_btn-txt {
  color: var(--white-color);
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .m_btn-txt {
    font-size: 20px;
  }
}

.m_btn__right-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  line-height: 1;
  position: relative;
  width: 6px;
  height: 6px;
  border: 8px solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}

.m_btn:hover .m_btn__right-arrow {
  transform: translateX(5px); /* ホバー時に右へ5px移動 */
}

.m_btn__right-arrow::before,
.m_btn__right-arrow::after {
  content: '';
  color: var(--accent-color);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 4px 6px;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}





/* セクションタイトル */
.m_section_head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* アイコン・テキストを中央に */
}


/* アイコンをまとめるラッパ */
.m_section_head-icon {
  width: 32px;        /* アイコンの表示サイズ（調整可） */
  height: 32px;
}

@media screen and (min-width: 768px) {
  .m_section_head-icon{
    width: 64px;
    height: 64px;
  }
}

/* アイコン画像本体 */
.m_section_head-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

/* メインタイトル */
.m_section_head_jp {
  font-size: 24px;    /* タイトル文字サイズ */
  font-weight: bold;  /* 太字 */
}

@media screen and (min-width: 1080px) {
  .m_section_head_jp {
    font-size: 32px;  /* タイトルを大きく */
  }
}

/* サブタイトル */
.m_section_head-eng {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em; /* 少し文字間隔を広げるなど調整可 */
  margin-bottom: 24px;
}

@media screen and (min-width: 1080px) {
  .m_section_head-eng {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
/* タイトル説明 */

.m_section_head-desc{
 width: 100%;       /* ブロック自体は中央寄せ */
text-align: left;  
margin: 0 auto;
font-size: 16px;
overflow-wrap: break-word; 
}


@media screen and (min-width: 1024px) {
  .m_section_head-desc{
    font-size: 20px;
  }
}

/* 親要素：アイコンとテキストの横並びコンテナ */
.m_sub-head {
  display: flex;    /* アイコンとテキストを横並び */
  justify-content: center;
  align-items: center;     /* 垂直方向に中央寄せ */
  margin-top: 40px; /* セクション内で間隔を開けたい */
  margin-bottom: 24px; /* 下は少しだけ */
}

@media (min-width: 768px) {
  .m_sub-head {
    margin-top: 64px;
    margin-bottom: 32px;
  }
}

/* アイコン */
.m_sub-head-icon {
  width: 20px;             /* アイコンの幅(モバイル) */
  height: auto;
  margin-right: 8px;       /* テキストとの間隔 */
}
@media (min-width: 768px) {
  .m_sub-head-icon {
    width: 30px;           /* PC表示時にアイコンを少し大きく */
    margin-right: 12px;
  }
}

/* アイコンサイズを小さく */
.m_sub-head-icon__s {
  width: 20px; 
  height: auto;
}

/* 見出しテキスト */
.m_sub-head-txt {
  font-size: 18px;         /* モバイルでの文字サイズ */
  font-weight: bold;
}
@media (min-width: 768px) {
  .m_sub-head-txt {
    font-size: 24px;       /* PC表示時に文字サイズを拡大 */
  }
}


/* バナー全体 */
.m_page-banner {
  background-image: url('../img/page_banner.png'); /* スマホ用画像（同じでもOK） */
  background-size: cover;      /* 画像を要素いっぱいに拡大/縮小 */
  background-position: center; /* 中央寄せ */
  background-repeat: no-repeat;
  height: 180px; /* スマホでの高さ */
  margin-top: 16px;
  position: relative;       /* タイトルの絶対配置用 */ 
}


@media screen and (min-width: 1080px) {
  .m_page-banner {
    height: 300px;              /* 例: 300pxの固定高さ */
  }
}

/* 内側ラッパー */
.m_page-banner_inner {
  /* 中央寄せ + 幅制限を行う場合 */
  max-width: 1200px;
  margin: 0 auto;
  position: relative;         /* タイトルを絶対配置するなら必要 */
  height: 100%;              /* バナーの高さに合わせる */
}

/* タイトル */

.m_page-banner_ttl {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 32px;
  font-weight: bold;
  color: var(--white-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* 文字の可読性アップ */
}

@media screen and (min-width: 1080px) {
  .m_page-banner_ttl {
    font-size: 64px;
    bottom: 20px;
    left: 20px;
  }
  
}

.m_cta {
  position: relative;
  padding: 80px 16px 64px; /* 上に80pxとってラベルのために余裕 */
  margin: 64px auto;
  border: 4px solid var(--primary-color);
  border-radius: 30px;
  box-shadow: 0 0 0 4px var(--accent-color);
  background-color: var(--white-color);
  overflow: visible;
  text-align: center;
}

.m_cta > *:not(.m_cta-bg_overlay) {
  position: relative;
  z-index: 1;              /* テキスト類を最前面に */
}

.m_cta-bg_overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url(../img/cat_bg.png);
  background-repeat: no-repeat;
  background-size: 75%; /* 85% → 70%に控えめに */
  background-position: right top;
  z-index: -1;
  pointer-events: none;
  border-radius: 30px;
}

@media screen and (min-width: 768px) {
  .m_cta-bg_overlay {
    background-size: 26%;
    background-position: center bottom;
  }
}



/* ドット線の枠 */
.m_cta:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 4px dashed var(--accent-color);
  border-radius: 30px;
  z-index: -1;
}

/* ラベル */
.m_cta:after {
  content: 'お問い合わせ';
  position: absolute;
-webkit-text-stroke: 3px var(--white-color);
paint-order: stroke;
  top: -28px;
  left: 24px;
  padding: 8px 16px;
  background: rgb(255, 198, 195, 1);
  background-image: radial-gradient(var(--white-color) 20%, transparent 0);
  background-size: 10px 10px;
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  transform: rotate(-3deg);
  font-size: 20px;
  font-weight: bold;
  color: var(--accent-color);
  box-shadow: 2px 2px 0 0 rgba(255, 198, 195, 1);
  z-index: 1;
}

.m_cta-shop-name{
font-size: 16px;
font-weight: bold;
text-align: center;
letter-spacing: 0.05em;
color: var(--primary-color);
-webkit-text-stroke: 3px var(--black-color);
paint-order: stroke;
background: rgba(255, 255, 255, 0.08);
background-clip: padding-box;
-webkit-backdrop-filter: blur(6px);
backdrop-filter: blur(6px);
}

@media screen and (min-width:768px) {
  .m_cta-shop-name{
    font-size: 32px;
    letter-spacing: 0.1em;
    background: none;
    background-clip: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

.m_cta-shop-info {
  color: var(--black-color);
  padding-top: 24px;
  line-height: 2.4;
  font-weight: bold;
  font-size: 14px;
  width: 290px;
  text-align: left;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  background-clip: padding-box;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

@media screen and (min-width: 768px) {
  .m_cta-shop-info {
    font-size: 24px;
    width: 50%;
    background: none;
    background-clip: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}



/* 親要素をインラインブロックにしておく */
.m_cta-text_box {
  position: relative;
  display: inline-block;   /* ←ここが肝 */
  padding: 32px 24px;
  font-size: 24px;
  font-weight: bold;
}

/* 擬似要素の共通設定 */
.m_cta-text_box::before,
.m_cta-text_box::after {
  content: "";
  position: absolute;
  width: 2px;                         /* 線の太さ */
  background-color: var(--black-color);     /* 文字色と同じ */
  height: 1.2em;                      /* 線の長さ */
  top: 50%;                           /* 中央に寄せて */
  transform-origin: center;
}

/* 左の斜め線 */
.m_cta-text_box::before {
  left: 0;                            /* ボックスの左端 */
  transform: translate(-100%, -50%)   /* 左へ100%・縦は中央に */
             rotate(-30deg);
  /* 文字からの距離を clamp で自動調整 */
  margin-left: clamp(4px, 2vw, 12px);
}

/* 右の斜め線 */
.m_cta-text_box::after {
  right: 0;                           /* ボックスの右端 */
  transform: translate(100%, -50%)    /* 右へ100%・縦は中央に */
             rotate(30deg);
  margin-right: clamp(4px, 2vw, 12px);
}


.m_cta-contact {
  font-size: 14px;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .m_cta-contact {
    font-size: 16px;
  }
}


/* 閉じるボタン */

.m_close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color:var(--white-color);
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  font-weight:bold;
  border-radius: 50px;
  cursor: pointer;
  z-index: 1000;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  pointer-events: all;
}

.m_close-btn:hover {
  transform: translateY(-2px) scale(1.05);
  filter: saturate(2.0);
}

  .m_home-btn {
    position: fixed;
    bottom: 20px;             /* 左下に配置 */
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white-color);
    border: none;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .m_home-btn:hover {      
    transform: translateY(-2px) scale(1.05);  /* 少し上に浮いて、5%大きく */
    filter: saturate(2.0);
  }
  



/* キャプションボックス */
.m_caption_box {
  /* モバイル（デフォルト） */
  width: 100%;
  max-width: 100%;      
  margin: 16px 0;  
  background-color: var(--white-color);
  box-shadow: 0 0 0 4px var(--primary-color),0 0 0 6px var(--accent-color);
  border-radius: 30px;
  padding:16px;

}

@media (min-width: 768px) {
  .m_caption_box {
    /* PC向け */
    margin: 32px 0;  
    padding: 24px;
  }
}
.m_caption_ttl {
  /* モバイル（デフォルト） */
  font-size: 18px;
  margin: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .m_caption_ttl {
    /* PC向け */
    font-size: 24px;
    margin: 24px;
  }
}

.m_caption_contents {
  /* モバイル（デフォルト） */
  display: block;         /* 縦並び */
}

@media (min-width: 768px) {
  .m_caption_contents {
    /* PC向け */
    display: flex;        /* 横並びにする */
    justify-content: space-between;
    align-items: center;
  }
}

.m_caption_list {
  /* モバイル（デフォルト） */
  font-size: 16px;
  list-style: disc;
  margin-left: 20px;      /* 箇条書きのインデント */
  margin-bottom: 16px;    /* 下余白 */
}

@media (min-width: 768px) {
  .m_caption_list {
    /* PC向け */
    font-size: 20px;
    margin-left: 24px;    /* インデント */
    margin-right: 24px;   /* 画像との間隔 */
    margin-bottom: 24px;     /* PCでは不要な下余白を削除 */
  }
}

.m_caption_img {
  /* モバイル（デフォルト） */
  text-align: center;     /* 画像を中央寄せ */
  border-radius: 30px;  
}


.m_caption_img img {
  /* モバイル（デフォルト） */
  width: 100%;            /* 画面幅に合わせて自動調整 */
  height: auto;
  border-radius: 30px;
  max-width: 300px;       /* 画像の最大幅を指定 */
}

.center-wrapper {
  text-align: center;
}

.m_txt-box {
  display: inline-block;  /* inline-blockなら親の text-align: center によって中央配置される */
  width: 100%;
  max-width: 100%;
  padding: 24px;
  background-color: var(--white-color);
  box-shadow: 0 0 0 3px var(--white-color),0 0 0 5px var(--accent-color);
  border:2px dashed var(--accent-color);
  border-radius: 30px;
  margin: 16px 0;

}

@media screen and (min-width: 768px) {
.m_txt-box{
  margin: 32px 0;
}
}

  /* ページネーション */
  .pagination {
    display:inline-block;
    margin: 20px 0;
  }  

  .m_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }


  
  .m_pagination_numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gray-color);
    background-color:var(--white-color);
    color: var(--gray-color);
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  }
  
  .m_pagination_numbers__current {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white-color);
  }
  
  .m_pagination_numbers__between {
    background: none;
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    color: var(--gray-color);
    padding: 0;
    font-weight: normal;
  }
  .m_pagination_numbers__next {
    position: relative;
    color: transparent;
  }
  .m_pagination_numbers__next::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--gray-color);
    border-bottom: 2px solid var(--gray-color);
    transform: rotate(-45deg);
    margin: 0 auto;
  }
   .m_pagination_numbers__current {
    background-color: var(--accent-color); /* アクセントカラー */
    color: var(--white-color);
    cursor: default;
    transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  }
  
  /* 現在のページにホバーした場合、色が暗くなる */
  .m_pagination_numbers:hover {
    background-color: var(--accent-color); 
    filter: saturate(2.0);
    color: var(--white-color);
    border: none;
    transition:color 0.3s ease;
  }
  
  .m_pagination_numbers__next:hover::after {
    border-right-color: var(--white-color);
    border-bottom-color: var(--white-color);
  }
  
  /* 中間の「…」はクリック不可 */
  .m_pagination_numbers__between {
    cursor: default;
    background:none!important;
  }

 
  .m_section_space {
    margin: 64px 0;
    border-top: 1px dashed var(--primary-color);
    border-bottom: 1px dashed var(--white-color);
  }
  
  
  @media screen and (min-width: 1080px) {
    .m_section_space{
      margin: 80px 0;
    }
  }

  

/* ---------- top ---------- */




/* top_intro*/
.top_intro {
  text-align: center;
}

/* カード全体をグリッドで並べる */
.top_intro_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .top_intro_list{
    margin-top: 32px;
  }
}


/* 704px～1055px のあいだだけ背景画像を右側に出す */
@media screen and (min-width: 704px) and (max-width: 1055px) {
  .top_intro_list{
    /* 背景を右寄せ */
    background-image: url('../img/pawpad_bg02.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    /* 背景の大きさ調整 */
    background-size: 35% auto;
  }
}

/* 各カード（アイテム）を内部グリッドでレイアウト */
.top_intro_item {
  display: grid;
  grid-template-rows: auto auto auto;
  row-gap: 12px;
  padding: 16px;
  border: 1px solid var(--accent-color);
  background: var(--white-color);
  border-radius: 30px;
  box-shadow: 4px 4px 0 0 rgba(255, 198, 195, 1);
}

/* 画像ラッパーはカードの幅いっぱいに */
.top_intro_img-wrap {
  width: 100%;
  height: 200px;  /* 必要に応じて調整 */
  border-radius: 30px;
  overflow: hidden;
}

/* 画像自体 */
.top_intro_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* タイトルはグリッドの1行目。幅は100%になり、自然な改行が可能 */
.top_intro_ttl {
  font-size: 18px;
  font-weight: bold;
  background: var(--primary-color);
  padding: 8px;
  border-radius: 30px;
  text-align: center;
  overflow-wrap: break-word;
}

/* 説明文も同様に自動折返し */
.top_intro_desc {
  font-size: 14px;
  color: var(--gray-color);
  padding: auto;
  text-align: center;
  overflow-wrap: break-word;
}

/* 768px以上で説明文サイズアップ */
@media screen and (min-width: 768px) {
  .top_intro_desc {
    font-size: 16px;
  }
}
.top_intro_item-link {
  display: block;
  text-decoration: none;  /* アンダーラインを消す */
  color: inherit;         /* テキストカラーを継承 */
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.top_intro_item-link:hover{
transform: translateY(-2px) scale(1.05);  /* 少し上に浮いて、5%大きく */
}

/*top_concept */
.top_concept {
  position: relative; /* 疑似要素の配置基準 */
  background: var(--white-color);
  z-index: 1;
  text-align: center;
}

/* 下側に配置するぼかし背景 */
.top_concept::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-image: url('../img/watercolor_bg.png');
  background-repeat: no-repeat;  
  background-position: center;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .top_concept::before {
    background-size: 60%;
  }
}

.top_concept_copy {
  margin-top: 16px;
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  color: var(--black-color); /* ピンク */
  text-shadow:
  2px 2px 0 var(--white-color),
  -2px 2px 0 var(--white-color),
  2px -2px 0 var(--white-color),
  -2px -2px 0 var(--white-color),
  0 0 8px rgba(255, 255, 255, 0.5);
  width: 230px;
}


@media screen and (min-width: 768px) {
  .top_concept_copy {
    margin-top: 32px;
    text-align: center;
    font-size: 40px;
    width: 1024px;
  }
}
.top_concept_wrap {
  display: flex;
  flex-direction: column;  /* スマホ向けは縦並び */
  margin-top: 24px;
 justify-content: center;
 align-items: center;
}

@media screen and (min-width: 768px) {
  .top_concept_wrap {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    gap: 40px;  /* 画像とテキスト間の余白 */
  }
}
@media screen and (min-width: 768px) {
  .top_concept_wrap__reverse {
    display:flex ;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
  }
}

.top_concept_img {
  max-width: 343px;
  height:230px;
  flex-shrink: 0;
}
.top_concept_img img {
  width: 100%; height: 100%; object-fit: cover; 
  display: block;
  border-radius: 30px;
}

/* フェードエッジ加工（画像外枠のフェード効果） */
.top_concept_img__fade-edge {
  border-radius: 8px;
  /* WebKit系ブラウザ用 */
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  /* 標準仕様 */
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  mask-repeat: no-repeat;
  mask-size: cover;
}

.top_concept_desc {
  font-size: 16px;
  text-align: left;
  max-width: 343px;
  padding: 24px 0px;
}

@media screen and (min-width: 768px) {
.top_concept_desc{
  font-size: 24px;
  max-width: 1024px;
}
}

/* cats */
.top_cats,
.cats_main,
.cats_prof-detail_main{
  background-image: url(../img/checkpattern_bg.png);
  background-size: 150px 150px;
  background-repeat: repeat;       /* 画像を繰り返して表示 */
  background-position: top left;   /* 左上から開始 */
  width: 100%;
}


/* パネルの見た目 */
.top_cats-prof_link {
  display: block;
  text-decoration: none;
  color: inherit;
}


/* これが“各スライド枠”として動きます */
.top_cats-prof_panel {
  margin: 16px 0;
  border: 1px solid var(--accent-color);
  border-radius: 30px;
  background: var(--white-color);
  box-shadow: 4px 4px 0 rgba(255,198,195,1);
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .top_cats-prof_panel{
  margin: 32px 0;
  }
}


.top_cats-prof_img {
  max-width: 100%;
  width: 100%;
  height: auto;
  padding: 0;
}

.top_cats-prof_balloon {
  width:250px ;
  margin: 0 auto;
  margin-bottom:16px;
  border-radius: 20px;
 background:var(--primary-color);
}

.top_cats-prof_name {
  text-align: center;
  font-weight: bold;
  margin-bottom: 8px;
}

.top_cats-prof_desc {
  font-size: 14px;
  text-align: center;
}


/* ナビゲーションコンテナ */
.top_cats_nav {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10; /* 他の要素より手前に */
  pointer-events: none;
}

/* ボタンだけクリック可能に */
.top_cats_nav button {
  pointer-events: all;
}

.cats_prof_wrap {
 width: 100%;
 margin: 24px auto;
}

@media screen and (min-width: 1080px) {  
.cats_prof_wrap {
margin: 32px auto;
}
}

.cats_prof_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

@media screen and (width: 360px) {
  .cats_prof_list {
    transform: translateX(-8px); 
  }
}

@media screen and (min-width: 411px) and (max-width: 431px) {
  .cats_prof_list {
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
  }
}

@media screen and (min-width: 768px) {
  .cats_prof_list {
    gap: 32px;
   
  }
}

.cats_prof_link {
  display: block;           /* カード全体をクリック可能に */
  text-decoration: none;    /* 下線を消す */
  color: inherit;           /* 親の文字色を継承 */
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.cats_prof_link:hover {
  transform: translateY(-2px) scale(1.05);  /* 少し上に浮いて、5%大きく */
}

.cats_prof_item {
  width: 340px;
  height: auto;
  border: 1px solid var(--accent-color);
  background: var(--white-color);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 30px;
 box-shadow: 4px 4px 0 0 rgba(255, 198, 195, 1)
}



.cats_prof_img {
  width: 280px;
  height: 200px;     
  object-fit: cover;   /* コンテナを埋めるように拡大/切り取り */
  display: block;      /* 余計な隙間をなくす */
  border-radius: 30px;
}

.cats_prof_balloon {
  background-color: var(--primary-color);
  padding: 12px;
  margin-top: 24px;
  border-radius: 30px;
  width: 100%;
}

/* 猫スタッフの名前 */
.cats_prof_name {
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  width: 100%;
  padding: 8px 16px;
}

.cats_prof_name::before {
  content: "";
  position: absolute;
  transform: scaleX(1);
  transform-origin: center;
}

/* 猫スタッフの説明文：マルチライン省略対応 */
  .cats_prof_desc {
    display: block;
    width: 100%;  /* 必要に応じて調整 */
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }  

  .cats_prof_txt {
    text-align: left;
    font-size: 16px;
  }

  @media screen and (min-width: 768px) {
    .cats_prof_txt{
      font-size: 24px;
    }
  }

/* 猫スタッフページ */


/* 中央配置のために margin: 0 auto; を追加 */
.cats_prof-detail_main {
  margin: 0 auto;    /* ← これで中央寄せ */
  height: auto;
}

@media screen and (min-width: 768px) {
  .cats_prof-detail_main{
    margin-bottom: 64px;
  }
}

.cats_prof-detail_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
 
}

@media screen and (min-width: 1080px) {
  .cats_prof-detail_list {
    gap: 32px;
  }
}


/* ベース — 幅:100% のまま、200px〜600px の範囲で調整 */
.cats_prof-detail_img {
  display: block;
  width: 100%;
  max-width: clamp(200px, 80%, 600px);
  height: auto;              /* 高さは自動調整 */
  object-fit: cover;
  margin: 1rem auto;         /* 上下マージン & 中央寄せ */
  border-radius: 30px;
}

/* タブレット以上で最大幅を少し上げる */
@media screen and (min-width: 768px) {
  .cats_prof-detail_img {
    max-width: clamp(300px, 70%, 640px);
  }
}

/* デスクトップ以上でさらに幅を調整 */
@media screen and (min-width: 1024px) {
  .cats_prof-detail_img {
    max-width: clamp(400px, 60%, 800px);
  }
}


/* テキストエリア */
.cats_prof-detail_data {
  padding: 16px;
  background-color: var(--primary-color);
  margin-top: 24px;
  border-radius: 30px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cats_prof-detail_data{
    margin-top: 40px;
    padding: 24px;
  }
}

/* 猫スタッフの名前 */
.cats_prof-detail_name {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .cats_prof-detail_name {
    font-size: 32px;
  }
}

/* 猫スタッフの説明文 */
.cats_prof-detail_desc {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .cats_prof-detail_desc {
    font-size: 24px;
    width: 500px;
    
  }
}

@media screen and (min-width: 1080px) {
  .cats_prof-detail_desc {
    font-size: 24px;
    width: 800px;
    
  }
}
/* top_news */
.top_news,
.news_main,
.news_post-detail_main{
 background-image: url(../img/pawpad_bg01.png);
 background-size: 400px 400px;
 background-repeat: repeat;       /* 画像を繰り返して表示 */
 background-position: top left;   /* 左上から開始 */
 background-attachment: fixed;    /* 必要に応じて固定 */
 width: 100%;
}

.top_news_wrap {
padding: 16px 0;
 
}

@media screen and (min-width: 768px) {
  .top_news_wrap {
    padding: 24px 0;
    display: flex;
    justify-content: center; /* PC版で中央寄せするため */
  }
}

.top_news_list {
  list-style: none;
  display: flex;
  flex-direction: column; /* 縦並び */
  gap: 16px;
   /* PCでピンク枠のボックスに */
  width: 100%;
  max-width: 100%;       /* モバイル時の最大幅 */
  margin: 16px 0;      /* 中央寄せ & 上下20px余白 */
  background-color: var(--white-color02);
  box-shadow: 0 0 0 4px var(--primary-color),0 0 0 6px var(--accent-color);
  border-radius: 30px;
 
}

@media screen and (min-width: 768px) {
.top_news_list {
  gap: 20px;
  padding: 40px;
}
}

.top_news_topic {
  padding: 16px;
  text-align: left;
}

.top_news_topic:not(:last-child) {
  border-bottom: 2px dashed var(--accent-color);  /* 薄いグレーの線 */
  padding-bottom:16px;         
}

.top_news_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.top_news_label {
  display: inline-block;
  width: 88px;
  height: 32px;
  padding: 4px 8px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color:var(--white-color);
  background-color: var(--accent-color); /* NEWS用例。種類に応じて色分け可 */
}

.top_news_date {
  font-size: 14px;
}

.top_news_ttl {
  font-size: 16px;
  margin: 0;
}

/* お知らせリンクのスタイル */
.top_news_link {
  display: block;      
  color: inherit;  
  text-decoration:none ; 
  width: 100%;
  height: 100%;
}

.top_news_link .top_news_ttl {
  text-decoration: underline;
  transition: color 0.3s ease;
}


.top_news_link:hover .top_news_ttl{
  color:var(--accent-color); /* ホバー時の色 */
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease; 
}



.news_post_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
}

@media screen and (width: 360px) {
 .news_post_list {
    transform: translateX(-8px); 
  }
}

@media screen and (min-width: 411px) and (max-width: 431px) {
 .news_post_list {
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
  }
}


@media screen and (min-width: 768px) {
  .news_post_list{
    gap: 32px;
    margin: 32px 0;
  }
}

.news_post_item {
  width: 340px;
  height: auto;
  border: 1px solid var(--accent-color);
  background: var(--white-color);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 30px;
  box-shadow: 4px 4px 0 0 rgba(255, 198, 195, 1);
}

.news_post_item:hover {
  transform: translateY(-2px);
}                                       

.news_post_link {
  width: 320px;
  display: block;
  text-decoration: none;
  color: inherit;
}

.news_post_link:hover{
  opacity: 0.7;
  transition: transform 0.3s ease;
}


/* 画像ラッパー */
.news_post_thumb-wrap {
  width: 320px;
  border-radius: 30px;
  overflow: hidden;
}

.news_post_thumb {
  width: 100%;
  max-width: 320px;    /* 幅を320pxに制限 */
  height: 200px;       /* 高さ固定 */
  object-fit: cover;   /* コンテナを埋めるように表示 */
  padding: 8px;
  display: block;
  border-radius: 30px;
}

/* カード内コンテンツ */
.news_post_content {
padding: 16px 0;
}

.news_post_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}
.news_post_date {
  font-size: 14px;
  color:var(--gray-color);  /* 例：中間グレー */
}

.news_post_cate {
  background-color: var(--accent-color);  /* 例：鮮やかなピンク */
  color: var(--white-color);             /* 白 */
  padding: 4px 8px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
}

.news_post_ttl {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  padding: 16px;
  display: block;
  width: 100%;  /* 必要に応じて調整 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.news_post-detail_item {
  padding: 32px 16px;
  margin: 24px  0;
  display: flex;
  flex-direction: column;
  background-color: var(--white-color);
  box-shadow: 0 0 0 4px var(--white-color),0 0 0 6px var(--accent-color);
  border:2px dashed var(--accent-color);
  border-radius: 30px;
}

@media (min-width: 768px) {
  .news_post-detail_item {
    padding: 40px 24px;
    margin: 32px 0;
  }
}

/* サムネイル画像 ラッパー */
.news_post-detail_thumb-wrap {
  margin-bottom: 40px;
  overflow: hidden;
}

/* サムネイル画像自体 */
.news_post-detail_thumb-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}

@media screen and (min-width: 768px) {
  .news_post-detail_thumb-img{
    width: 60%;
    margin: 0 auto;
  }
}

/* 記事メタ情報全体 */
.news_post-detail_meta {
  font-size: 14px;
  color: var(--gray-color);
  margin-bottom: 16px;
  display: flex;
  justify-content: flex-start; /* 左寄せ */
  gap: 12px; /* 要素の間に余白（任意） */
}

/* メタ情報：日付 */
.news_post-detail_date {
  margin-right: 0; /* gapで管理するなら不要 */
}

/* メタ情報：カテゴリラベル */
.news_post-detail_cat {
  color: var(--white-color);
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color); /* アクセントの枠線 */
  padding: 4px 12px;
  border-radius: 30px; /* 角を丸く */
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
}

/* 記事本文 見出し1 */
.news_post-detail_contents h1 {
  background-color:var(--accent-color);/*カラーコードを入力*/
  box-shadow: 0px 0px 0px 5px var(--accent-color);
  border: dashed 3px var(--white-color);/*線:点線・太さ・色（白）*/
  color:var(--white-color);/*文字色*/
  border-radius: 20px;
  padding-left: 12px;
  font-size: 24px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .news_post-detail_contents h1 { 
    font-size: 32px;
    padding-left: 24px;
  }
}

/* 記事本文 段落 */
.news_post-detail_contents p {
  margin: 16px 0;
}

@media (min-width: 768px) {
  .news_post-detail_contents p {
    margin: 32px 0;
    font-size: 20px;
  }
}

/* 記事本文 見出し2 */
.news_post-detail_contents h2 {
  font-size: 20px;
  margin: 24px 0 12px 0;
  border-bottom: dashed 2px var(--accent-color);
}

@media (min-width: 768px) {
  .news_post-detail_contents h2 {
    font-size: 28px;
  }
}

/* 記事本文 リスト */
.news_post-detail_contents ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .news_post-detail_contents ul{
 font-size: 20px;
  }
}

/* 記事本文 リスト項目 */
.news_post-detail_contents li {
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .news_post-detail_contents li {
    font-size: 20px;
  }
  
}

/* 店舗情報 */

.shop-info,
.shop-info_main{
  background: var(--white-color02);
}


.shop-info_exterior-img {
  margin: 16px 0; /* 説明と画像の間に余白 */
  text-align: center; /* 画像を中央寄せ */
  padding: 8px;
  box-shadow: 0 0 0 4px var(--primary-color),0 0 0 6px var(--accent-color);
  border-radius: 30px;
  background: var(--white-color);
 
}

@media screen and (min-width: 768px) {
  .shop-info_exterior-img {
    margin: 32px 0;  /* 説明と画像の間に余白 */
  }
}

.shop-info_exterior-img img {
  max-width: 100%; /* レスポンシブ対応 */
  height: auto;
  object-fit: cover; 
  border-radius: 30px;
  opacity: 0.8;
}

  .shop-info_detail {
   margin: 40px 0;
  }
  
  @media screen and (min-width: 768px) {
    .shop-info_detail{
     margin: 64px 0;
    }
  }


/* 店舗情報テーブル風コンテナ */
.shop-info_table {
  padding: 16px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--white-color);
  box-shadow: 0 0 0 4px var(--primary-color),0 0 0 6px var(--accent-color);
  border-radius: 30px;         /* 角を丸める */
}

/* PC：横並びに変更 */
@media screen and (min-width: 1024px) {
  .shop-info_table {
    flex-direction: row;
    gap: 40px;
    > div {
      flex: 1;
    }
  }
}


/* グループ見出し（店舗基本情報・事業情報） */
.shop-info_head {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight:bold;
  color: var(--black-color);
  border-bottom: 4px solid var(--accent-color);
  padding-bottom: 4px;
  text-align: center;
}

/* 共通の定義リスト設定 */
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* dt（ラベル）のスタイル */
.shop-info_label {
  background-color: var(--primary-color); /* 柔らかいポップピンク */
  color: var(--black-color);
  text-align: center;
  font-weight: bold;
  border-radius: 30px;
  padding: 8px 16px;
  white-space: nowrap;
  font-size: 14px;
}

/* PC：dt に垂直線と右側余白調整 */
@media screen and (min-width: 768px) {
  .shop-info_label {
    padding-right: 16px;
  }
}

/* dd（値）のスタイル */
.shop-info_value {
  padding: 8px 16px;
  font-size: 14px;
  white-space: nowrap;   /* 折り返しを禁止 */
}

/* PC：dd の左側余白調整 */
@media screen and (min-width: 768px) {
  .shop-info_value {
   padding: 8px 16px;
    border-bottom: 2px solid var(--accent-color);
  }
}

/* 店舗基本情報内の dl のレイアウト */
.shop-info_basic dl {
  display: block;
}

@media screen and (min-width: 768px) {
  .shop-info_basic dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 16px;
    align-items: center;
  }
}

/* 事業情報内の dl のレイアウト */
.shop-info_business dl {
  display: block;
}

@media screen and (min-width: 768px) {
  .shop-info_business dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 16px;
    align-items: center;
  }
}


.shop-info_access iframe {
  width: 100%;  
  height: 240px;  /* お好みの高さに調整 */
  display: block; /* 中央寄せのため */
  margin: 0 auto;
  padding: 8px;
  box-shadow: 0 0 0 4px var(--primary-color),0 0 0 6px var(--accent-color);
  border-radius: 30px;
  background: var(--white-color);
}

@media (min-width: 768px) {
  .shop-info_access iframe {
    height: 600px; /* お好みの高さに調整 */
  }
}

.shop-info_access-txt{
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .shop-info_access-txt{
    font-size: 20px;
  }
}

.shop-info_serv-other{
  margin: 40px 0 64px 0;
}

@media screen and (min-width: 768px) {
  .shop-info_serv-other{
   margin: 64px 0 80px 0; 
  }
}


/* 右のロゴ一覧 */
/* ロゴエリア */
.shop-info_payment-icons {
  display: flex;
  flex-wrap: wrap;
  margin: 12px 0;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.shop-info_payment-icon {
  height: 28px;
  max-height: 28px;
  max-width: 80px;
  object-fit: contain;
}

.guide_main{
  background: var(--white-color02);
}

.guide_flow{
  margin: 40px 0;
}

@media screen and (min-width: 768px) {
  .guide_flow{
    margin: 64px 0;
  }
  
}

.guide_rule{
  margin: 40px 0;
}


@media screen and (min-width: 768px) {
  .guide_rule{
    margin: 64px 0;
  }
}

.guide_rule_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  /* モバイル時の最大幅 */
  max-width: 100%;
}


/* PC(768px以上)：3列表示 */
@media (min-width: 1024px) {
  .guide_rule_list {
    justify-content: space-between; 
    /* 3列にしつつ左右に均等な隙間をとるため space-between */
  }
}

.guide_rule_item {
  width: 100%;
  text-align: center;
  padding: 16px;
}

@media screen and (min-width: 768px) {
  .guide_rule_item {
    /*
      3列にしたい場合、横に並ぶアイテム間の隙間が2つあるため、
      24px × 2 = 48px を引いた残りを3等分。
    */
    width: calc((100% - 48px) / 3);
    padding: 24px;
  }
}
  
.guide_rule_icon {
  width: 165px;
  height: 165px;
  margin-bottom: 12px;
}

.guide_rule_ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.guide_rule_desc {
  font-size: 16px;
  text-align: left;
}


/* タイトル */
.guide_rule_other{
text-align: center;
}

.guide_rule_other-ttl {
  max-width: 100%;
  position: relative; /* 疑似要素の絶対配置に必要 */
  display: inline-block;
  justify-content: center;
  font-size: 20px;
  margin: 20px;
  font-weight: bold;
  z-index: 1;                /* スタッキングコンテキストの作成 */
}

.guide_rule_other-ttl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%; /* ハイライトの太さ */
  border-radius: 8px;
  background-color: var(--accent-color); /* マーカー風の色。変数が定義されているか確認 */
  z-index: -1;
}

/* 箇条書きリスト */
.guide_rule_other-list {
  list-style: disc;          /* “・”で表示 */
  padding-left: 12px;      /* 左インデント */
  line-height: 1.6;          /* 行間を少し広めに */
  font-size: 16px;
  text-align: left;
}

/* リストの各項目 */
.guide_rule_other-list li {
  margin-bottom: 16px;       /* 各項目の下に余白 */
}

/* 最後の項目など、下余白が不要ならnth-last-childで調整可能 */
.guide_rule_other-list li:last-child {
  margin-bottom: 0;
}


.guide_fee-system {
  margin: 40px 0 80px 0;  /* 上:40px, 右:0, 下:100px, 左:0 */
}
@media screen and (min-width: 768px) {
  .guide_fee-system {
    margin: 64px 0 128px 0;
  }
}


.guide_fee-system-3col_cards {
  display: grid;
  grid-template-columns: 1fr;      /* モバイル時: 1列 */
  gap: 24px;                       /* カード間の余白 */
  max-width: 100%;
}


/* PCで3カラム */
@media (min-width: 1024px) {
  .guide_fee-system-3col_cards {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
}

/*******************************************************
 * カード本体 (.guide_fee-system-3col_card)
*******************************************************/
.guide_fee-system-3col_card {
  background-color: var(--white-color);
  box-shadow: 0 0 0 4px var(--primary-color),0 0 0 6px var(--accent-color);
  border-radius: 30px;
  padding: 10px;
  overflow: hidden;             /* 角丸をきれいに見せる */
  text-align: left;            /* カード内の本文は左寄せ */
}

/*******************************************************
 * ピンクのヘッダー部分 (.guide_fee-system-3col_card-head)
*******************************************************/
.guide_fee-system-3col_card-head {
  background-color: var(--accent-color);    /* ピンク背景 */
  border: 1px solid var(--accent-color);
  box-shadow:0 0 0 4px var(--primary-color);
  border-radius: 30px;
  padding: 8px;
  text-align: center;          /* ヘッダー内のテキストを中央寄せ */
}
.guide_fee-system-3col_card-head h3 {
  color: var(--white-color);
  font-weight: bold;
  font-size: 20px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .guide_fee-system-3col_card-head h3{
    font-size: 24px;
  }
}

/*******************************************************
 * カード本文 (.guide_fee-system-3col_card-body)
*******************************************************/
.guide_fee-system-3col_card-body {
  padding: 16px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .guide_fee-system-3col_card-body{
    text-align: left;
  } 
}

.guide_fee-system-3col_price {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
.guide_fee-system-3col_note {
  font-size: 16px;
  margin-bottom: 12px;
}
.guide_fee-system-3col_desc {
  font-size: 14px;
  color:var(--gray-color);
}

/* お問い合わせ・ご予約 */
/* 共通 */
.top_contact-resv {
  /* 元の設定 */
  background-image: url(../img/dotpattern_bg.png);
  background-position:  bottom;
  /* PC時はそのまま */
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .top_contact-resv {
    /* 横に繰り返す */
    background-repeat: repeat-x;
    /* 縦方向を固定pxに、横は自動で */
    background-size: auto 150px;
    /* 必要ならY方向の位置を微調整 */
    background-position: center bottom -20px;
  }
}


.contact-resv_main{
  background: var(--white-color02);
}


.contact-resv_head-desc_tel__pink{
  font-weight: bold;
  color: var(--accent-color);
}

  
/* 個人情報の取り扱い */

.contact-resv_privacy_desc {
  margin-bottom: 24px;
}

.contact-resv_privacy_ttl {
  font-weight: bold;
  margin-bottom: 8px;
}

.contact-resv_privacy_txt {
  border: 1px solid var(--gray-color);
  border-radius: 10px;
  padding: 8px;
  background:var(--white-color);
  max-height: 150px;   /* スクロールできる小窓 */
  overflow-y: auto;
}

/* プライバシーポリシー同意 */
.contact-resv_privacy-agree {
  text-align: center;
}

.contact-resv_privacy-agree_label {
  display: inline-flex;      /* チェックボックスとテキストを横並びに */
  align-items: center;       /* 縦方向の中央揃え */
  justify-content: center;
  color:var(--black-color);
 }   

/* チェックボックスのサイズを24pxに */
.contact-resv_privacy-agree_input {
  width: 24px;
  height: 24px;
  accent-color: var(--accent-color);
  border: 2px solid var(--gray-color);
  appearance: radio;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 12px;         /* チェックボックスと文字の間隔 */
  vertical-align: middle;    /* テキストと水平に揃える */
}

/* 「プライバシーポリシー」の部分だけピンク色＆下線 */
.contact-resv_privacy-agree_txt__pink {
  color: var(--accent-color);            /* ピンク色 */
  font-weight: bold; 
}


/* contact全体ラッパー */
.contact-resv_contact-form-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 30px;
  box-sizing: border-box;
}


/* フォーム全体 */

 /* フォーム全体（スマホ用） */
.contact-resv_contact-form {
  display: flex;
  flex-direction: column;
  /* max-width を削除 */
  margin: 40px auto 0;
}



@media screen and (min-width: 768px) {
  .contact-resv_contact-form {
  margin: 64px auto 0 auto; 
  }
}

/* 項目リスト */
.contact-resv_contact-form_list {
  margin: 0;
  padding: 0;
}

/* 1行 */
.contact-resv_contact-form_row {
  margin-bottom: 24px;
}

/* ラベル見出し */
.contact-resv_contact-form_head {
  font-weight: bold;
  margin-bottom: 8px;
}

/* 項目名 */
.contact-resv_contact-form_item {
  margin-right: 8px;
}

/* 必須表示 */
.contact-resv_contact-form_required {
  color:var(--white-color);
  border: 1px solid var(--accent-color);
  padding: 4px 8px;
  border-radius: 30px;
  background: var(--accent-color);
  font-weight: bold;
}

/* 入力欄の詳細部分 */
.contact-resv_contact-form_detail {
  margin-left: 0;
}

/* テキスト入力欄 */
.contact-resv_contact-form_input {
  width: 100%;
  height: 40px;
  padding: 8px;
  border: 2px solid var(--gray-color);
  background:var(--white-color);
  border-radius: 10px;
  box-sizing: border-box;
}

/* テキストエリア */
.contact-resv_contact-form_txtarea {
  width: 100%;
  max-height: 200px;
  padding: 8px;
  border: 2px solid var(--gray-color);
  background:var(--white-color);
  border-radius: 10px;
  box-sizing: border-box;
  resize: vertical;
 
}
/* チェックボックスグループ全体 */
.contact-resv_contact-form_checkgroup {
  display: flex;
  flex-direction: column;
  gap: 12px; /* 項目同士の間隔を調整 */
  margin-bottom: 16px;
}

/* 各チェックボックス項目 */
.contact-resv_contact-form_checkitem {
  display: flex;
  align-items: center;        /* チェックボックスと文字列を縦方向で揃える */
  background-color: var(--primary-color);  /* ピンクの背景色 (必要に応じて変更) */
  padding: 12px;             /* 内側の余白 */
  border-radius: 10px;        /* 角丸にしたい場合は調整 */
  font-weight: bold; 
}

/* チェックボックス自体のスタイル */
.contact-resv_contact-form_checkitem input[type="checkbox"] {
margin-right: 12px;  /* チェックボックスと文字の間隔 */
 width: 24px;
 height: 24px;
 accent-color: var(--black-color);
 appearance: radio;
 cursor: pointer;
 transition: all 0.3s ease;
}


.contact-resv_resv-form-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 30px;
  box-sizing: border-box;
}

.contact-resv_resv-form {
  display: flex;
  flex-direction: column;
  margin: 40px auto 0;
}

@media screen and (min-width: 768px) {
  .contact-resv_resv-form {
    margin: 64px auto 0;
  }
}

.contact-resv_resv-form_list {
  margin: 0;
  padding: 0;
}

.contact-resv_resv-form_row {
  margin-bottom: 24px;
}

.contact-resv_resv-form_head {
  margin-bottom: 8px;
  font-weight: bold;

}

.contact-resv_resv-form_item {
  margin-right: 8px;
}

.contact-resv_resv-form_required {
  color:var(--white-color);
  border: 1px solid var(--accent-color);
  padding: 4px 8px;
  border-radius: 30px;
  background: var(--accent-color);
  font-weight: bold;
}

.contact-resv_resv-form_any{
  color:var(--white-color);
  border: 1px solid var(--gray-color);
  padding: 4px 8px;
  border-radius: 30px;
  background: var(--gray-color);
  font-weight: bold;
}
/* -------------------------------------------------- */
/*  入力欄（dd内の input, select, textarea）         */
/* -------------------------------------------------- */
.contact-resv_resv-form_detail input[type="text"],
.contact-resv_resv-form_detail input[type="email"],
.contact-resv_resv-form_detail input[type="tel"],
.contact-resv_resv-form_detail input[type="date"],
.contact-resv_resv-form_detail input[type="time"],
.contact-resv_resv-form_detail select,
.contact-resv_resv-form_detail textarea {
  width: 100%;
  height: 40px;
  padding: 8px;
  border: 2px solid var(--gray-color);
  background:var(--white-color);
  border-radius: 10px;
  box-sizing: border-box;
}

.contact-resv_resv-form_detail textarea {
  width: 100%;
  max-height: 150px;
  padding: 8px;
  border: 2px solid var(--gray-color);
  border-radius: 10px;
  box-sizing: border-box; 
}




/* js */

/* ハンバーガーメニュー */

.js_hamburger-bar {
  transition: top 0.3s, transform 0.3s, opacity 0.3s;
}

/* 1番目のバー */
.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
}

/* 2番目のバー：ただ非表示にする */
.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

/* 3番目のバー */
.js_hamburger.is-active .m_hamburger-bar:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-135deg);
}

.js_nav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

@media screen and (min-width: 1080px) {
  .js_nav {
    opacity: 1;
    pointer-events: auto;
  }
}

.js_nav.is-active {
  opacity: 1;
  pointer-events: auto;
}


.js_kv {
  position: relative;
  margin-top: -96px;   /* ヘッダーの高さ分だけ持ち上げる */
  padding-top: 96px;   /* 持ち上げたぶんコンテンツの余白を確保 */
  overflow: hidden;
}


#bokeh-js-kv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}



/* スライドショー全体 */
/* ――― スマホ（縦幅が 767px 以下）のとき ――― */
@media (max-width: 767px){
  .js_kv{
    height: 100vh;
    min-height: 450px;  /* でも 450px を超えない */
  }
}

/* PC は従来通り 100vh で OK */
@media (min-width: 768px){
  .js_kv{
    height: 100vh;
  }
}


/* ▼ スライドショー本体 ------------------------------------- */
.js_slideshow{position:absolute;inset:0;}

.js_kv-slide{position:absolute;inset:0;opacity:0;}

.js_kv-slide img{
  width:100%;height:100%;
  object-fit:cover;        /* ここを cover に戻す */
  object-position:center top;
}

/* ぼかし背景だけを作る疑似要素 ------------------------------- */
.js_kv-slide::before{
  content:"";
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  filter:blur(24px);
  transform:scale(1.2);
  z-index:-1;
}

/* 1 枚ごとに JS で inline‑style を付ける ↓ */


/* ② キャッチコピーを中央に出すボックス */
.js_kv_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  padding: 0 16px;
  max-width: 90%;
  text-align: left;
}



.js_main-copy {
  font-size: 28px;
  font-weight: bold;
  color: var(--accent-color);
  text-shadow:
    1px 1px 0 var(--white-color),
    -1px 1px 0 var(--white-color),
    1px -1px 0 var(--white-color),
    -1px -1px 0 var(--white-color),
    0 0 10px rgba(255,255,255,0.8);
  margin: 0;
  width: 320px;
}
@media screen and (min-width: 1080px) {
  .js_main-copy {
    font-size: 48px;
    width: 1024px;
  }
}

.js_sub-copy {
  font-size: 20px;
  font-weight: bold;
  margin-top: 24px;
  color: var(--primary-color);
  text-shadow:
    1px 1px 0 var(--white-color),
    -1px 1px 0 var(--white-color),
    1px -1px 0 var(--white-color),
    -1px -1px 0 var(--white-color),
    0 0 5px rgba(255,255,255,0.8);
}

@media screen and (min-width: 1080px) {
  .js_sub-copy {
    font-size: 32px;
    margin-top: 40px;
  }
}


/* ===== 初期状態：右外／非表示 ===== */
.js_main-copy,
.js_sub-copy {
  opacity: 0;
  transform: translateX(100%);              /* 右外からスタート */
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* ===== 表示オン：中央／フェードイン＋スライドイン ===== */
.show-copy {
  opacity: 1;
  transform: translateX(0);                 /* 中央にスライド */
}

/* ── トップ猫スタッフのカルーセルだけに効かせる ── */
.js_cats-swiper {
  overflow: visible;   
 margin-top:24px;
 padding-bottom: 24px;
  
}

@media screen and (min-width: 768px){
.js_cats-swiper {
 margin-top:32px;
  padding-bottom: 32px;  
 }
}


.js_cats-swiper .swiper-wrapper {
  /* Flex Gap が効けばこれだけでOK */
  display: flex !important;
  gap: 16px !important;
   margin-left: -16px;
  margin-right: -16px; 
}

.js_cats-swiper .swiper-slide {
   margin-left: 16px;
  margin-right: 16px;
} 

.js_cats-swiper .swiper-slide {
  width: auto;
  max-width: 90%; /* ← 画面幅の85%までに制限 */
  flex-shrink: 0;
}


@media screen and (max-width: 360px) {
  .js_cats-swiper .swiper-slide {
    max-width:100%; 
  }
}


.js_cats-swiper .swiper-slide:first-child {
  /* 最初のスライドだけ余白リセット */
  margin-left: 0;
}

.js_cats-swiper .swiper-slide:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* ボタン本体 */
.js_cats_btn-prev,
.js_cats_btn-next {
  width: 48px;
  height: 48px;
  background-color: var(--accent-color); /* 固定色で変数依存を排除 */
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 
    background-color 0.3s,  /* もし背景色アニメも残すなら */
    transform 0.2s ease,
    box-shadow 0.2s ease;
  opacity: 1 !important; /* 隠れていないことを保証 */
  visibility: visible !important;
}

/* ホバーエフェクト */
/* ホバー時：少し拡大＆シャドウ */
.js_cats_btn-prev:hover,
.js_cats_btn-next:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


/* クリック時：押し込み感 */
.js_cats_btn-prev:active,
.js_cats_btn-next:active {
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* フォーカス時（キーボード操作用） */
.js_cats_btn-prev:focus,
.js_cats_btn-next:focus {
  outline: 2px solid var(--white-color);
  outline-offset: 2px;
}


/* 左矢印 */
.js_cats_btn-prev::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--white-color); /* 固定色 */
}

/* 右矢印 */
.js_cats_btn-next::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid var(--white-color);
}

/* Swiper全体を中央寄せ・幅制限（デスクトップ基準）
.cats_slider-wrapper {
  max-width: 1088px;
  margin: 0 auto;
}

@media screen and (min-width: 1088px) {
  .js_cats-swiper .swiper-slide {
    max-width: none; 
    width: auto;
  }

  .top_cats-prof_panel {
    max-width: none;
    width: 100%;
  }
} */
  .cats_slider-wrapper {
    width: 100vw;      /* 画面いっぱいに広げる */
    max-width: none;   /* 最大幅の制限を外す */
    margin-left: calc(-50vw + 50%); /* はみ出しのために中央から引き伸ばす */
    padding: 0;        /* 余白もゼロにする（好みで調整） */
  }

 
/* PC：3〜4枚並ぶ
@media screen and (min-width: 1024px) {
  .js_cats-swiper .swiper-slide {
    max-width: 280px;
  }
} */

/* タブレット：2枚並ぶ */
@media screen and (max-width: 1023px) {
  .js_cats-swiper .swiper-slide {
    max-width: 45%;
  }
}

/* スマホ：1枚 */
@media screen and (max-width: 480px) {
  .js_cats-swiper .swiper-slide {
    max-width: 85%;
  }
}
