/* ===================== リセット・基本 ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  background: #fff;
  color: #333;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

h1 {
  text-align: center;
}

/* ===================== ヘッダー ===================== */
.header {
  background: #5b2a78;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .nav {
  margin-left: auto;
  margin-right: 20px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo {
  font-size: 16px;
  line-height: 1.4;
}

.logo span {
  font-size: 24px;
  display: block;
}

.nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.nav a {
  color: #fff;
  font-size: 14px;
  opacity: 0.9;
  transition: .2s;
}

.nav a:hover {
  opacity: 1;
  border-bottom: 1px solid #caa24c;
}

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  transition: .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  background: #5b2a78;
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 99;
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-menu a {
  display: block;
  color: #fff;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 15px;
}

/* PC：ヘッダーの鑑定申込ボタン */
@media (min-width: 769px) {
  .nav ul li:last-child a {
    background: linear-gradient(45deg, #caa24c, #e8c96a, #caa24c);
    background-size: 200% auto;
    color: #3b1a52;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    border-bottom: none !important;
    animation: goldshine 3s linear infinite;
    transition: .3s;
  }

  .nav ul li:last-child a:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(202, 162, 76, 0.5);
    border-bottom: none !important;
  }
}

/* ===================== 共通タイトル ===================== */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 36px;
  letter-spacing: 4px;
  display: inline-block;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #caa24c;
  margin: 12px auto 0;
}

.section-heading p {
  margin-top: 15px;
  color: #888;
  font-size: 14px;
  letter-spacing: 2px;
}

/* ===================== スクロールアニメーション ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ===================== アンカーリンクずらし ===================== */
#fortune,
#menu,
#school,
#sns,
#access {
  scroll-margin-top: 70px;
}

/* ===================== ヒーロー ===================== */
.hero {
  background-image: url("../img/sougen-top.webp");
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  background-color: #1a0530;
  width: 100%;
  padding-top: 33.3%;
  height: 0;
  min-height: 0;
  position: relative;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-cta-btn {
  position: absolute;
  bottom: 8%;
  right: 3%;
  padding: 14px 36px;
  background: linear-gradient(45deg, #5b2a78, #9b5abf);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  letter-spacing: 2px;
  box-shadow: 0 6px 20px rgba(91, 42, 120, 0.4);
  transition: .3s;
  z-index: 2;
  border: 2px solid #caa24c;
  white-space: nowrap;
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(91, 42, 120, 0.5);
  background: linear-gradient(45deg, #7b3a98, #b06adf);
}

.hero-cta-btn--sp {
  display: none;
}

/* ===================== 鑑定メニュー ===================== */
.menu-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(160deg, #fff8f0 0%, #fef0ff 30%, #f0f4ff 60%, #fff8e8 100%);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(202, 162, 76, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(155, 90, 191, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(255, 200, 100, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.menu-section .section-heading h2 {
  color: #3b1a52;
  font-size: 44px;
  text-shadow: 0 2px 10px rgba(202, 162, 76, 0.3);
}

.menu-section .section-heading p {
  color: #9b5abf;
  letter-spacing: 5px;
  font-weight: bold;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 65px;
}

.menu-item {
  display: block !important;
  text-align: center !important;
  padding: 0 0 24px 0 !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 30px rgba(91, 42, 120, 0.12) !important;
  border: none !important;
  overflow: hidden;
  transition: .3s !important;
}

.menu-item:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 50px rgba(91, 42, 120, 0.2) !important;
}

.menu-type {
  display: block !important;
  padding: 16px 20px !important;
  font-size: 22px !important;
  font-weight: bold !important;
  letter-spacing: 2px;
  color: #fff !important;
  margin: 0 0 20px 0 !important;
}

.menu-item:nth-child(1) .menu-type { background: linear-gradient(135deg, #667eea, #764ba2); }
.menu-item:nth-child(2) .menu-type { background: linear-gradient(135deg, #f093fb, #f5576c); }
.menu-item:nth-child(3) .menu-type { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.menu-item:nth-child(4) .menu-type { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.menu-item:nth-child(5) .menu-type { background: linear-gradient(135deg, #fa709a, #fee140); }
.menu-item:nth-child(6) .menu-type { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }

.menu-item-content {
  background: rgba(255, 255, 255, 0.9);
  margin: 8px 12px 12px;
  border-radius: 8px;
  padding: 12px 16px;
}

.menu-price {
  display: block !important;
  padding: 0 !important;
  margin-bottom: 6px !important;
  font-size: 19px !important;
  font-weight: bold !important;
  color: #3b1a52 !important;
  background: none !important;
  border-radius: 0 !important;
}

.menu-price a {
  color: #caa24c;
  text-decoration: underline;
  font-weight: bold;
}

.menu-desc {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 15px !important;
  color: #333 !important;
  line-height: 1.9 !important;
  font-weight: normal !important;
  background: none !important;
  border-radius: 0 !important;
  text-align: left;
}

/* ===================== 鑑定の流れ ===================== */
.flow-section {
  padding: 100px 20px;
  text-align: center;
  background-image: url("../img/686277.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.flow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(240, 237, 230, 0.18);
}

.flow-section .section-heading,
.flow-section .flow-steps,
.flow-section .flow-btn {
  position: relative;
  z-index: 1;
}

.flow-section .section-heading h2 {
  color: #5b2a78;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.flow-step {
  width: 208px;
  min-height: 208px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(91, 42, 120, 0.15);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: center;
}

.flow-step--center {
  justify-content: center;
}

.flow-step .num {
  font-size: 28px;
  color: #5b2a78;
  font-weight: bold;
}

.flow-step .label {
  font-size: 15px;
  color: #555;
  font-weight: bold;
  line-height: 1.6;
}

.flow-step .label-note {
  font-size: 12px;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.flow-arrow {
  font-size: 24px;
  color: #caa24c;
}

.flow-btn {
  display: inline-block;
  padding: 18px 60px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  border-radius: 50px;
  background: linear-gradient(45deg, #f7c35f, #f06d6d);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: .3s;
}

.flow-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* ===================== 無料鑑定 ===================== */
.fortune-section {
  background: url("../img/haikeip.jpg") center/cover no-repeat;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.fortune-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(91, 42, 120, 0.849);
}

.fortune-inner {
  max-width: 960px;
  margin: auto;
}

.fortune-title {
  font-size: 36px;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.fortune-sub {
  font-size: 32px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.ornament {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #caa24c, transparent);
}

.fortune-season {
  font-size: 18px;
  margin-bottom: 40px;
  color: #caa24c;
}

.fortune-text {
  font-size: 15px;
  line-height: 2.2;
  max-width: 780px;
  margin: 0 auto 80px;
  opacity: 0.9;
}

.fortune-menu {
  display: block !important;
}

.fortune-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto;
}

.fortune-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid #caa24c;
  border-radius: 10px;
  background: rgba(60, 10, 90, 0.55);
  box-shadow: 0 0 0 1px rgba(202, 162, 76, 0.3), inset 0 0 20px rgba(100, 0, 150, 0.2);
  text-decoration: none;
  color: #fff;
  transition: .3s;
  position: relative;
  cursor: pointer;
}

.fortune-card::before,
.fortune-card::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: #caa24c;
  border-style: solid;
}

.fortune-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.fortune-card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.fortune-card:hover {
  background: rgba(80, 20, 120, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(202, 162, 76, 0.3);
}

.fortune-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.fortune-card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.fortune-card-body {
  flex: 1;
  min-width: 0;
}

.fortune-card-body h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 6px;
  letter-spacing: 1px;
  color: #fff;
  text-align: left;
  white-space: nowrap;
}

.fortune-card-body p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0;
  text-align: left;
  white-space: nowrap;
}

.fortune-card-arrow {
  font-size: 36px;
  color: #caa24c;
  flex-shrink: 0;
  margin-left: 12px;
  font-weight: bold;
  opacity: 0.9;
}

/* ===================== 占い教室 ===================== */
.school-section {
  background: #5a2a6d;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

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

.school-title {
  font-size: 36px;
  margin-bottom: 15px;
  letter-spacing: 4px;
}

.school-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #caa24c;
  margin: 12px auto 0;
}

.school-desc {
  line-height: 2.2;
  font-size: 17px;
  margin-bottom: 70px;
  opacity: 0.9;
}

.school-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.school-video h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.school-list h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.school-list table {
  border-collapse: collapse;
  background: #fff;
  color: #333;
  border-radius: 8px;
  overflow: hidden;
}

.school-list th,
.school-list td {
  padding: 12px 20px;
  border: 1px solid #eee;
  font-size: 14px;
}

.school-list th {
  background: #f0ede6;
  font-weight: bold;
  text-align: left;
}

.school-btn-special {
  display: inline-block;
  padding: 22px 60px;
  border-radius: 50px;
  background: linear-gradient(45deg, #caa24c, #f7e08a, #caa24c);
  background-size: 200% auto;
  color: #3b1a52;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 3px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(202, 162, 76, 0.6), 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: .4s;
  animation: goldshine 3s linear infinite;
  border: 2px solid #f7e08a;
}

.school-btn-special:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 30px rgba(202, 162, 76, 0.9), 0 12px 30px rgba(0, 0, 0, 0.3);
  color: #3b1a52;
}

@keyframes goldshine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ===================== ZOOMオンライン講座 ===================== */
.zoom-courses {
  margin-bottom: 60px;
}

.zoom-title {
  font-size: 26px;
  margin-bottom: 30px;
  color: #caa24c;
  text-align: center;
}

.zoom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.zoom-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(202, 162, 76, 0.4);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}

.zoom-badge {
  display: inline-block;
  background: #caa24c;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.zoom-item h4 {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #fff;
}

.zoom-schedule {
  font-size: 14px;
  color: #caa24c;
  margin-bottom: 16px;
}

.zoom-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  line-height: 1.6;
}

.zoom-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  background: linear-gradient(45deg, #9fd1c9, #f7a7b5);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  transition: .3s;
}

.zoom-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ===================== 占い師派遣 ===================== */
.dispatch-section {
  background: #f0ede6;
  padding: 100px 20px;
  text-align: center;
}

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

.dispatch-section .section-heading h2 {
  color: #5b2a78;
}

.dispatch-text {
  line-height: 2.2;
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 70px;
}

.dispatch-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.dispatch-left h3 {
  font-size: 36px;
  color: #5b2a78;
  writing-mode: vertical-rl;
}

.dispatch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 50px;
  text-align: left;
}

.dispatch-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dispatch-img {
  width: 100px;
  height: 65px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.dispatch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dispatch-item h4 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #5b2a78;
}

.dispatch-item p {
  font-size: 13px;
  color: #666;
}

.dispatch-note {
  font-size: 18px;
  margin-bottom: 40px;
  color: #5b2a78;
}

.dispatch-btn {
  display: inline-block;
  padding: 18px 60px;
  font-size: 22px;
  color: #fff;
  border-radius: 50px;
  background: linear-gradient(45deg, #f5c76a, #f36c6c);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: .3s;
}

.dispatch-btn:hover {
  transform: translateY(-4px);
}

/* ===================== プロフィール ===================== */
.profile-section {
  background: url("../img/haikeir.webp") center/cover no-repeat;
  color: #fff;
  padding: 100px 20px 80px;
  text-align: center;
  text-shadow: 2px 2px 4px #000, -2px -2px 4px #000, 2px -2px 4px #000, -2px 2px 4px #000,
               0px 2px 4px #000, 0px -2px 4px #000, 2px 0px 4px #000, -2px 0px 4px #000;
  position: relative;
}

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

.profile-title {
  font-size: 32px;
  margin-bottom: 60px;
  letter-spacing: 3px;
}

.profile-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #caa24c;
  margin: 12px auto 0;
}

.profile-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.profile-image img {
  width: 300px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #caa24c;
}

.profile-text {
  text-align: left;
  line-height: 2.2;
  font-size: 17px;
  max-width: 440px;
}

.profile-history {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 60px;
}

.profile-history h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #caa24c;
}

.profile-career {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
}

.profile-career li {
  font-size: 18px;
  line-height: 1.6;
  padding: 18px 24px;
  margin-bottom: 12px;
  background: rgb(255 255 255 / 61%);
  border-radius: 0 8px 8px 0;
}

.career-highlight {
  color: #caa24c;
  font-weight: bold;
}

.event-banner {
  padding: 40px 20px;
  text-align: center;
}

.event-banner-text {
  color: #caa24c;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.event-banner-btn {
  display: inline-block;
  padding: 14px 50px;
  border-radius: 50px;
  border: 2px solid #caa24c;
  color: #caa24c;
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 2px;
  transition: .3s;
  background-color: #040d05;
}

.event-banner-btn:hover {
  background: #fef5e050;
}

/* ===================== SNS ===================== */
.sns-section {
  background: #ded8c4;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sns-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #5b2a78;
  color: #5b2a78;
  font-weight: bold;
  border-radius: 30px;
  transition: .3s;
}

.sns-btn:hover {
  background: #5b2a78;
  color: #fff;
}

/* ===================== Access ===================== */
.access {
  background: linear-gradient(135deg, #3b1a52, #5b2a78);
  padding: 100px 20px;
  color: #fff;
}

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

.access-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 60px;
  letter-spacing: 6px;
}

.access-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.access-image iframe {
  width: 100%;
  border-radius: 12px;
}

.access-text {
  line-height: 2.4;
  font-size: 16px;
}

.access-text .tel {
  font-size: 22px;
  font-weight: bold;
  color: #caa24c;
  margin: 15px 0;
}

/* ===================== フッター ===================== */
.footer {
  background: #3b1a52;
  padding: 40px 20px 100px;
  text-align: center;
}

.footer-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-bottom: 20px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: .2s;
}

.footer-menu a:hover {
  color: #fff;
}

.footer-menu-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 26px;
}

.footer-sub {
  font-size: 12px;
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer-sub:hover {
  color: #fff;
  opacity: 1;
}

.footer-policy {
  margin-bottom: 12px;
}

.footer-policy a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-decoration: underline;
  transition: .2s;
}

.footer-policy a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===================== ページトップボタン ===================== */
.pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #5b2a78;
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}

.pagetop.show {
  opacity: 1;
  visibility: visible;
}

.pagetop:hover {
  transform: translateY(-4px);
  background: #7b3a98;
}

/* ===================== LINEボタン・特典 ===================== */
.green-button {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  margin: 10px 8px;
  transition: .3s;
  letter-spacing: 2px;
  background: linear-gradient(45deg, #27ae60, #06c755);
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.35);
}

.green-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(6, 199, 85, 0.4);
}

.sc-line-benefits {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #27ae60;
  border-radius: 12px;
  padding: 24px 40px;
  display: inline-block;
  text-align: left;
}

.sc-line-title {
  color: #caa24c;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.sc-line-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===================== SP固定ボタン ===================== */
.sp-fixed-btn {
  display: none;
}

/* ===================== プライバシーポリシー ===================== */
.privacy-section {
  padding: 80px 20px;
  background: #faf9f7;
}

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

.privacy-intro {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 50px;
  color: #555;
}

.privacy-block {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #e0ddd8;
}

.privacy-block:last-of-type {
  border-bottom: none;
}

.privacy-block h2 {
  font-size: 20px;
  color: #5b2a78;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 4px solid #caa24c;
}

.privacy-block p {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 12px;
}

.privacy-block ul {
  padding-left: 20px;
  color: #555;
  font-size: 15px;
  line-height: 2.2;
}

.privacy-block a {
  color: #5b2a78;
  text-decoration: underline;
}

.privacy-date {
  text-align: right;
  font-size: 14px;
  color: #888;
  margin-top: 40px;
}

/* ===================== 占い教室ページ（sc-） ===================== */
.sc-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.sc-section-title {
  text-align: center;
  font-size: 32px;
  color: #5b2a78;
  margin-bottom: 50px;
  letter-spacing: 3px;
  display: block;
}

.sc-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #caa24c;
  margin: 12px auto 0;
}

/* sc-hero */
.sc-hero {
  min-height: 340px;
  background: url("../img/sougentop.webp") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(60, 20, 80, 0.55);
}

.sc-hero-inner {
  position: relative;
  color: #fff;
}

.sc-hero-sub {
  font-size: 16px;
  color: #caa24c;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.sc-hero-title {
  font-size: 52px;
  font-weight: normal;
  letter-spacing: 8px;
  margin-bottom: 15px;
}

.sc-hero-tagline {
  font-size: 18px;
  opacity: 0.9;
  letter-spacing: 2px;
}

/* sc-feature */
.sc-feature {
  background: #faf9f7;
  padding: 100px 20px;
}

.sc-feature-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.sc-feature-grid--reverse {
  flex-direction: row-reverse;
}

.sc-feature-img {
  flex: 1;
  min-width: 0;
}

.sc-feature-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.sc-feature-list {
  flex: 1;
}

.sc-feature-list ul {
  list-style: none;
  padding: 0;
}

.sc-feature-list ul li {
  font-size: 17px;
  line-height: 2;
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.sc-feature-list ul li::before {
  content: "\30FB";
  color: #caa24c;
  position: absolute;
  left: 0;
}

.sc-feature-text {
  flex: 1;
}

.sc-feature-text h3 {
  font-size: 22px;
  color: #5b2a78;
  margin-bottom: 20px;
}

.sc-trouble-list {
  list-style: none;
  padding: 0;
}

.sc-trouble-list li {
  font-size: 16px;
  line-height: 2;
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: #555;
}

.sc-trouble-list li::before {
  content: "✗";
  color: #c0392b;
  position: absolute;
  left: 0;
}

/* sc-after */
.sc-after {
  background: url("../img/haikeip.jpg") center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
  position: relative;
}

.sc-after::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(91, 42, 120, 0.7);
}

.sc-after .sc-container {
  position: relative;
}

.sc-after .sc-section-title {
  color: #fff;
}

.sc-after-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.sc-after-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sc-after-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 20px;
  line-height: 1.8;
  background: rgb(28 19 19 / 42%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
}

.sc-check {
  color: #caa24c;
  font-size: 22px;
  font-weight: bold;
  flex-shrink: 0;
}

.sc-after-img {
  flex: 1;
}

.sc-after-img img {
  width: 100%;
  border-radius: 12px;
  border: 3px solid #caa24c;
}

/* sc-cta */
.sc-cta {
  padding: 60px 20px;
  text-align: center;
}

.sc-cta--bottom {
  padding: 80px 20px;
}

.sc-cta-btn {
  display: inline-block;
  padding: 20px 80px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  border-radius: 50px;
  background: linear-gradient(45deg, #caa24c, #e8c96a);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: .3s;
  letter-spacing: 2px;
}

.sc-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* sc-flow */
.sc-flow {
  background-image: url("../img/686277.jpg");
  position: relative;
  padding: 100px 20px;
}

.sc-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 249, 247, 0.8);
}

.sc-flow .sc-container {
  position: relative;
  z-index: 1;
}

.sc-flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sc-flow-step {
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(91, 42, 120, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.sc-flow-num {
  font-size: 28px;
  color: #5b2a78;
  font-weight: bold;
}

.sc-flow-label {
  font-size: 13px;
  color: #666;
}

.sc-flow-arrow {
  font-size: 24px;
  color: #caa24c;
}

/* sc-video */
.sc-video-section {
  background: url("../img/haikeip.jpg") center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.sc-video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(59, 26, 82, 0.75);
}

.sc-video-section .sc-container {
  position: relative;
}

.sc-video-section .sc-section-title {
  color: #fff;
}

.sc-video-sub {
  font-size: 36px;
  color: #caa24c;
  margin-bottom: 40px;
}

.sc-video-wrap {
  display: flex;
  justify-content: center;
}

.sc-video-wrap iframe {
  border-radius: 12px;
  border: 3px solid #caa24c;
  max-width: 100%;
}

/* sc-voice */
.sc-voice {
  background: #faf9f7;
  padding: 100px 20px;
}

.sc-voice-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sc-voice-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(91, 42, 120, 0.08);
  border-left: 4px solid #caa24c;
}

.sc-voice-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b2a78, #9b5abf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.sc-voice-name {
  font-weight: bold;
  color: #5b2a78;
  margin-bottom: 10px;
  font-size: 15px;
}

.sc-voice-text p:last-child {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

/* sc-faq */
.sc-faq {
  background: #f0ede6;
  padding: 100px 20px;
}

.sc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sc-faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.sc-faq-q,
.sc-faq-a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  font-size: 15px;
  line-height: 1.8;
}

.sc-faq-q {
  font-weight: bold;
  color: #333;
  background: #fff;
}

.sc-faq-a {
  background: #faf7ff;
  color: #555;
  border-top: 1px solid #eee;
}

.sc-faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 15px;
  flex-shrink: 0;
}

.sc-faq-icon--q {
  background: #5b2a78;
  color: #fff;
}

.sc-faq-icon--a {
  background: #caa24c;
  color: #fff;
}

/* sc-about */
.sc-about {
  background: url("../img/652641.jpg") center/cover no-repeat;
  position: relative;
  padding: 100px 20px;
  color: #fff;
}

.sc-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 10, 60, 0.65);
}

.sc-about .sc-container {
  position: relative;
}

.sc-about .sc-section-title {
  color: #fff;
  text-shadow: 1px 1px 4px #000;
}

.sc-about-profile {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 80px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 40px;
}

.sc-about-img img {
  width: 193px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #caa24c;
  flex-shrink: 0;
}

.sc-about-info {
  flex: 1;
}

.sc-about-name {
  font-size: 26px;
  color: #5b2a78;
  margin-bottom: 20px;
  text-shadow: none;
}

.sc-about-name span {
  font-size: 16px;
  color: #888;
}

.sc-about-career {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.sc-about-career li {
  font-size: 15px;
  line-height: 2;
  padding-left: 16px;
  position: relative;
  color: #333;
  text-shadow: none;
}

.sc-about-career li::before {
  content: "□";
  position: absolute;
  left: 0;
  color: #caa24c;
}

.sc-about-career strong {
  color: #5b2a78;
}

.sc-about-desc {
  font-size: 14px;
  line-height: 2;
  color: #555;
  text-shadow: none;
}

.sc-about-grid {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.sc-about-video iframe {
  border-radius: 12px;
  border: 3px solid #caa24c;
}

.sc-about-text {
  flex: 1;
  font-size: 16px;
  line-height: 2.2;
  text-shadow: 1px 1px 3px #000;
}

/* ===================== スマホ対応 ===================== */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-fortune-btn {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(45deg, #caa24c, #e8c96a);
    color: #3b1a52;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    white-space: nowrap;
    text-decoration: none;
  }

  /* ヒーロー */
  .hero {
    background-image: url("../img/sougen-topsp.webp");
    background-size: contain;
    background-position: center top;
    background-color: #1a0530;
    padding-top: 122.5%;
    height: 0;
    min-height: 0;
  }

  .hero-cta-btn--pc {
    display: none !important;
  }

  .hero-cta-btn--sp {
    display: block;
    background-color: #1a0530;
    position: static;
    margin: 0 auto;
    text-align: center;
    width: fit-content;
    transform: none;
    font-size: 15px;
    padding: 13px 36px;
    background: linear-gradient(45deg, #5b2a78, #9b5abf);
    color: #fff;
    border-radius: 50px;
    border: 2px solid #caa24c;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: -1px;
  }

  .hero-sp-wrap {
    background-color: #1a0530;
    padding: 16px 20px;
    text-align: center;
    margin-top: -4px;
  }

  /* 鑑定メニュー */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 10px !important;
  }

  .menu-item {
    border-radius: 14px !important;
    padding: 0 0 16px 0 !important;
  }

  .menu-type {
    font-size: 13px !important;
    padding: 10px 12px !important;
    letter-spacing: 0 !important;
    margin: 0 0 12px 0 !important;
  }

  .menu-item-content {
    margin: 0 8px 8px !important;
    padding: 8px 10px !important;
    border-radius: 6px !important;
  }

  .menu-price {
    font-size: 12px !important;
    margin-bottom: 4px !important;
    line-height: 1.6 !important;
  }

  .menu-desc {
    font-size: 11px !important;
    line-height: 1.7 !important;
  }

  .menu-section {
    padding: 70px 20px;
  }

  /* 鑑定の流れ */
  .flow-steps {
    flex-direction: column;
    align-items: center;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .flow-step {
    width: 100%;
    max-width: 235px;
  }

  .flow-btn {
    font-size: 18px;
    padding: 16px 40px;
  }

  /* 無料鑑定 */
  .fortune-section {
    padding: 70px 20px;
  }

  .fortune-sub {
    font-size: 24px;
  }

  .fortune-text {
    font-size: 14px;
  }

  .fortune-grid-new {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fortune-card-body h3 {
    font-size: 15px;
    white-space: normal;
  }

  .fortune-card-body p {
    white-space: normal;
  }

  /* 占い教室 */
  .school-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .school-list table {
    font-size: 13px;
  }

  .school-list th,
  .school-list td {
    padding: 10px 14px;
  }

  .zoom-grid {
    grid-template-columns: 1fr;
  }

  .school-desc {
    text-align: left;
  }

  .school-btn-special {
    padding: 22px 0;
    font-size: 17px;
  }

  /* 派遣 */
  .dispatch-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .dispatch-left h3 {
    writing-mode: horizontal-tb;
    font-size: 28px;
  }

  .dispatch-grid {
    grid-template-columns: 1fr;
  }

  .dispatch-btn {
    font-size: 18px;
    padding: 16px 40px;
  }

  /* プロフィール */
  .profile-top {
    flex-direction: column;
  }

  .profile-text {
    text-align: center;
    font-size: 15px;
  }

  .profile-history h3 {
    font-size: 22px;
  }

  .event-banner-btn {
    font-size: 17px;
  }

  /* SNS */
  .sns-section {
    gap: 12px;
  }

  .sns-btn {
    padding: 12px 28px;
  }

  /* Access */
  .section-heading h2 {
    font-size: 28px;
  }

  .access-content {
    flex-direction: column;
  }

  .access-title {
    font-size: 36px;
  }

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

  /* フッター */
  .footer-menu a {
    font-size: 13px;
  }

  /* SP固定ボタン */
  .sp-fixed-btn {
    display: block;
    position: fixed;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 14px 40px;
    background: linear-gradient(45deg, #5b2a78, #9b5abf);
    border: 2px solid #caa24c;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    letter-spacing: 1px;
    z-index: 998;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, transform 0.3s;
  }

  .sp-fixed-btn.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
  }

  /* 占い教室ページ */
  .sc-hero-title {
    font-size: 36px;
  }

  .sc-hero-tagline {
    font-size: 15px;
  }

  .sc-feature-grid,
  .sc-feature-grid--reverse,
  .sc-after-grid,
  .sc-about-grid {
    flex-direction: column;
    gap: 30px;
  }

  .sc-flow-steps {
    flex-direction: column;
    align-items: center;
  }

  .sc-flow-arrow {
    transform: rotate(90deg);
  }

  .sc-cta-btn {
    font-size: 18px;
    padding: 16px 50px;
  }

  .sc-video-wrap iframe,
  .sc-about-video iframe {
    width: 100%;
    height: 200px;
  }

  .sc-voice-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sc-about-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }

  .sc-about-career li {
    text-align: left;
  }

  .sc-section-title {
    font-size: 22px;
    letter-spacing: 0;
  }
}

@media (min-width: 769px) {
  .sp-fixed-btn {
    display: none !important;
  }
}
