@charset "UTF-8";

/* 公式HPの色指定 */
:root {
  --color-gold1: rgb(211,188,58);
  --color-gold2: rgb(246,218,64);
  --color-purple: rgb(38,0,48);
  --color-red: rgb(235,83,69);
  --color-white: rgb(255,255,255);
  --color-gray-bg: rgb(247,247,247);
  --color-text: rgb(51,51,51);
}

html {
  font-family: sans-serif;
}

/* 全ての要素と疑似要素 */
html *,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--color-text);
  background: #f2f2f2;
}

a {
  /* リンクのデフォルト色を消す */
  color: inherit;
  text-decoration: none;
}

/* 全体の設定 */
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== */
/* ヘッダー・navメニュー */
/* ===================== */

[id] {
  scroll-margin-top: 100px; /* ← ヘッダーの高さに合わせて調整 */
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* 深紫色 + 透過 */
  background: rgba(38,0,48,0.88);
  /* 背景ぼかし */
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-gold2);
}

.global-nav {
  display: flex;
  font-size: 14px;
  letter-spacing: 0.03em;
  gap: 24px;
}

.global-nav a {
  color: var(--color-white);
  padding: 4px 0;
  position: relative;
}

.global-nav a::after {
  content: "";
  /* relativeの座標を基準に下線設定 */
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--color-gold1);
  transition: width 0.3s ease;
}

/* ホバーの時に下線を全幅 */
.global-nav a:hover::after{
  width: 100%;
}
/* ===================== */
/* ヒーロー */
/* ===================== */

.hero {
  background: radial-gradient(
     circle at center 40px,
     rgb(255,255,255) 0%,
     rgb(38,0,48) 30%,
     rgb(38,0,48) 100%);
  color: var(--color-white);
  padding: 72px 0 10px;
}

/* これが先に効かせてある
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
} */

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 3px solid #D3BC3A;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.hero-copy {
  text-align: center;
}

h1 {
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-top: 0.5em;
}

.kakuu {
  font-size: 12px;
  color: rgb(255,255,255,0.6);
  margin-top: 0;
}

.h1span1 {
  /* display: block; */
  margin-top: 1.5em;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

/* ===================== */
/* CTAバンド */
/* ===================== */

.cta-band {
  background: rgb(38,0,48);
  padding-top: 30px;
  padding-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

.cta-copy {
  display: inline-block;
  font-size: 18px;
  line-height: 1.2;
  padding-bottom: 0.5em;
  background:linear-gradient(90deg, #03a8f5, #f83ea4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* ===================== */
/* 共通セクション */
/* ===================== */

.section {
  padding: 64px 0;
  background: var(--color-white);
}

.section-gray {
  background: var(--color-gray-bg);
}

/* あらすじ・相関図 */
.section-title {
  font-size: 22px;
  margin: 0 0 24px;
  color: var(--color-purple);
  border-left: 4px solid var(--color-gold1);
  padding-left: 12px;
}

.section-body p {
  line-height: 2.0;
}

.big {
  font-size: 1.3em;
  line-height: 1;
  padding-right: 2px;
  color: var(--color-gold1);
}

/* グッズ */
.section-title2 {
  font-size: 22px;
  margin: 0 0 24px;
  color: var(--color-gold2);
  border-left: 4px solid var(--color-white);
  padding-left: 12px;
}

.section-title3 {
  font-size: 22px;
  margin: 0 0 24px;
  text-align: center;
  color: var(--color-gold2);
}

.red {
  color: var(--color-red);
}

/* 相関図 */
.relation-box img {
  width: 100%;
  height: auto;
}

/* ===================== */
/* グッズ + 診断 */
/* ===================== */

.goods-diagnosis {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
}

.goods-box {
  background: var(--color-purple);
  color: var(--color-white);
  border-radius: 16px;
  padding: 24px;
}

.goods-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* .goods-image {
  border-radius: 12px;
  background: #444;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.kami-cards {
  display: flex;
  /* justify-content: space-between; */
  gap: 10px;
  margin-bottom: 12px;
}

.kami-card {
  padding: 0;
  width: 19%;
  height: 200px;
  background: #fff;
  border: 3px solid #D3BC3A;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.kami-card img {
  width: 150%;
  height: 150%;
  object-fit: contain;
}

.kami-card:hover {
  transform: translateY(-5px);
}

/* .kami-card img {
  padding: 0;
  background-color: rgb(255, 255, 255);
  width: 100%;
  height: 100%;
  object-fit: scale-down;
} */

.diagnosis-box {
  background: var(--color-gray-bg);
  border-radius: 16px;
  padding: 24px;
}

.diagnosis-title {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--color-purple);
}

.diagnosis-list {
  padding-left: 20px;
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.7;
}

/* ===================== */
/* 予約セクション */
/* ===================== */

.section-reserve {
  background: linear-gradient(135deg, #260030 0%, #5c002e 60%, #EB5345 100%);
  color: var(--color-white);
}

.section-reserve .section-title {
  border-left: none !important;
  padding-left: 0;
}

.reserve-inner {
  text-align: center;
}

.reserve-text {
  margin-bottom: 24px;
  line-height: 1.8;
}

/* ===================== */
/* ボタン */
/* ===================== */

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-full {
  width: 100%;
}

.btn-60 {
  width: 60%;
}

.btn-gold {
  background: var(--color-gold1);
  color: var(--color-purple);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-gold:hover {
  background: var(--color-gold2);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.btn-red {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-red:hover {
  background: #d23f34;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.btn-com {
  border-radius: 3px;
  margin-top: 2em;
  background: #5b026d;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #D3BC3A;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: none;
}

.btn-outline {
  border: 1px solid var(--color-white);
  color: var(--color-white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(246,218,64);
  color: var(--color-purple);
}

/* 評論家コメント・カルーセル */
/* ▼ 矢印ボタンの共通スタイル */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;               /* ボタンの幅 */
  height: 60px;              /* ボタンの高さ */
  background: rgba(0,0,0,0.5); /* 半透明の丸背景 */
  border-radius: 50%;         /* 丸ボタン */
  top: 50%;
  transform: translateY(-50%);
}

/* ▼ ホバーで光る */
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255,255,255,0.2);
}

/* ▼ デフォルトのアイコン消す */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none !important;
}

/* ▼ 自作の矢印を描く */
.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;     /* 矢印の線 */
  border-right: 3px solid #fff;
}

/* ▼ ← 左向きにする */
.carousel-control-prev-icon::before {
  transform: rotate(-135deg);
}

/* ▼ → 右向きにする */
.carousel-control-next-icon::before {
  transform: rotate(45deg);
}

/* ===================== */
/* お問い合わせフォーム */
/* ===================== */

/* フォーム全体の箱 */
#formWrapper {
  max-width: 600px;
  margin: 40px auto;
  padding: 32px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(211,188,58,0.4);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 25px rgba(0,0,0,0.25);
}

/* ラベル */
#formWrapper label {
  color: #D3BC3A;
  font-weight: bold;
  letter-spacing: 0.03em;
}

/* 入力欄 */
#formWrapper input,
#formWrapper textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 4px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 2px solid rgba(211,188,58,0.3);
  background: rgba(255,255,255,0.1);
  color: #260030;
  font-size: 16px;
  outline: none;
  transition: 0.25s ease;
}

/* placeholder（薄め） */
#formWrapper input::placeholder,
#formWrapper textarea::placeholder {
  color: rgba(38,0,48, 0.3); /* ← 白を45%にして薄め */
  opacity: 1; /* Safari対策 */
}

/* 入力時の光る演出 */
#formWrapper input:focus,
#formWrapper textarea:focus {
  border-color: #D3BC3A;
  box-shadow: 0 0 10px rgba(211,188,58,0.5);
  background: rgba(255,255,255,0.18);
}

/* 送信後のメッセージ */
#thxMessage {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  color: #fff;
  padding: 32px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(211,188,58,0.4);
  backdrop-filter: blur(4px);
}

.btn-form {
  width: 100px;
  animation: rainbow 6s ease infinite;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 18px;
  gap: 6px;
  box-shadow: 0 0 10px rgba(255, 182, 255, 0.7);
  text-shadow:
  -1px -1px 0 #5c5a5a,
  1px -1px 0 #5c5a5a,
  -1px  1px 0 #5c5a5a,
  1px  1px 0 #5c5a5a;
  background: linear-gradient(90deg,#ff66c4, #ffde59, #72f0a6, #4ac3ff, #b987ff, #ff66c4);
}

.thx {
  color: var(--color-gold1);
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
  margin-top: 1em;
}

.thx-p {
  color: var(--color-purple);
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  margin-top: 2em;
  margin-bottom: 2em;
}

/* ===================== */
/* フッター */
/* ===================== */

.site-footer {
  background: var(--color-purple);
  color: var(--color-white);
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.footer-sns span {
  display: block;
  font-size: 12px;
}

.sns-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sns-item {
  border-radius: 999px;
  width: 120px;
  border: 1px solid var(--color-gold1);
  padding: 6px 14px;
  font-size: 12px;
}

.footer-copy {
  font-size: 10px;
  opacity: 0.7;
}

.footer-copy span {
  font-size: 12px;
  text-decoration: underline;
}

/* ticket.html */


/* ===================== */
/* レスポンシブ */
/* ===================== */

@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    gap: 8px;
    height: auto;
    padding: 8px 0;
  }

  .global-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hero {
    padding-top: 80px;
  }

  .goods-diagnosis {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
