/*
Theme Name: Playful pop koos
Theme URI: https://demodetukau.tech/
Author: KOO'S
Description: Playful pop artスタイルの美容室サイト用WordPressテーマ
Version: 1.0
Text Domain: playful-pop-koos
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    Arial, "Yu Gothic", "ヒラギノ角ゴ ProN W3", sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
}

/* --- カスタムスクロールバー（黄色レール＋ピンクつまみ） --- */

/* Chrome / Edge / Safari */
body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #ffe54b;          /* レールを黄色に */
  border-left: 0;               /* 黒いラインを消す */
}

body::-webkit-scrollbar-thumb {
  background: #ff2e9f;          /* つまみはピンク */
  border-radius: 999px;
  border: 2px solid #000;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #ff2e9f #ffe54b;
}

/* 基本レイアウト */

.site-wrap {
  min-height: 100vh;
  margin: 16px;
  border: 6px solid #000;
  box-shadow: 16px 16px 0 #000;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ヘッダー */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #3ae5ff;
  border-bottom: 3px solid #000;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border: 3px solid #000;
  border-radius: 50%;
  background: #ff2e9f;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  font-family: "Arial", "Helvetica", "sans-serif";
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: brand-pop 4s ease-in-out infinite;
}

.brand-title {
  font-weight: 900;
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  color: #ff2e9f;
  text-shadow: 3px 3px 0 #000;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: #f9fafb;
  opacity: 0.85;
  text-decoration: none;
}

/* ロゴ全体をリンクに */

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-link:link,
.brand-link:visited,
.brand-link:hover,
.brand-link:active {
  text-decoration: none;
  color: inherit;
}

/* ロゴホバー */

.brand-link:hover .brand-logo {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #ffe54b;
}

.brand-link:hover .brand-title {
  transform: translate(-1px, -1px);
}

/* 電話＋予約 */

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 3px solid #000;
  background: #76FF03;
  text-decoration: none;
  color: #111827;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  animation: tel-pulse 3.4s ease-in-out infinite;
}

.header-tel-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #000;
  background: radial-gradient(circle at 30% 30%, #fff 0, #fff 25%, #3ae5ff 60%, #0093c9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.header-tel-number {
  letter-spacing: 0.06em;
}

.header-tel:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #ff2e9f;
  background: #e0fbff;
}

.header-reserve {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 3px solid #000;
  background: #ffe54b;
  text-decoration: none;
  color: #000;
  font-weight: 900;
  font-size: 0.8rem;
  box-shadow: 4px 4px 0 #000;
  letter-spacing: 0.08em;
}

.header-reserve:hover {
  background: #fff7b0;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #3ae5ff;
}

/* ピンクのMENUボタン */

.header-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 3px solid #000;
  background: #ff2e9f;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  box-shadow: 4px 4px 0 #000;
  text-transform: uppercase;
}

.menu-label {
  line-height: 1;
}

.menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.menu-icon span {
  display: block;
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.header-menu-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #ffe54b;
}

/* HERO */

.hero {
  position: relative;
  padding: 80px 24px 40px;
  min-height: 80vh;
  background: linear-gradient(
    135deg,
    #76FF03 0%,
    #B6FF73 30%,
    #E8FFE0 60%,
    #ffffff 90%
  );
  border-bottom: 6px solid #000;
  overflow: hidden;
  background-size: 180% 180%;
  animation: hero-bg-move 14s ease-in-out infinite alternate;
}

/* 小さなドットでPOP感 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#ff80bc 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.07;
}

/* 右下からふわっと色が入る */
.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 46, 159, 0.3), transparent 60%);
  filter: blur(40px);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: #ffe54b;
  border: 3px solid #000;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 #000;
  margin-bottom: 12px;
}

/* STYLE YOUR LIFE */
.hero-title {
  font-size: clamp(2.7rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 0.9;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: -3px 0 #ff2e9f, 0 3px #ff2e9f, 3px 0 #ff2e9f, 0 -3px #ff2e9f,
    6px 6px 0 #000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-lead {
  font-size: 0.95rem;
  border-left: 3px solid #000;
  padding-left: 12px;
  margin-bottom: 16px;
}

/* ヒーローのWEB予約ボタン */

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px 32px;
  border-radius: 999px;
  background: #ff2e9f;
  color: #ffffff;
  border: 4px solid #000;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: none;
  box-shadow: 8px 8px 0 #000;
  cursor: pointer;
  text-decoration: none;
  animation: hero-cta-bounce 2.6s ease-in-out infinite;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-cta:hover {
  background: #ff54b8;
  transform: translate(-3px, -3px) scale(1.03);
  box-shadow: 12px 12px 0 #111;
}

/* サロン写真カードをふわふわ */

.hero-photo-wrap {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}

.hero-layer-cyan,
.hero-layer-magenta {
  position: absolute;
  inset: 6%;
  border-radius: 4px;
  border: 3px solid #000;
}

.hero-layer-cyan {
  background: #3ae5ff;
  transform: rotate(3deg);
}

.hero-layer-magenta {
  background: #ff2e9f;
  transform: rotate(-4deg);
}

.hero-photo-card {
  position: relative;
  background: #fff;
  border-radius: 4px;
  border: 3px solid #000;
  overflow: hidden;
  box-shadow: 10px 10px 0 #000;
  animation: hero-float 6s ease-in-out infinite;
}

.hero-photo-inner {
  aspect-ratio: 4 / 5;
  background: #ffffff;
  position: relative;
}

.hero-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.05);
  transition: transform 0.6s ease;
}

.hero-photo-inner:hover img {
  transform: scale(1.05);
}

.hero-photo-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
  background-size: 5px 5px;
  opacity: 0.08;
}

.hero-badge {
  position: absolute;
  top: -18px;
  right: 8px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffe54b;
  border: 3px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 4px 4px 0 #000;
}

/* マルチテキスト帯 */

.marquee {
  background: #ff2e9f;
  color: #fff;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-block;
  padding: 8px 0;
  animation: marquee 18s linear infinite;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.marquee-inner span {
  padding: 0 24px;
}

/* 共通セクション */

.section {
  padding: 40px 24px 30px;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border: 2px solid #000;
  background: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.section-sub {
  font-size: 0.85rem;
  max-width: 520px;
  margin-bottom: 20px;
}

/* NEWS */

.news-section {
  background: #ffe54b;
  border-bottom: 3px solid #000;
  background-image: radial-gradient(#00000018 2px, transparent 2px);
  background-size: 18px 18px;
}

.news-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 3カラムのNEWSカード */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.news-card {
  background: #fff;
  border: 4px solid #000;
  box-shadow: 6px 6px 0 #000;
  position: relative;
  display: flex;
  flex-direction: column;
}

.news-card-date {
  position: absolute;
  top: -16px;
  left: 12px;
  background: #000;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.news-card-thumb {
  background: #e5e7eb;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    #f3f4f6,
    #f3f4f6 6px,
    #e5e7eb 6px,
    #e5e7eb 12px
  );
}

.news-card-body {
  padding: 14px 16px 10px;
}

.news-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ff2e9f;
  color: #fff;
  margin-bottom: 6px;
}

.news-card-title {
  font-size: 1.0rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.news-card-text {
  font-size: 0.85rem;
  margin: 0;
}

.news-card-more {
  font-size: 0.75rem;
  font-weight: 800;
  text-align: right;
  padding: 0 16px 12px;
}

.news-card-more a {
  border-bottom: 2px solid #000;
  padding-bottom: 2px;
  text-decoration: none;
}

/* MENU セクション */

.menu-section {
  background: #111827;
  color: #fff;
  border-bottom: 3px solid #000;
}

.menu-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 24px;
}

.menu-title {
  font-size: 3rem;
  margin: 0 0 10px;
  color: #ffe54b;
  text-shadow: 4px 4px 0 #ff2e9f;
}

.menu-copy {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.menu-items {
  border-top: 3px solid #fff;
}

.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) auto;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.menu-name-en {
  font-size: 1rem;
  font-weight: 900;
}

.menu-name-ja {
  font-size: 0.8rem;
  color: #d1d5db;
}

.menu-price {
  background: #ffe54b;
  color: #000;
  border: 3px solid #000;
  padding: 4px 10px;
  font-weight: 900;
}

/* MENU ページ用ざっくりカード */

.menu-heading {
  text-align: center;
}

.menu-heading .menu-title {
  margin-bottom: 10px;
}

.menu-featured {
  margin: 24px auto 40px;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu-card {
  background: #ffe04b;
  border: 4px solid #000;
  box-shadow: 6px 6px 0 #3ae5ff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-card-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-card-title-en {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-card-tag {
  font-size: 1.1rem;
  padding: 10px 22px;
  color: #ffe04b;
  background: #ffff;
  border: 2px solid #000;
  box-shadow: 6px 6px 0 #000;
}

.menu-card-price {
  color: #ff1493;
  font-weight: 700;
  font-size: 1.4rem;
  text-shadow: 1px 1px 0 #000;
}

/* メニュー表ボタン */

.menu-link-pop {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  padding: 20px 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2e9f, #ff55c3);
  color: #ffffff;
  border: 4px solid #000;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 8px 8px 0 #111;
  text-decoration: none;
  letter-spacing: 0.16em;
  cursor: pointer;
  overflow: hidden;
  animation: btn-wobble 1.7s ease-in-out infinite alternate;
}

/* SALON セクション */

.salon-strip {
  background: #3ae5ff;
  color: #000;
  border-bottom: 4px solid #000;
  overflow: hidden;
  white-space: nowrap;
}

.salon-strip-inner {
  display: inline-block;
  padding: 8px 24px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: salon-strip-marquee 70s linear infinite;
}

.salon-inner {
  max-width: 960px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 22px;
}

.salon-section {
  background-color: #D6FFB4 !important;
  background-image: radial-gradient(circle, #FFE54B 2.5px, transparent 2.5px) !important;
  background-size: 30px 30px !important;
}

.salon-box {
  border: 4px solid #111;
  background: #ffff;
  box-shadow: 8px 8px 0 #000;
  padding: 18px;
}

.salon-label {
  display: inline-block;
  background: #ff2e9f !important;
  color: #ffffff !important;
  border: 3px solid #000 !important;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: none !important;
}

.salon-name {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 46px;
  color: #ff2e9f !important;
}

.salon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.salon-list li + li {
  margin-top: 4px;
}

.salon-list li {
  color: #ff2e9f !important;
}

.map-placeholder {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  opacity: 0.7;
}

.map-btn {
  background: #ff2e9f;
  color: #fff;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #000;
  font-weight: 900;
}

.map-btn:hover {
  background: #ffe8f5;
  color: #000;
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 #ffe54b;
}

/* CONTACT & SNS */

.salon-contact {
  margin-top: 18px;
}

.contact-label,
.sns-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  color: #000 !important;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 3px solid #000;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 4px 4px 0 #000;
  background: #ffffff;
  color: #000;
  margin-right: 8px;
  transition: transform 0.15s ease,
              box-shadow 0.15s ease,
              background 0.15s ease;
}

.contact-tel {
  background: #ffffff;
}

.contact-reserve {
  background: #ffe54b;
}

.contact-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #ff2e9f;
  background: #fffbe0;
}

.salon-sns {
  margin-top: 18px;
}

.sns-btn {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 3px solid #000;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  margin-right: 8px;
  margin-top: 6px;
  box-shadow: 3px 3px 0 #000;
  color: #fff;
}

.sns-instagram {
  background: #ff2e9f;
}

.sns-line {
  background: #06c755;
}

.sns-x {
  background: #333 !important;
}

.sns-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #ffe54b;
}

/* フッター */

.site-footer {
  background: #ffe54b;
  border-top: 3px solid #000;
  padding: 10px 20px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
}

/* スクロール時フェードイン */

/* ==== スクロール時の POP スライドイン演出 ==== */
.reveal {
  opacity: 0;
  transform: translateX(60px);  /* 右から */
  transition: opacity 0.6s ease,
              transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== 個別投稿・固定ページ 共通レイアウト ===== */

/* MENU 固定ページだけは背景ドットを消す */
.page-template-page-menu .site-main {
  background: transparent !important;
  background-image: none !important;
  padding: 0 !important;
}

/* カード全体 */

.post-single-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.post-single-card {
  position: relative;
  background: #ffffff;
  border: 5px solid #000;
  box-shadow: 10px 10px 0 #111;
  padding: 32px 26px 40px;
}

/* ヘッダー（メタ情報＋H1） */

.post-single-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

/* メタ情報をH1の上に */

.post-single-header .post-meta {
  order: -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
}

/* 日付ラベル */

.post-single-header .post-meta time,
.post-single-header .post-meta .post-date,
.post-single-header .post-meta span:first-child {
  display: inline-block;
  padding: 4px 12px;
  background: #000;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.12em;
}

/* カテゴリ pill */

.post-single-header .post-meta a {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #ff2e9f;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.post-single-header .post-meta a:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #000;
}

/* ===== H1：シンプルな水色ボックス ===== */

.single .post-single-card .entry-title,
.page .post-single-card .entry-title {
  position: relative;
  display: block;
  margin: 0 0 24px;
  padding: 10px 14px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #000;
  background: #3ae5ff;
  border: 3px solid #000;
  box-shadow: 5px 5px 0 #000;
  text-shadow: none;
}

/* 念のため、昔の疑似要素は全部殺しておく */
.single .post-single-card .entry-title::before,
.page .post-single-card .entry-title::before,
.single .post-single-card .entry-title::after,
.page .post-single-card .entry-title::after {
  content: none !important;
}
/* 背景ストライプ */

.single .post-single-card .entry-title::before,
.page .post-single-card .entry-title::before {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  z-index: -1;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(58, 229, 255, 0.8) 0px,
    rgba(58, 229, 255, 0.8) 3px,
    transparent 3px,
    transparent 8px
  );
}

/* 上下ピンクラインだけ */

.single .post-single-card .entry-title::after,
.page .post-single-card .entry-title::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: calc(50% - 21px);
  height: 2px;
  background: #ff2e9f;
  box-shadow: 0 42px 0 #ff2e9f;
  z-index: -1;
}

/* 本文 */

.post-content {
  font-size: 0.95rem;
  line-height: 1.9;
}

/* 本文中の見出し */

/* 本文中の H2：ストライプ帯＋上下ピンク線 */

.post-content h2 {
  position: relative;
  display: inline-block;
  margin-top: 2.4em;
  margin-bottom: 0.6em;
  padding: 6px 10px;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #000;
  background: transparent;
  border: none;
  box-shadow: none;
  text-shadow: none;
  z-index: 1;
}

/* 背景ストライプ（細め） */
.post-content h2::before {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  z-index: -1;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(58, 229, 255, 0.8) 0px,
    rgba(58, 229, 255, 0.8) 3px,
    transparent 3px,
    transparent 8px
  );
}

/* 上下だけ細いピンク線 */
.post-content h2::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: calc(50% - 21px);
  height: 2px;
  background: #ff2e9f;
  box-shadow: 0 42px 0 #ff2e9f; /* 下側の線もまとめて描画 */
  z-index: -1;
}

.post-content h3 {
  margin-top: 2em;
  margin-bottom: 0.4em;
  padding-left: 12px;
  border-left: 4px solid #ff2e9f;
  font-size: 1.1rem;
}

.post-content h4 {
  margin-top: 1.6em;
  margin-bottom: 0.3em;
  font-size: 1rem;
  text-decoration: underline;
}

/* 前後ナビ */

.post-nav {
  max-width: 900px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.post-nav a {
  text-decoration: none;
  border-bottom: 2px solid #000;
}

/* ===== アニメーション ===== */

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes salon-strip-marquee {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

@keyframes tel-pulse {
  0%, 100% {
    box-shadow: 4px 4px 0 #000;
    transform: translateY(0);
  }
  50% {
    box-shadow: 6px 6px 0 #ff2e9f;
    transform: translateY(-1px);
  }
}

@keyframes brand-pop {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-2px) rotate(-3deg); }
  50%      { transform: translateY(1px) rotate(2deg); }
  75%      { transform: translateY(-1px) rotate(-2deg); }
}

@keyframes hero-bg-move {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 50% 100%; }
  100% { background-position: 100% 0%; }
}

@keyframes hero-float {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 10px 10px 0 #000;
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 16px 16px 0 #000;
  }
}

@keyframes hero-cta-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 8px 8px 0 #000;
  }
  40% {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 10px 10px 0 #ffea7a;
  }
  70% {
    transform: translateY(-2px) scale(0.99);
    box-shadow: 7px 7px 0 #000;
  }
}

@keyframes btn-wobble {
  0%   { transform: translateY(0) rotate(-1deg); }
  40%  { transform: translateY(-3px) rotate(1deg); }
  70%  { transform: translateY(0) rotate(-0.5deg); }
  100% { transform: translateY(-2px) rotate(0.8deg); }
}

/* レスポンシブ */

@media (max-width: 960px) {
  .hero-inner,
  .menu-inner,
  .salon-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 72px;
  }

  .header-reserve {
    display: none;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-wrap {
    margin: 8px;
    border-width: 4px;
    box-shadow: 8px 8px 0 #000;
  }

  .site-header {
    padding-inline: 10px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-tel-number {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .menu-title {
    font-size: 2.2rem;
  }

  .site-footer {
    flex-direction: column;
    gap: 4px;
  }

  .reveal {
    transform: translateY(40px) scale(0.97);
  }

  .reveal.visible {
    transform: translateY(0) scale(1);
  }

  .news-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .single .site-main,
  .page .site-main {
    padding: 40px 8px 60px;
  }

  .post-single-card {
    padding: 22px 18px 30px;
    box-shadow: 6px 6px 0 #111;
  }

  .single .post-single-card .entry-title,
  .page .post-single-card .entry-title {
    font-size: 1.6rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .brand-title {
    font-size: 1.5rem;
  }

  .menu-featured {
    gap: 14px;
  }

  .menu-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .menu-card-price {
    align-self: flex-end;
  }

  .menu-card-tag {
    font-size: 1rem;
    padding: 8px 18px;
  }
}
/* ===== フルスクリーン ピンクメニュー ===== */

.nav-overlay {
  position: fixed;
  inset: 0;
  background: #ff2e9f;          /* ピンク背景 */
  color: #fff;
  z-index: 999;
  transform-origin: top center;
  transform: scaleY(0);         /* 閉じている状態 */
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.35s ease;
  pointer-events: none;         /* 閉じている間はクリック不可 */
}

.nav-overlay.is-open {
  transform: scaleY(1);         /* 上からニョキッと広がる */
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* WP の ul/li をリセット */
.nav-overlay .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-overlay .nav-menu li {
  margin: 10px 0;
}

/* メニューの文字 */
.nav-overlay .nav-menu a {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition:
    color 0.2s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* 開いたときに順番にニュッと出てくる */
.nav-overlay.is-open .nav-menu li:nth-child(1) a { 
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.05s;
}
.nav-overlay.is-open .nav-menu li:nth-child(2) a { 
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.10s;
}
.nav-overlay.is-open .nav-menu li:nth-child(3) a { 
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.15s;
}
.nav-overlay.is-open .nav-menu li:nth-child(4) a { 
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.20s;
}
.nav-overlay.is-open .nav-menu li:nth-child(5) a { 
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.25s;
}

/* ホバーで黄色＋ちょい右にスライド */
.nav-overlay .nav-menu a:hover {
  color: #ffe54b;
  transform: translateY(-2px) translateX(6px);
}

/* 閉じるボタン（右上の×） */
.nav-overlay-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #000;
  background: #ffffff;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 4px 4px 0 #000;
}

/* メニュー表示中は背面スクロールを止める */
body.nav-open {
  overflow: hidden;
}

/* スマホで少し小さめに */
@media (max-width: 720px) {
  .nav-overlay .nav-menu a {
    font-size: 2rem;
    letter-spacing: 0.12em;
  }
}
.news-card-title a {
  color: inherit;
  text-decoration: none;
}

.news-card-title a:hover {
  text-decoration: underline;
}
/* ===== フルスクリーン ピンクメニュー ===== */

.nav-overlay {
  position: fixed;
  inset: 0;
  background: #ff2e9f;          /* ピンク背景 */
  color: #fff;
  z-index: 999;
  transform-origin: top center;
  transform: scaleY(0);         /* 閉じている状態 */
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.35s ease;
  pointer-events: none;         /* 閉じている間はクリック不可 */
}

.nav-overlay.is-open {
  transform: scaleY(1);         /* 上からニョキッと広がる */
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* メニューリスト */
.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  margin: 10px 0;
}

.nav-menu a {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition:
    color 0.2s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* 開いたときに順番にニュッと出てくる */
.nav-overlay.is-open .nav-menu a {
  transform: translateY(0);
  opacity: 1;
}
.nav-overlay.is-open .nav-menu li:nth-child(1) a { transition-delay: 0.05s; }
.nav-overlay.is-open .nav-menu li:nth-child(2) a { transition-delay: 0.10s; }
.nav-overlay.is-open .nav-menu li:nth-child(3) a { transition-delay: 0.15s; }
.nav-overlay.is-open .nav-menu li:nth-child(4) a { transition-delay: 0.20s; }
.nav-overlay.is-open .nav-menu li:nth-child(5) a { transition-delay: 0.25s; }
.nav-overlay.is-open .nav-menu li:nth-child(6) a { transition-delay: 0.30s; }

/* ホバーで黄色＋ちょい右にスライド */
.nav-menu a:hover {
  color: #ffe54b;
  transform: translateY(-2px) translateX(6px);
}

/* 閉じるボタン（右上の×） */
.nav-overlay-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #000;
  background: #ffffff;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 4px 4px 0 #000;
}

/* メニュー表示中は背面スクロールを止める */
body.nav-open {
  overflow: hidden;
}

/* スマホで少し小さめに */
@media (max-width: 720px) {
  .nav-menu a {
    font-size: 2rem;
    letter-spacing: 0.12em;
  }
}
/* ================================
   スマホ・PC共通 上書き用（最優先）
   ================================ */

/* --- HEROのWEB予約ボタンを必ずピンクにする --- */
.hero-cta {
  background: #ff2e9f !important;
  color: #ffffff !important;
  border: 4px solid #000 !important;
  box-shadow: 8px 8px 0 #000 !important;
  font-weight: 900 !important;
}

/* --- フルスクリーンMENU（nav-overlay）をちゃんとデザインする --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: #ff2e9f;
  color: #fff;
  z-index: 999;
  transform-origin: top center;
  transform: scaleY(0);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.35s ease;
  pointer-events: none;
}

/* 開いているとき */
.nav-overlay.is-open {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

/* 中身のレイアウト */
.nav-overlay-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* ul / li 全部まとめて装飾（クラス名違っても効くように） */
.nav-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-overlay ul li {
  margin: 10px 0;
}

/* メニューリンク */
.nav-overlay ul li a {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition:
    color 0.2s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* 開いたときにニュッと出てくる */
.nav-overlay.is-open ul li a {
  transform: translateY(0);
  opacity: 1;
}

.nav-overlay.is-open ul li:nth-child(1) a { transition-delay: 0.05s; }
.nav-overlay.is-open ul li:nth-child(2) a { transition-delay: 0.10s; }
.nav-overlay.is-open ul li:nth-child(3) a { transition-delay: 0.15s; }
.nav-overlay.is-open ul li:nth-child(4) a { transition-delay: 0.20s; }
.nav-overlay.is-open ul li:nth-child(5) a { transition-delay: 0.25s; }
.nav-overlay.is-open ul li:nth-child(6) a { transition-delay: 0.30s; }

/* ホバー時：黄色＋ちょい右 */
.nav-overlay ul li a:hover {
  color: #ffe54b;
  transform: translateY(-2px) translateX(6px);
}

/* 閉じるボタン（右上の×） */
.nav-overlay-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #000;
  background: #ffffff;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 4px 4px 0 #000;
}

/* メニュー表示中は背面スクロールを止める */
body.nav-open {
  overflow: hidden;
}

/* スマホ用 */
@media (max-width: 720px) {
  .nav-overlay ul li a {
    font-size: 2rem;
    letter-spacing: 0.12em;
  }
}

/* --- 個別投稿・固定ページ H1：水色ストライプ＋上下ピンク線 --- */
.single .post-single-card .entry-title,
.page .post-single-card .entry-title {
  position: relative !important;
  display: inline-block !important;
  margin: 0 0 24px !important;
  padding: 10px 18px !important;
  font-size: 2rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  color: #000 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  z-index: 1 !important;
}

/* 背景の細めストライプ帯 */
.single .post-single-card .entry-title::before,
.page .post-single-card .entry-title::before {
  content: "" !important;
  position: absolute !important;
  left: -6px !important;
  right: -6px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: 42px !important;
  z-index: -1 !important;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(58, 229, 255, 0.9) 0px,
    rgba(58, 229, 255, 0.9) 3px,
    transparent 3px,
    transparent 8px
  ) !important;
}

/* 上下だけピンク線 */
.single .post-single-card .entry-title::after,
.page .post-single-card .entry-title::after {
  content: "" !important;
  position: absolute !important;
  left: -6px !important;
  right: -6px !important;
  top: calc(50% - 21px) !important;
  height: 2px !important;
  background: #ff2e9f !important;
  box-shadow: 0 42px 0 #ff2e9f !important;
  z-index: -1 !important;
}

/* SP時は少し小さく */
@media (max-width: 720px) {
  .single .post-single-card .entry-title,
  .page .post-single-card .entry-title {
    font-size: 1.6rem !important;
  }
}
/* ============================
   スマホ時のロゴ装飾調整
   ============================ */
@media (max-width: 720px) {
  .brand-logo {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important; /* ← 背景をなくす（画像がある場合はそのまま表示されます） */
    padding: 0 !important;
    width: 42px !important;  /* スマホ向け少し小さめ */
    height: 42px !important;
  }

  /* ハサミアイコンの色調整（必要に応じて） */
  .brand-logo img,
  .brand-logo svg {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
}
/* === スマホ用 電話番号中央寄せ調整 === */
@media (max-width: 768px) {
  .header-tel {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .header-tel-number {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }
}

/* ==== NEWS / MENU カードふわっとPOP ==== */
.news-card,
.menu-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.news-card:hover,
.menu-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 #000;
}
/* ==== POP 背景バリエーション（ランダム切り替え用クラス） ==== */

/* きいろベース（今のトップに近い） */
.body-wall-yellow {
  background-color: #ffe54b;
  background-image: radial-gradient(#f2c532 2px, transparent 2px);
  background-size: 18px 18px;
}

/* みずいろベース */
.body-wall-cyan {
  background-color: #3ae5ff;
  background-image: radial-gradient(#00c3e6 2px, transparent 2px);
  background-size: 18px 18px;
}

/* ほんのりピンクベース */
.body-wall-pink {
  background-color: #ffd1ec;
  background-image: radial-gradient(#ff80bc 2px, transparent 2px);
  background-size: 18px 18px;
}
/* ===== ランダム背景用・ベース ===== */
.hero,
.single .site-main,
.page .site-main {
  background: #ffe54b;
  background-image: radial-gradient(#f2c532 2px, transparent 2px);
  background-size: 18px 18px;
}

/* ===== ランダム背景パターン ===== */

/* 単色 */
.pop-bg-1 {
  background: #3ae5ff !important;
  background-image: none !important;
}

.pop-bg-2 {
  background: #ffe54b !important;
  background-image: none !important;
}

.pop-bg-3 {
  background: #ff99d6 !important;
  background-image: none !important;
}

/* グラデーション */
.pop-bg-4 {
  background: linear-gradient(135deg, #3ae5ff, #ffe54b) !important;
  background-image: none !important;
}

/* グラデーション＋ドットその1 */
.pop-bg-5 {
  background:
    radial-gradient(#f2c532 2px, transparent 2px),
    linear-gradient(135deg, #3ae5ff, #ffe54b) !important;
  background-size: 18px 18px, auto !important;
}

/* グラデーション＋ドットその2 */
.pop-bg-6 {
  background:
    radial-gradient(#ffffff33 1.5px, transparent 1.5px),
    linear-gradient(135deg, #ff99d6, #ffe54b) !important;
  background-size: 18px 18px, auto !important;
}
.menu-link-pop .menu-text {
  display: block;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}
/* ===== H1：シンプルな水色ボックス 強制上書き ===== */

.single .post-single-card .entry-title,
.page .post-single-card .entry-title {
  position: relative !important;
  display: block !important;
  margin: 0 0 24px !important;
  padding: 10px 14px !important;
  font-size: 2rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  color: #000 !important;
  background: #3ae5ff !important;
  border: 3px solid #000 !important;
  box-shadow: 5px 5px 0 #000 !important;
  text-shadow: none !important;
}

/* 昔のストライプ用 ::before / ::after を完全に殺す */
.single .post-single-card .entry-title::before,
.single .post-single-card .entry-title::after,
.page .post-single-card .entry-title::before,
.page .post-single-card .entry-title::after {
  content: none !important;
}
/* ===== ボックス内の黄色文字 → #00AAEE に変更 ===== */
.menu-card-price {
  color: #00AAEE !important; /* ← 指定色に変更 */
  font-weight: 900;
  letter-spacing: 0.05em;
}

/* 必要に応じ、英語タイトルなど黄色寄りの箇所も同様に変更 */
.menu-card-title-en {
  color: #00AAEE !important;
}

/* 念のため、他に黄色が使われている可能性がある場合 */
.menu-card * {
  color: #00AAEE;
}
/* ===== メニュー表はこちら（ピンクの丸ボタン）の影を白にする ===== */

.menu-link-pop {
  box-shadow: 8px 8px 0 #ffffff !important;
}

.menu-link-pop:hover {
  box-shadow: 10px 10px 0 #ffffff !important;
}
/* ===== メニュー表はこちら ボタンを可愛くリセット ===== */

/* 本体デザインを全部ここで固定 */
.menu-link-pop {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 20px 40px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, ##FFBBDD, ##FFBBDD) !important; /* ピンクグラデ */
  color: #ffffff !important;
  border: 4px solid #000 !important;
  font-size: 1.4rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.16em !important;
  text-decoration: none !important;
  cursor: pointer !important;

  /* 影だけ白にする */
  box-shadow: 0 10px 0 #00EAEE !important;
}

/* さっきの ::before / ::after を完全無効化 */
.menu-link-pop::before,
.menu-link-pop::after {
  content: none !important;
}
/* ===== PC用カスタムカーソル無効化（通常に戻す） ===== */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: auto !important;
  }
}
/* ===== NEWSカード内タイトルの色変更 (#3F97FC) ===== */
.news-card-title,
.news-card-title a {
  color: #3F97FC !important;
}
/* 固定ページ＋右サイド レイアウト */
.page-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.page-content {
  min-width: 0;
}

.page-sidebar {
  min-width: 0;
}

/* スマホでは縦並び */
@media (max-width: 720px) {
  .page-with-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-sidebar {
    margin-top: 24px;
  }
}
/* === 投稿・固定ページ 共通 2カラムレイアウト === */
.page-with-sidebar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px 60px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.4fr);
  gap: 32px;
}

.page-content {
  min-width: 0;
}

.page-sidebar {
  min-width: 0;
}

/* スマホでは1カラムに縦並び */
@media (max-width: 960px) {
  .page-with-sidebar {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}
.content-with-sidebar {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}

.sidebar-area .widget-item {
  background: #fff;
  padding: 14px;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #ff2e9f;
  border-radius: 8px;
}

.sidebar-area .widget-title {
  font-size: 1rem;
  font-weight: 900;
  color: #ff2e9f;
  margin-bottom: 8px;
}
/* =========================================
   右サイドバー POP デザイン上書き
   （固定ページ & 投稿ページ 共通）
   ========================================= */

.content-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: flex-start;
}

/* サイドバー全体 */
.sidebar-area {
  min-width: 0;
}

/* ▼ ウィジェットの箱を POP なカードに */
.sidebar-area .widget-item,
.sidebar-area .widget,
.sidebar-area .wp-block-group {
  background: #ffffff;
  border: 4px solid #000;
  border-radius: 20px;
  padding: 16px 14px;
  margin-bottom: 18px;
  box-shadow: 8px 8px 0 #ff2e9f;
}

/* ▼ ウィジェットタイトルをピンクのピルに */
.sidebar-area .widget-title {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 12px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: #ff2e9f;
  border-radius: 999px;
  text-shadow: none;
}

/* ▼ リスト系（最新記事・お知らせなど） */
.sidebar-area ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-area ul li + li {
  margin-top: 6px;
}

.sidebar-area ul li a {
  display: block;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  color: #111827;
  background: rgba(255, 229, 75, 0.3);
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #00000040;
  transition: transform 0.15s ease,
              box-shadow 0.15s ease,
              background 0.15s ease,
              color 0.15s ease;
}

/* ホバーでピンクにポップ */
.sidebar-area ul li a:hover {
  background: #ff2e9f;
  color: #ffffff;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #000;
}

/* ▼ SNS ボタン（ブロックエディタのボタン想定） */
.sidebar-area .wp-block-buttons .wp-block-button__link {
  background: #ff2e9f;
  border-radius: 999px;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-area .wp-block-buttons .wp-block-button__link:hover {
  background: #ffe54b;
  color: #000;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #ff2e9f;
}

/* ▼ スマホでは縦並びに */
@media (max-width: 960px) {
  .content-with-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  .sidebar-area {
    margin-top: 24px;
  }
}
.right-sidebar-wrap {
  padding: 20px;
  background: #fff;
  border: 4px solid #000;
  box-shadow: 8px 8px 0 #000;
}

.sidebar-title {
  font-weight: 900;
  font-size: 1.1rem;
  color: #ff2e9f;
  margin-bottom: 8px;
}

.reserve-btn {
  display: block;
  text-align: center;
  background: #ff2e9f;
  color: #fff;
  padding: 14px;
  border-radius: 999px;
  border: 3px solid #000;
  font-weight: 900;
  box-shadow: 6px 6px 0 #000;
  text-decoration: none;
}

.sns-btn {
  display: block;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 6px;
  text-decoration: none;
  font-weight: 800;
  border: 3px solid #000;
}
.sns-instagram { background: #ff2e9f; color: #fff; }
.sns-line { background: #06c755; color: #fff; }

.map-link {
  display: block;
  background: #ffe54b;
  padding: 6px;
  font-weight: 800;
  text-align: center;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  text-decoration: none;
}
/* =========================
   右サイド付きレイアウト
   ========================= */

.site-main--with-sidebar .content-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px 40px;
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(260px, 1fr);
  gap: 24px;
}

.site-sidebar {
  align-self: flex-start;
}

/* 共通ブロックデザイン */
.sidebar-block {
  background: #ffe54b;
  border: 4px solid #000;
  box-shadow: 6px 6px 0 #ff2e9f;
  border-radius: 18px;
  padding: 16px 14px;
  margin-bottom: 18px;
  font-size: 0.85rem;
}

.sidebar-title {
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

/* リスト系（お知らせ・最新記事） */
.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-list li + li {
  margin-top: 6px;
}

.sidebar-list a {
  display: block;
  text-decoration: none;
  color: #000;
}

.sidebar-list .meta {
  display: block;
  font-size: 0.72rem;
  opacity: 0.7;
}

.sidebar-list .title {
  font-weight: 700;
}

.sidebar-list .empty {
  font-size: 0.78rem;
  opacity: 0.7;
}

/* 予約ボタン */
.sidebar-reserve-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  padding: 14px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2e9f, #ff80bc);
  color: #fff;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #000;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.sidebar-reserve-btn .reserve-main {
  font-size: 1.1rem;
}

.sidebar-reserve-btn .reserve-sub {
  font-size: 0.72rem;
}

/* SNSボタン */
.sidebar-sns-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sns-btn {
  flex: 1 1 auto;
  text-align: center;
  padding: 6px 8px;
  border-radius: 999px;
  border: 3px solid #000;
  font-weight: 800;
  font-size: 0.8rem;
  text-decoration: none;
  color: #fff;
  box-shadow: 4px 4px 0 #000;
}

.sns-instagram { background: #ff2e9f; }
.sns-line      { background: #06c755; }

/* カレンダー・MAP 共通ボタン */
.sidebar-link-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 3px solid #000;
  background: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  text-decoration: none;
  color: #000;
  box-shadow: 4px 4px 0 #000;
}

/* スマホ時：1カラムにする */
@media (max-width: 960px) {
  .site-main--with-sidebar .content-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .site-sidebar {
    margin-top: 24px;
  }
}
/* =========================================
   固定＆投稿ページ 右サイドバー ぜんぶ上書き
   ========================================= */

/* レイアウト：本文＋サイドバーを横並び */
.page-right-layout {
  display: flex;
  gap: 28px;
}

/* サイドバー本体 */
.page-right-sidebar {
  width: 280px;
  flex-shrink: 0;
  align-self: flex-start;
  position: sticky;
  top: 110px;
  padding: 18px 16px 22px;
  background: #111827;
  border: 4px solid #000;
  border-radius: 20px;
  box-shadow: 8px 8px 0 #ff2e9f;
  color: #fff;
}

/* それぞれのウィジェット箱 */
.page-right-sidebar .widget,
.page-right-sidebar .widget-item {
  margin: 0 0 18px;
  padding: 12px 12px 14px;
  background: #0b1220;
  border-radius: 14px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
}

/* ウィジェットタイトル */
.page-right-sidebar .widget-title {
  margin: 0 0 8px;
  padding: 4px 10px;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #ff2e9f;
  color: #fff;
  border-radius: 999px;
  border: 2px solid #000;
}

/* 共通リスト */
.page-right-sidebar ul {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}

.page-right-sidebar ul li {
  margin: 0 0 6px;
}

.page-right-sidebar a {
  color: #f9fafb;
  text-decoration: none;
  font-size: 0.85rem;
}

.page-right-sidebar a:hover {
  color: #ffe54b;
}

/* ① 予約ボタン（カスタムHTMLで a.sidebar-reserve-btn にする想定） */
.page-right-sidebar .sidebar-reserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  border: 3px solid #000;
  background: linear-gradient(135deg, #ff2e9f, #ff55c3);
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  box-shadow: 6px 6px 0 #000;
}

.page-right-sidebar .sidebar-reserve-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #ffe54b;
}

/* ② お知らせ（カテゴリウィジェット or 最新投稿ウィジェット想定） */
.page-right-sidebar .widget.widget_categories ul li,
.page-right-sidebar .widget.widget_recent_entries ul li {
  padding: 6px 8px;
  border-radius: 999px;
  background: #111827;
}

/* ③ 最新記事3件（最新投稿ウィジェット） */
.page-right-sidebar .widget_recent_entries ul li a {
  display: block;
  padding: 4px 6px;
}

/* ④ Instagram / LINE ボタン（カスタムHTMLで a.sns-btn + .sns-insta / .sns-line） */
.page-right-sidebar .sns-btn {
  display: inline-block;
  padding: 6px 10px;
  margin: 3px 4px 0 0;
  border-radius: 999px;
  border: 2px solid #000;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 3px 3px 0 #000;
}

.page-right-sidebar .sns-insta {
  background: #FC458F;
  color: #fff;
}

.page-right-sidebar .sns-line {
  background: #06c755;
  color: #fff;
}

.page-right-sidebar .sns-btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 #ffe54b;
}

/* ⑤ 営業日カレンダー（カレンダーウィジェットの見た目調整） */
.page-right-sidebar .widget_calendar table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.7rem;
  text-align: center;
}

.page-right-sidebar .widget_calendar th,
.page-right-sidebar .widget_calendar td {
  padding: 3px;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.page-right-sidebar .widget_calendar caption {
  margin-bottom: 4px;
  font-weight: 900;
}

/* 今日の日付をポップに */
.page-right-sidebar .widget_calendar td#today {
  background: #ff2e9f;
  color: #fff;
  font-weight: 900;
}

/* ⑥ アクセスマップボタン（a.sidebar-map-btn） */
.page-right-sidebar .sidebar-map-btn {
  display: block;
  margin-top: 4px;
  padding: 8px 10px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 900;
  border-radius: 12px;
  border: 2px solid #000;
  background: #3ae5ff;
  color: #000;
  text-decoration: none;
}

.page-right-sidebar .sidebar-map-btn:hover {
  background: #fff;
}
/* サイドバー SNS ボタン */
.sidebar-sns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.sidebar-sns .sns-btn {
  display: block;
  text-align: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 3px solid #000;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 4px 4px 0 #000;
}

/* Instagram をピンク～グラデに */
.sidebar-sns .sns-insta {
  background: linear-gradient(135deg, #ff2e9f, #ff8a3a);
  color: #fff;
}

/* LINE はそのまま緑 */
.sidebar-sns .sns-line {
  background: #06c755;
  color: #fff;
}
/* ===== サイドバーウィジェットタイトル色変更（水色＋黄色影） ===== */
.widget-title,
.sidebar .widget-title,
#page-right-sidebar .widget-title {
    background: #00AAEE !important;       /* 紺色 */
    color: #fff !important;                /* 白文字 */
    border: 3px solid #fff !important;
    box-shadow: 5px 5px 0 #FFE54B !important; /* ← 黄色影 (#FFE54B) */
    padding: 10px 14px;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
}
/* ヒーロー動画の表示サイズ調整 */
.hero-photo-inner {
  aspect-ratio: 9 / 16;      /* 動画に合わせて縦長比率に */
  max-height: 480px;         /* PCでの最大高さを抑える */
}

/* スマホ時はさらに小さめに */
@media (max-width: 720px) {
  .hero-photo-inner {
    max-height: 360px;
  }
}

/* 動画を枠いっぱいにフィットさせる */
.hero-photo-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ===============================
   HERO：動画カード＋バッジ
   =============================== */

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;          /* カードの最大幅 */
  margin-left: auto;         /* 右寄せ */
}

/* カードの黒枠＋影 */
.hero-photo-card {
  position: relative;
  width: 100%;
  border-radius: 18px;
  box-shadow: 8px 8px 0 #000;
  background: linear-gradient(180deg,#ffffff 0%, #ffd6ec 100%);
  overflow: visible;
}

/* 中身：ここを動画で完全に埋める */
.hero-photo-inner {
  position: relative;
  width: 100%;
  border-radius: inherit;
  overflow: hidden;
}

/* 画像 or 動画をカードいっぱいにフィットさせる */
.hero-photo-inner img,
.hero-photo-inner video.hero-video-main {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;         /* 余白なしでトリミング表示 */
}

/* 「WELCOME TO KOO'S」バッジ */
.hero-badge {
  position: absolute;
  top: -40px;
  right: -40px;
  z-index: 5;
  background: #ffd900;
  border-radius: 50%;
  padding: 24px 30px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: 6px 6px 0 #000;
  text-align: center;
}
/* ▼ スマホ用 WELCOME バッジ位置調整 ▼ */
@media (max-width: 768px) {
  .hero-badge {
    right: 10px;   /* 今より左に寄せる */
    top: 10px;
    transform: scale(0.85); /* ほんの少し縮めると綺麗に収まる */
  }
}
/* ▼ H2 のスマホはみ出し防止 ▼ */
@media (max-width: 768px) {
  h2,
  .section-title,
  .menu-title,
  .news-card-title {
    width: 100%;
    max-width: 100%;
    white-space: normal;   /* 自動で改行させる */
    word-break: break-word; /* 長い単語も折り返し */
    line-height: 1.3;
  }
}
/* ▼ スマホ用：見出し(H1〜H4)が枠からはみ出さないようにする ▼ */
@media (max-width: 768px) {

  /* 見出し本体の箱をちゃんとテキスト幅＋装飾に合わせる */
  h1,
  h2,
  h3,
  h4,
  .entry-content h1,
  .entry-content h2,
  .entry-content h3,
  .entry-content h4 {
    display: inline-block;      /* 枠とテキストを一体の箱にする */
    max-width: 100%;            /* 画面幅を超えないように */
    box-sizing: border-box;
    padding: 0.2em 0.4em;       /* 枠の中に余白を少し */
    white-space: normal;        /* 行の途中でちゃんと折り返す */
    word-break: break-word;     /* 長い語でも行内に収める */
    line-height: 1.3;
  }

  /* 枠や下線を ::before / ::after で描いている場合用：
     疑似要素も見出し本体と同じ幅に揃える */
  h1::before,
  h2::before,
  h3::before,
  h4::before,
  h1::after,
  h2::after,
  h3::after,
  h4::after,
  .entry-content h1::before,
  .entry-content h2::before,
  .entry-content h3::before,
  .entry-content h4::before,
  .entry-content h1::after,
  .entry-content h2::after,
  .entry-content h3::after,
  .entry-content h4::after {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* もし見出し用の専用クラスがある場合（例：.section-title）も一緒に縛る */
  .section-title,
  .section-title::before,
  .section-title::after {
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-break: break-word;
  }
}
/* ▼ スマホ用：H2 の飾りを作り直す ▼ */
@media (max-width: 768px) {

  /* いまのストライプ・線を ::before / ::after で描いている場合は一旦オフ */
  .entry-content h2::before,
  .entry-content h2::after {
    content: none !important;
  }

  /* 新しいスマホ用 H2 装飾 */
  .entry-content h2 {
    position: relative;
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;

    /* 文字が全部、枠の中に入るよう余白 */
    padding: 0.25em 0.4em;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;

    /* ストライプ背景（高さはテキストに追従する） */
    background-image: repeating-linear-gradient(
      -45deg,
      #b5f1ff 0,
      #b5f1ff 6px,
      transparent 6px,
      transparent 12px
    );
    background-repeat: repeat;
    background-size: auto 100%;

    /* 上下のピンク線 */
    border-top: 3px solid #ff3fa9;
    border-bottom: 3px solid #ff3fa9;

    /* 複数行になっても枠が行ごとに繋がる用 */
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
}
/* ----------------------------
   アーカイブ見出し可愛いデザイン
----------------------------- */
.archive-title-wrap {
  margin-bottom: 50px;
  text-align: left;
}

.archive-title-chip {
  display: inline-block;
  background: #ff5fa8;
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 14px;
}

.archive-box {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 18px;
  border: 4px solid #ff5fa8;
  box-shadow: 6px 6px 0 #000000;
  max-width: 580px;
}

.archive-title-text {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  margin: 0 0 10px 0;
}

.archive-title-desc {
  font-size: 16px;
  color: #444;
  margin: 0;
}
/* ----------------------------
   アーカイブ見出しデザイン
----------------------------- */
.archive-title-wrap {
  margin-bottom: 36px;
  text-align: left;
}

.archive-title-chip {
  display: inline-block;
  background: #ff5fa8;
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.archive-box {
  display: inline-block;
  background: #99e8ff;          /* ボックス内 水色 */
  padding: 14px 22px;           /* 小さめに */
  border-radius: 18px;
  border: 4px solid #ff5fa8;    /* ピンクのフチ */
  box-shadow: 6px 6px 0 #000000;
  max-width: 420px;             /* 幅も少しコンパクト */
}

.archive-title-text {
  font-size: 26px;
  font-weight: 800;
  color: #ff3d96;               /* タイトル文字 ピンク */
  margin: 0;
}

/* 説明文は使わないが、残っていても邪魔にならないように */
.archive-title-desc {
  display: none;
}
/* MTSSB 戻るボタン：文字色を完全統一 */
.mtssb-back-button .mtssb-back-btn{
  color:#000 !important;          /* ← ここで固定 */
  text-decoration:none !important;
}

/* hover / active / focus でも色を変えさせない */
.mtssb-back-button .mtssb-back-btn:hover,
.mtssb-back-button .mtssb-back-btn:active,
.mtssb-back-button .mtssb-back-btn:focus{
  color:#000 !important;
}
/* MTSSB 戻るボタン：文字の縦ズレ完全修正 */
.mtssb-back-button .mtssb-back-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  height:56px !important;
  padding:0 32px !important;

  line-height:1 !important;   /* ← これが一番重要 */
  vertical-align:middle !important;

  font-size:18px !important;
  font-weight:700 !important;
}
/* 予約フォーム側だけ：戻るボタンの文字を少し上に */
.content-form .mtssb-back-btn{
  line-height:0.05 !important;   /* ← ここが調整ポイント */
}
/* ================================
   固定ページ：画像＆Googleマップの横はみ出し防止（スマホ対応）
   ================================ */

/* 本文エリア自体が横スクロールを出さないように */
.entry-content {
  overflow-x: hidden;
}

/* 画像：スマホで幅100%に収める */
.entry-content img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

/* map wrapper：枠内に収める（あなたの .koos-map を前提） */
.koos-map {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 12px 0;
}

/* Google Maps iframe：固定幅600を強制的に上書きして枠内に収める */
.koos-map iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
}

/* スマホは高さだけ見やすく調整 */
@media (max-width: 768px) {
  .koos-map iframe {
    height: 320px !important;
  }
}