@charset "UTF-8";
/*
Theme Name: SHINEIDO Blog
Theme URI: https://example.com/
Author: (Your Name)
Description: 大阪梅田 占い処 辰栄堂のデザインを踏襲したブログ用WordPressテーマ（JS最小：ヘッダー背景のみ）
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: shineido-blog
Good!
*/

/* --- デザイン変数（元HTML踏襲） --- */
:root {
  --bg-color: #F7F7F5;
  --text-main: #333333;
  --text-sub: #666666;
  --accent-color: #8E7866;
  --accent-dark: #2F353B;
  --white: #FFFFFF;
  --gold-gradient: linear-gradient(135deg, #E8CFA6 0%, #C69F68 100%);
  --gold-shadow: 0 4px 15px rgba(198, 159, 104, 0.4);
  --font-serif: 'Shippori Mincho', serif;
  --font-sans: 'Zen Kaku Gothic New', sans-serif;
  --badge-gray: #808080;
}

/* --- Base Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 2;
  letter-spacing: 0.08em;
  overflow-x: hidden;

  /* 固定ヘッダー分の余白 */
  padding-top: 92px;

  /* 固定下部バー用余白 */
  padding-bottom: 110px;
}

a { text-decoration: none; color: inherit; transition: all 0.4s ease; }
a:hover { opacity: 0.85; }
img { width: 100%; height: auto; display: block; object-fit: cover; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; }

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.25em;
  line-height: 1.8;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* スマホだけ改行（元HTML踏襲） */
br.sp-only { display: none; }

/* 固定ヘッダーのアンカーずれ対策 */
section[id] { scroll-margin-top: 110px; }

/* 管理バー対策 */
.admin-bar header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar header { top: 46px; }
}

/* =========================================================
   Header（元HTML踏襲）
========================================================= */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: background 0.3s, padding 0.3s;
}

header.scrolled {
  background-color: rgba(247, 247, 245, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo span {
  font-size: 0.65rem;
  font-family: var(--font-sans);
  color: var(--accent-color);
  margin-top: 5px;
  letter-spacing: 0.2em;
}

/* Desktop nav */
nav.desktop-nav { display: none; }
@media (min-width: 768px) {
  nav.desktop-nav { display: block; }
  nav ul { display: flex; gap: 3rem; list-style: none; align-items: center; }
  nav li { font-size: 0.85rem; font-family: var(--font-serif); letter-spacing: 0.1em; }
  nav a { position: relative; }
  nav a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 1px;
    background: var(--accent-dark);
    transition: width 0.3s;
  }
  nav a:hover::after { width: 100%; }
}

/* PCナビ「ご予約」ボタン（元HTML踏襲） */
.nav-reserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--gold-gradient);
  color: #fff;

  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-family: var(--font-serif);
  transition: all 0.3s ease;

  box-shadow: 0 10px 25px rgba(198, 159, 104, 0.4);
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.25);
  text-shadow: 0 1px 2px rgba(0,0,0,0.12);
  line-height: 1;
  white-space: nowrap;
}
.nav-reserve-btn::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: rotate(45deg);
  animation: navShine 3.4s infinite;
}
@keyframes navShine { 0% { left: -100%; opacity: 0; } 50% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
.nav-reserve-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 30px rgba(198, 159, 104, 0.5);
  opacity: 1;
}
nav a.nav-reserve-btn::after { content: none !important; }

/* =========================================================
   モバイルメニュー：JS不要（:target方式）
   - クリックで #mobileMenu に遷移 → 開く
   - 閉じるは #top へ → 閉じる
========================================================= */
.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.25s ease;
}
.hamburger:hover { opacity: 1; transform: translateY(-1px); }

.hamburger-lines {
  width: 18px;
  height: 12px;
  display: grid;
  gap: 4px;
}
.hamburger-lines span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--accent-dark);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (min-width: 768px) { .hamburger { display: none; } }

/* モバイルメニュー本体 */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(2px);
}
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100%;
  background: rgba(247, 247, 245, 0.98);
  backdrop-filter: blur(18px);
  border-left: 1px solid rgba(0,0,0,0.08);
  box-shadow: -20px 0 50px rgba(0,0,0,0.12);
  transform: translateX(16px);
  transition: transform 0.25s ease;
  padding: 1.25rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* 開いた状態（:target） */
.mobile-nav:target {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav:target .mobile-nav__panel {
  transform: translateX(0);
}

/* 開いている時にハンバーガーを×に変形（navの直後がheaderの前提） */
.mobile-nav:target + header .hamburger-lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-nav:target + header .hamburger-lines span:nth-child(2) { opacity: 0; }
.mobile-nav:target + header .hamburger-lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 768px) { .mobile-nav { display: none !important; } }

.mobile-nav__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mobile-nav__brand {
  font-family: var(--font-serif);
  letter-spacing: 0.15em;
  line-height: 1.1;
  display: flex;
  flex-direction: column;

  align-items: center;
  text-align: center;
  grid-column: 2;
  justify-self: center;
}
.mobile-nav__brand span {
  font-size: 0.65rem;
  font-family: var(--font-sans);
  color: var(--accent-color);
  margin-top: 4px;
  letter-spacing: 0.2em;
}

.mobile-nav__close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 3;
  justify-self: end;
}
.mobile-nav__close i { color: var(--accent-dark); }

.mobile-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.6rem;
}
.mobile-nav__list a {
  display: block;
  padding: 0.75rem 0.2rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.mobile-nav__sub {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mobile-nav__sub a {
  font-size: 0.85rem;
  color: var(--text-sub);
  letter-spacing: 0.08em;
  padding: 0.35rem 0.2rem;
}

/* =========================================================
   Aurora背景（元HTML踏襲）
========================================================= */
/*
.aurora-section {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.aurora-section::before {
  content: '';
  position: absolute;
  inset: -180px;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 205, 226, 0.78) 0%, transparent 58%),
    radial-gradient(circle at 86% 16%, rgba(195, 230, 255, 0.78) 0%, transparent 58%),
    radial-gradient(circle at 82% 86%, rgba(224, 206, 255, 0.78) 0%, transparent 58%),
    radial-gradient(circle at 18% 88%, rgba(198, 255, 234, 0.78) 0%, transparent 58%),
    linear-gradient(120deg, rgba(255, 246, 232, 0.72) 0%, rgba(236, 248, 255, 0.72) 50%, rgba(248, 236, 255, 0.72) 100%);
  background-size: 240% 240%;
  background-position: 0% 50%;
  filter: blur(40px) saturate(140%);
  opacity: 0.55;
  will-change: transform, background-position;
  animation: auroraSectionMove 26s ease-in-out infinite;
  transform: translate3d(0,0,0);
}
.aurora-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: rgba(255,255,255,0.22);
}
.aurora-section > * {
  position: relative;
  z-index: 1;
}

@keyframes auroraSectionMove {
  0% { background-position: 0% 50%; transform: rotate(0deg) scale(1.06); }
  50% { background-position: 100% 50%; transform: rotate(180deg) scale(1.12); }
  100% { background-position: 0% 50%; transform: rotate(360deg) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .aurora-section::before { animation: none; }
}
*/

/* =========================================================
   Hero（元HTMLに寄せた静的版：動画/文字アニメ無し）
========================================================= */
.hero {
  position: relative;
  height: 85vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background-color: #efece7;
  background-image: url('./assets/images/osaka.jpg');
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.40);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 4rem;
  padding: 2rem;
  width: clamp(320px, 88vw, 580px);

  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border: 1px solid rgba(255,255,255,0.5);
  overflow: hidden;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: -140px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 205, 226, 0.78) 0%, transparent 58%),
    radial-gradient(circle at 86% 16%, rgba(195, 230, 255, 0.78) 0%, transparent 58%),
    radial-gradient(circle at 82% 86%, rgba(224, 206, 255, 0.78) 0%, transparent 58%),
    radial-gradient(circle at 18% 88%, rgba(198, 255, 234, 0.78) 0%, transparent 58%),
    linear-gradient(120deg, rgba(255, 246, 232, 0.72) 0%, rgba(236, 248, 255, 0.72) 50%, rgba(248, 236, 255, 0.72) 100%);
  background-size: 220% 220%;
  background-position: 0% 50%;
  filter: blur(26px) saturate(140%);
  opacity: 0.62;
  animation: heroAuroraMove 18s ease-in-out infinite;
  transform: translate3d(0,0,0);
}
@keyframes heroAuroraMove {
  0% { background-position: 0% 50%; transform: rotate(0deg) scale(1.06); }
  50% { background-position: 100% 50%; transform: rotate(180deg) scale(1.12); }
  100% { background-position: 0% 50%; transform: rotate(360deg) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-content::before { animation: none; }
}

.hero-title-area, .hero-sub { position: relative; z-index: 2; }

.hero-title-area {
  height: 320px;
  border-left: 1px solid var(--accent-dark);
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-size: 2.35rem;
  color: var(--text-main);
  height: 100%;
  margin: 0;
}
.hero-sub {
  writing-mode: vertical-rl;
  font-size: 0.9rem;
  color: var(--text-sub);
  letter-spacing: 0.2em;
  margin-right: 1rem;
}
.hero-sub-em { font-size: 1.2em; font-weight: 700; color: #333; }

.hero-location {
  writing-mode: horizontal-tb;
  position: absolute;
  bottom: 2rem; right: 3rem;
  font-size: 0.8rem;
  font-family: var(--font-serif);
  letter-spacing: 0.2em;
  color: var(--text-main);
  display: flex; align-items: center; gap: 1rem;
  z-index: 10;
}
.hero-location::before { content: ''; width: 30px; height: 1px; background: var(--text-main); }

@media (max-width: 768px) {
  body { padding-top: 78px; }

  br.sp-only { display: inline; }
  .container { padding: 0 1.5rem; }
  header { padding: 1rem; }

  .hero { height: 100dvh; min-height: 0; }

  .hero-content {
    flex-direction: column-reverse;
    width: 90%;
    gap: 1.25rem;
    padding: 1.2rem 1rem 2.2rem;
  }
  .hero-title-area {
    height: auto;
    min-height: 250px;
    border-left: none;
    border-bottom: 1px solid var(--accent-dark);
    padding-left: 0;
    padding-bottom: 1.4rem;
    width: 100%;
    text-align: center;
  }
  .hero h1 { writing-mode: vertical-rl; margin: 0 auto; height: 250px; font-size: 2.2rem; }
  .hero-sub { writing-mode: horizontal-tb; margin-bottom: 0.6rem; margin-right: 0; }
  .hero-location { right: 1.2rem; bottom: 1.2rem; }
}

/* =========================================================
   Section Common（元HTML踏襲）
========================================================= */
.section-padding { padding: 6.5rem 0; }

.section-header {
  margin-bottom: 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-title-en {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(0,0,0,0.03);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: -1;
  letter-spacing: 0.1em;
}
.section-title-jp {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  background: var(--bg-color);
  padding: 0 1rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .section-padding { padding: 5.5rem 0; }
  .section-title-en { font-size: 2.5rem; }
}

/* =========================================================
   Blog Top（プロフィール＋料金＋学生割引）
   - JS不要で必ず表示される
========================================================= */
.blog-top-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border-radius: 14px;
  overflow: hidden;
  padding: 2.2rem;
}

.blog-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .blog-top-card { padding: 1.5rem; }
  .blog-top-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* 丸枠画像（元HTMLのcp-circle踏襲） */
.cp-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  border: 2px solid rgba(142, 120, 102, 0.35);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.cp-circle img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .cp-circle { width: 130px; height: 130px; }
}

.author-head {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
@media (max-width: 768px) {
  .author-head { align-items: flex-start; gap: 1.2rem; }
}

.author-role {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--accent-dark);
}
.author-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.author-name span {
  font-size: 1rem;
  margin-left: 10px;
  color:#888;
  font-family: var(--font-sans);
}
@media (max-width: 768px) {
  .author-name { font-size: 1.65rem; }
  .author-name span { display: block; margin-left: 0; margin-top: 2px; }
}

.author-summary {
  margin-top: 1.0rem;
  color: var(--text-sub);
  font-size: 0.95rem;
}

/* SNSアイコン（元HTML踏襲） */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin: 1.2rem 0 0;
}
.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}
.social-icon i {
  font-size: 20px;
  color: var(--accent-dark);
  opacity: 0.88;
  line-height: 1;
}
@media (max-width: 768px) {
  .social-links { gap: 0.75rem; }
  .social-icon { width: 44px; height: 44px; }
  .social-icon i { font-size: 19px; }
}

/* =========================================================
   料金UI（元HTMLの Menu セクションを短縮して流用）
========================================================= */
.menu-wrapper {
  background-color: var(--white);
  padding: 2rem 2rem 1.4rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
  position: relative;
  border-radius: 10px;
}
.menu-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background-color: var(--accent-dark);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
@media (max-width: 768px) {
  .menu-wrapper { padding: 1.6rem 1.2rem; }
}

.menu-category { margin-top: 1.6rem; }

.menu-category--normal {
  background-color: #fff2f6;
  padding: 1.6rem 1.4rem 1.2rem;
  border-radius: 10px;
}
.menu-category--late {
  background-color: #f4f4f4;
  padding: 1.6rem 1.4rem 1.2rem;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .menu-category--normal,
  .menu-category--late { padding: 1.4rem 1.1rem 1.1rem; }
}

.menu-category-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 1.0rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.menu-category-title::after { content: ''; flex: 1; height: 1px; background-color: #eee; }

.menu-methods {
  font-size: 0.85rem;
  color: #888;
  margin-top: -0.6rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .menu-methods { font-size: 0.72rem; }
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid #f5f5f5;
}
.price-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.price-time {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-sub);
  width: 60px;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
}

/* 人気No.1 */
.recommended-plan {
  background: linear-gradient(to right, #faf8f5, #fffcf9);
  border: 2px solid #E8CFA6;
  border-radius: 8px;
  padding: 1.35rem 1.2rem !important;
  margin: 1.2rem 0;
  position: relative;
  box-shadow: 0 4px 20px rgba(142, 120, 102, 0.1);
  z-index: 1;
  border-bottom: 2px solid #E8CFA6;
}
.recommended-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
  font-weight: 500;
}

/* 満足度No.1（濃いめグレー） */
.satisfaction-plan {
  background: linear-gradient(to right, #f7f7f7, #ffffff);
  border: 2px solid var(--badge-gray);
  border-radius: 8px;
  padding: 1.35rem 1.2rem !important;
  margin: 1.2rem 0;
  position: relative;
  box-shadow: 0 4px 20px rgba(47, 53, 59, 0.12);
  z-index: 1;
  border-bottom: 2px solid var(--badge-gray);
}
.satisfaction-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--badge-gray);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(47, 53, 59, 0.22);
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
  font-weight: 500;
}

/* 学生割引（元HTML踏襲：配置も同じ系統） */
.discount-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.2rem 1rem;
  border-radius: 20px;
  margin-left: 1rem;
  box-shadow: var(--gold-shadow);
  vertical-align: middle;
}
.student-discount {
  background-color: #faf8f5;
  padding: 1.5rem;
  border-radius: 8px;
  border: none;
  margin-top: 0.3rem;
}
.student-discount .price-name { color: var(--accent-color); }
.student-discount .price-amount { font-size: 1rem; text-align: right; line-height: 1.4; }
.student-discount__amount { font-size: 1.4rem; color: #C69F68; }
.student-discount__note { font-size: 0.75rem; color: #999; font-weight: normal; font-family: var(--font-sans); }

@media (max-width: 768px) {
  .price-row { flex-wrap: wrap; align-items: baseline; padding: 1rem 0; }
  .price-name { flex: 1; font-size: 1rem; }
  .price-time { width: auto; margin-right: 0.5rem; }
  .price-amount { margin-left: 1rem; font-size: 1.1rem; }

  .student-discount {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    text-align: center;
    padding: 1.4rem 1.2rem;
  }
  .student-discount .price-amount { width: 100%; text-align: center; margin-left: 0; line-height: 1.7; font-size: 0.95rem; }
  .student-discount__note { display: block; margin-top: 0.35rem; }
}

/* =========================================================
   Blog Layout / Cards
========================================================= */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .blog-layout { grid-template-columns: 1fr; gap: 2rem; }
}

.post-list {
  display: grid;
  gap: 2rem;
}

.post-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card > a {
  display: block;
  height: 100%;
}
.post-card > a:focus-visible {
  outline: 2px solid rgba(198, 159, 104, 0.65);
  outline-offset: 4px;
  border-radius: 12px;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  opacity: 1;
}
.post-card__thumb img {
/* 	opacity: 0.6; */
	aspect-ratio: 16/9;
	object-fit: cover;
	}
.post-card__body { padding: 1.5rem 1.4rem 1.3rem; }

.post-meta {
  font-size: 0.82rem;
  color: var(--text-sub);
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}
.post-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.post-card__excerpt {
  color: var(--text-sub);
  font-size: 0.93rem;
  line-height: 2;
}
.post-card__more {
  display: inline-block;
  margin-top: 1.0rem;
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  border-bottom: 1px solid rgba(47,53,59,0.35);
  padding-bottom: 2px;
}

/* Pagination */
.pagination { margin-top: 2.4rem; display: flex; justify-content: center; }
.nav-links { display: inline-flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.page-numbers {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}
.page-numbers.current {
  background: var(--gold-gradient);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

/* Sidebar Widgets */
.sidebar { position: sticky; top: 120px; }
@media (max-width: 768px) { .sidebar { position: static; top: auto; } }

.widget {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  margin-bottom: 1.2rem;
}
.widget-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  color: var(--accent-dark);
  letter-spacing: 0.06em;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(142, 120, 102, 0.35);
}
.widget ul { list-style: none; display: grid; gap: 0.5rem; }
.widget li a { color: var(--text-sub); }

/* Search form */
.searchform { display: grid; grid-template-columns: 1fr auto; gap: 0.6rem; }
.searchform input[type="search"] {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
  outline: none;
  background: rgba(255,255,255,0.9);
}
.searchform button {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  background: var(--gold-gradient);
  color: #fff;
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(198, 159, 104, 0.35);
}

/* =========================================================
   Single
========================================================= */
.single-wrap {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.single-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.entry-content { margin-top: 1.5rem; color: var(--text-main); font-size: 0.98rem; }
.entry-content p { margin: 1.2rem 0; }
.entry-content h2{
	padding: 5px;
	background: #f5f5f5;
	display: block;
/* 	border: 1px solid #cccccc; */
	font-size: 1.4rem;
	
	text-decoration: underline; /* 下線 */
	text-decoration-thickness: 0.5em; /* 線の太さ */
	text-decoration-color: rgba(255, 99, 71, 0.2); /* 線の色 */
	text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
	text-decoration-skip-ink: none;
}
.entry-content h3{
	font-size: 1.0rem;
	font-weight: bold;
	background: #f0f0f0;
	
	text-decoration: underline; /* 下線 */
	text-decoration-thickness: 0.2em; /* 線の太さ */
	text-decoration-color: rgba(0, 0, 0, 0.1); /* 線の色 */
	text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
	text-decoration-skip-ink: none;
}
.entry-content h2, .entry-content h3, .entry-content h4 { margin: 2.2rem 0 0.8rem; line-height: 1.6; }
.entry-content ul, .entry-content ol { margin: 1.2rem 0 1.2rem 1.2rem; }
.entry-content img { border-radius: 10px; max-width: 100%; height: auto; }
.wp-block-image, .wp-block-embed { max-width: 100%; overflow: hidden; }

/* =========================================================
   Single Post（記事ページ）
   - タイトル→日付/カテゴリ→アイキャッチ→筆者プロフィール→本文
   - 背景（aurora-section）の上に“直接”載せる（白カードを外す）
   ★スマホ左右余白を後で調整するなら、下の変数を変更してください
========================================================= */
:root {
  /* ★ここ：記事ページの左右余白（PC/スマホ） */
  --single-side-padding-pc: 2rem;
  --single-side-padding-sp: 0.5rem;
}

.single-container {
  max-width: 920px;
  margin: 0 auto;
  padding-left: var(--single-side-padding-pc);
  padding-right: var(--single-side-padding-pc);
}

@media (max-width: 768px) {
  .single-container {
    padding-left: var(--single-side-padding-sp);
    padding-right: var(--single-side-padding-sp);
  }
}

/* 記事ページは白カードを外して、背景（aurora）に直接表示 */
.single-post .single-wrap {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.single-featured { margin-top: 1.2rem; }
.single-featured img {
/* 	opacity: 0.6; */
	border-radius: 12px;
	}

.single-meta { margin-bottom: 0.2rem; }

/* ミニプロフィール（記事の途中に小さめ表示） */
.author-mini {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(0,0,0,0.10);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.author-mini__avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  border: 2px solid rgba(142, 120, 102, 0.35);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  flex: 0 0 auto;
}
.author-mini__avatar img { width: 100%; height: 100%; object-fit: cover; }

.author-mini__body { flex: 1; min-width: 0; }
.author-mini__label {
  font-family: var(--font-serif);
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}
.author-mini__role {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--accent-dark);
  margin-bottom: 0.1rem;
}
.author-mini__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}
.author-mini__name span {
  display: inline-block;
  margin-left: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-sub);
  letter-spacing: 0.06em;
}
.author-mini__summary {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  line-height: 2;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .author-mini {
    gap: 0.8rem;
    padding-top: 1.1rem;
  }
  .author-mini__avatar {
    width: 74px;
    height: 74px;
  }
  .author-mini__label { font-size: 0.72rem; }
  .author-mini__role { font-size: 0.86rem; }
  .author-mini__name { font-size: 0.95rem; }
  .author-mini__name span { font-size: 0.75rem; margin-left: 0.45rem; }
  .author-mini__summary { font-size: 0.84rem; line-height: 1.9; }
}

/* 記事下ウィジェット（スマホのみ表示） */
.single-mobile-widgets {
  display: none;
  margin-top: 2.2rem;
}
.single-mobile-widgets .widget { margin-bottom: 1.2rem; }
@media (max-width: 768px) {
  .single-mobile-widgets {
    display: block;
  }
}

/* =========================================================
   Access（元HTMLをそのまま使う前提でCSSも踏襲）
========================================================= */
.access-box {
  background-color: var(--accent-dark);
  color: var(--white);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.access-info h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1rem;
  display: inline-block;
}
.access-detail p { margin-bottom: 1rem; font-size: 0.95rem; opacity: 0.9; line-height: 1.8; }
.map-btn {
  display: inline-block;
  margin-top: 1.5rem;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  color: var(--white);
  transition: all 0.3s;
}
.map-btn:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px rgba(198, 159, 104, 0.5);
}
.access-map { width: 100%; height: 100%; min-height: 350px; position: relative; }
.access-map iframe {
  width: 100%; height: 100%;
  border: 1px solid rgba(255,255,255,0.2);
  filter: grayscale(0.2);
}

@media (max-width: 768px) {
  .access-box { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
}

/* =========================================================
   Sticky bar（元HTML踏襲）
========================================================= */
.sticky-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 650px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(15px);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.sticky-info { display: flex; flex-direction: column; padding-left: 1rem; }
.sticky-label { font-size: 0.65rem; color: #C69F68; letter-spacing: 0.15em; margin-bottom: 2px; }
.sticky-main { font-family: var(--font-serif); font-size: 1.1rem; color: var(--text-main); }

.sticky-btn {
  background: linear-gradient(135deg, #cc0033 0%, #a8002a 100%);
  color: #fff;
  padding: 0.9rem 2.5rem;
  border-radius: 30px;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  font-family: var(--font-serif);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(204, 0, 51, 0.28);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.25);
  text-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
.sticky-btn::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}
@keyframes shine { 0% { left: -100%; opacity: 0; } 50% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
.sticky-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(204, 0, 51, 0.36); opacity: 1; }

@media (max-width: 768px) {
  .sticky-bar { width: 94%; bottom: 15px; padding: 0.8rem 1rem; }
  .sticky-btn { padding: 0.7rem 1.5rem; font-size: 0.85rem; }
  .sticky-main { font-size: 0.95rem; }
}

/* =========================================================
   Footer（元HTML踏襲）
========================================================= */
footer { text-align: center; padding: 2rem; font-size: 0.7rem; color: var(--text-sub); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  color: var(--text-sub);
}
.footer-links a {
  color: var(--text-sub);
  position: relative;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: rgba(47,53,59,0.35);
  transition: width 0.3s ease;
}
.footer-links a:hover::after { width: 100%; }

@media (max-width: 768px) {
  .footer-links {
    font-size: 0.72rem;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    align-items: center;
    gap: 0.6rem 1.2rem;
  }
  .footer-links a:last-child { grid-column: 1 / -1; }
}

/* =========================================================
   author-mini：GoogleMaps/詳細リンクの見た目調整
   - 星だけ黄色
   - 文字をかなり小さく
   - 文字色を薄く
========================================================= */
.author-mini__links{
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  /* ★文字をかなり小さく */
  font-size: 0.72rem;
  line-height: 1.6;

  /* ★文字色を少し薄く */
  color: rgba(47,53,59,0.55);
}

.author-mini__link{
  /* リンク文字も薄めに */
  color: rgba(47,53,59,0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(47,53,59,0.25);
  padding-bottom: 1px;
}
.author-mini__link:hover{ opacity: 0.85; }

.author-mini__sep{
  margin: 0 0.4rem;
  color: rgba(47,53,59,0.35);
}

.author-mini__stars{
  /* ★星だけ黄色 */
  color: #F2C94C;
  letter-spacing: 0.06em;
}

@media (max-width: 768px){
  .author-mini__links{
    /* スマホはさらに小さく */
    font-size: 0.66rem;
  }
}

/* =========================================================
   Single CTA (記事本文末のバナー導線)
========================================================= */
.single-cta{
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(0,0,0,0.10);
}
.single-cta__inner{
  display: flex;
  gap: 1.1rem;
  align-items: center;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(142, 120, 102, 0.20);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.single-cta__avatar{
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  border: 2px solid rgba(142, 120, 102, 0.35);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  flex: 0 0 auto;
}
.single-cta__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-cta__body{
  flex: 1;
  min-width: 0;
}
.single-cta__copy{
  margin: 0;
  line-height: 1.8;
}
.single-cta__role{
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--accent-dark);
  letter-spacing: 0.08em;
}
.single-cta__lead{
  display: block;
  margin-top: 0.08rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--text-main);
  font-weight: bold;
}
.single-cta__btn{
  margin-top: 0.65rem;
  display: inline-flex;
}
@media (max-width: 768px){
  .single-cta__inner{
    padding: 1rem 1.1rem;
    gap: 0.9rem;
  }
  .single-cta__avatar{
    width: 84px;
    height: 84px;
  }
  .single-cta__role{ font-size: 0.9rem; }
  .single-cta__lead{ font-size: 0.95rem; }
}

/* バナー全体をリンクにする（見た目は変えず、クリック領域だけ拡張） */
.single-cta__inner{ position: relative; }
.single-cta__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}
.single-cta__btn{
  position: relative;
  z-index: 2; /* overlay より前面に出してクリック可能にする */
}

/*--------------------*/
/* 記事本文内のリンク装飾（下線 + hoverで薄いブルー背景） */
.entry-content a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  text-decoration-skip-ink: auto;

  background-color: transparent;
  padding: 0.06em 0.18em;
  border-radius: 2px;

  transition: background-color 0.15s ease;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.entry-content a:hover,
.entry-content a:focus-visible {
  background-color: rgba(173, 216, 230, 0.35); /* 薄いブルー */
}
