@charset "UTF-8";

body {
  margin: 0;
  font-family: sans-serif;

  background-image: url("image/decoration/galaxy.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  background-color: #05010d;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: rgba(0,0,20,0.35);

  pointer-events: none;
}

/* ===== ヘッダー ===== */

/* ===== ハンバーガー初期非表示 ===== */
.hamburger {
  display: none;
}

header {
  color: white;
  padding: 10px 20px;
   background: transparent;
}

.header-inner {
     display: inline-flex; /* ← 横幅を中身だけにする */
  align-items: center;
  gap: 40px;

  position: relative;

  padding:
    14px 80px 14px 24px;

  background:
    linear-gradient(
      180deg,
      rgba(5,5,20,0.95),
      rgba(0,0,0,0.98)
    );
  /* 右端を斜めカット */
  clip-path: polygon(
    0 0,
    100% 0,
    90% 100%,
    0 100%
  );
}

.header-inner::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      rgba(255,215,0,0.0),
      rgba(255,215,0,0.9),
      rgba(255,215,0,0.0)
    );

  box-shadow:
    0 0 8px rgba(255,215,0,0.7);
}

.logo img { height: 40px; }

nav {
  display: flex;
  gap: 20px;
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 10px;
}

nav a {
  color: #e6d8ff; /* 薄いアメジスト */
  text-decoration: none;
  font-weight: bold;

  /* ほんのり発光 */
  text-shadow:
    0 0 4px rgba(200,150,255,0.8),
    0 0 8px rgba(120,80,255,0.6);

  transition: 0.3s;
}

nav a:hover {
  color: #ffd700; /* ゴールド */
  text-shadow:
    0 0 6px rgba(255,215,0,0.9),
    0 0 12px rgba(255,200,100,0.8);
}

#overlay {

  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.6);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;

  z-index: 90;
}

#overlay.active {

  opacity: 1;
  visibility: visible;
}

/* ===== パンくず ===== */
.breadcrumb {
  padding: 8px 20px;
  background: transparent;
}

/* ===== 3カラム ===== */
.container { display: flex; }

.spacer { flex: 1; }

.left {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 8px;

  width: 15%;

  padding: 14px;

  background:
    linear-gradient(
      180deg,
      rgba(8, 5, 25, 0.88),
      rgba(3, 2, 12, 0.95)
    );

  backdrop-filter: blur(8px);

  border: 1px solid rgba(167, 139, 250, 0.7);

  border-radius: 14px;

  overflow: hidden;

  box-shadow:
    0 0 20px rgba(167, 139, 250, 0.35),
    inset 0 0 18px rgba(167, 139, 250, 0.12);
    
}

.left {
  z-index: 100;
}

/* 四隅装飾 */
.left::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: 14px;

  pointer-events: none;

  background:
    linear-gradient(#d7b8ff,#d7b8ff) top left / 22px 2px no-repeat,
    linear-gradient(#d7b8ff,#d7b8ff) top left / 2px 22px no-repeat,

    linear-gradient(#d7b8ff,#d7b8ff) top right / 22px 2px no-repeat,
    linear-gradient(#d7b8ff,#d7b8ff) top right / 2px 22px no-repeat,

    linear-gradient(#d7b8ff,#d7b8ff) bottom left / 22px 2px no-repeat,
    linear-gradient(#d7b8ff,#d7b8ff) bottom left / 2px 22px no-repeat,

    linear-gradient(#d7b8ff,#d7b8ff) bottom right / 22px 2px no-repeat,
    linear-gradient(#d7b8ff,#d7b8ff) bottom right / 2px 22px no-repeat;
}

.left h2 {
    position: relative;

  margin: 10px 0 6px;

  padding: 8px 0;

  text-align: center;

  font-size: 18px;

  color: #ffffff;

  letter-spacing: 1px;

  background: transparent;

  border: none;

  text-shadow:
    0 0 8px rgba(220,190,255,0.9);
}

/* タイトル左右の星 */

.left h2::before,
.left h2::after {

  content: "✦";

  position: absolute;

  top: 0%;

  transform: translateY(-0%);

  color: rgba(255,215,0,0.7);

  font-size: 28px;
}

.left h2::before {
  left: 0px;
}

.left h2::after {
  right: 0px;
}

/* 金ライン */

.left h2 {
  border-top: 1px solid rgba(255,215,0,0.7);
  border-bottom:
    1px solid rgba(255,215,0,0.7);
}

/* ライン両端の光 */

.left h2::selection {
  background: transparent;
}

.left a {
    

  position: relative;

  display: block;

  padding: 4px 6px 4px 18px;

  color: #d3c4ff;

  font-size: 15px;

  text-decoration: none;

  transition: all 0.2s ease;

}

.left a:hover {
  color: #ffd700; /* 金に変化 */

  text-shadow:
    0 0 6px rgba(200,150,255,0.6),
    0 0 12px rgba(150,50,255,0.4);

  border-left: 2px solid #ffd700;
}

.center {
  position: relative;

  width: 60%;

  padding: 16px;

  margin: 0 6px;

  border-radius: 12px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(12, 6, 35, 0.92),
      rgba(3, 2, 15, 0.96)
    );

  backdrop-filter: blur(10px);

  border:
    1px solid rgba(255,215,0,0.55);

  box-shadow:
    0 0 20px rgba(255,215,0,0.18),
    0 0 40px rgba(120,0,255,0.2),
    inset 0 0 20px rgba(255,255,255,0.04);

  
}


.center::before {
  content: "";
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid #ffd700; /* 黄色 */
  pointer-events: none;      /* 枠線がクリックの邪魔にならないようにする */
}

.center h2 {
  position: relative;

  margin-bottom: 20px;

  padding: 10px 0;

  padding-left: 80px;

  font-size: 32px;

  letter-spacing: 2px;

  color: #b7b8f1;

  background: transparent;

  border: none;

  text-shadow:
    0 0 10px rgba(148, 230, 255, 0.603),
    0 0 20px rgba(212, 212, 188, 0.404);

  border-top:
    1px solid rgba(255,215,0,0.4);

  border-bottom:
    1px solid rgba(255,215,0,0.4);
}

.center h2::before {
  content: "";
  position: absolute;
  
  left: 2%;

  top: 54%;

  transform: translateY(-50%);
  background-image: url(image/decoration/magic-icon.png);
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;

  filter:
    drop-shadow(0 0 6px rgba(255,215,0,0.7));

}



.left, .center, .right {
  position: relative;
}

.left::after,
.center::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 2px;
  height: 80%;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(180, 120, 255, 0.8),
    transparent
  );

  box-shadow:
    0 0 6px rgba(180,120,255,0.8),
    0 0 12px rgba(120,0,200,0.6);
}



/* =========================
   画像
========================= */

.move-image img {

  width: 100%;

  display: block;

  border-radius: 10px;

  border:
    1px solid rgba(255,255,255,0.08);
}


.zoom-image {

  cursor: zoom-in;

  transition: 0.25s;
}

.zoom-image:hover {

  transform: scale(1.02);

  filter: brightness(1.05);
}

/* モーダル本体 */
.image-modal {

  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.9);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.25s;

  z-index: 9999;
}

/* 開いた状態 */
.image-modal.active {

  opacity: 1;
  visibility: visible;
}

/* 拡大画像 */
.modal-content {

  width: auto;
  height: auto;

  max-width: 95vw;
  max-height: 95vh;

  object-fit: contain;

  border:
    2px solid rgba(255,215,0,0.7);

  box-shadow:
    0 0 30px rgba(120,0,255,0.4);

  border-radius: 10px;
}

/* 閉じるボタン */
.modal-close {

  position: absolute;

  top: 20px;
  right: 30px;

  font-size: 48px;

  color: white;

  cursor: pointer;

  text-shadow:
    0 0 10px rgba(255,255,255,0.6);
}

.command {
  width: 40px;
  height: 40px;
  position: relative;
  top: 8px;
}

.route-header {

  display: flex;

  justify-content: space-between;

  align-items: baseline;

  margin-bottom: 6px;
}

.route-toggle {

  padding: 8px 14px;

  border: none;

  border-radius: 10px;

  cursor: pointer;

  color: #f3e8ff;

  font-weight: bold;

  background:
    linear-gradient(
      180deg,
      rgba(60,30,100,0.95),
      rgba(20,10,40,0.98)
    );

  border:
    1px solid rgba(255,215,0,0.25);

  transition: 0.25s;
}

.route-toggle:hover {

  color: #f7ec52;

  box-shadow:
    0 0 12px rgba(255,215,0,0.2);
}





/*フッター*/
footer {
    margin: 0 auto;
    background: #000;
    text-align: center;
    padding: 4px 0;
}
footer p {
    color: #fffeee;
    font-size: 0.9rem;
}

.wrapper {
    margin: 0 auto;
    margin-top: 8px;
}

/* =========================
   コンボボタン
========================= */

.combo-select {

  margin-bottom: 20px;
}

.combo-scroll {

  display: flex;

  gap: 12px;

  overflow-x: auto;
  overflow-y: hidden;

  flex-wrap: nowrap;

  padding: 10px 4px 16px;

  scroll-behavior: smooth;

  scrollbar-width: thin;

  scrollbar-color:
    rgba(97,81,247,0.5)
    transparent;
}

.combo-scroll::-webkit-scrollbar {
  height: 6px;
}

.combo-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
}

.combo-scroll::-webkit-scrollbar-thumb {

  background:
    linear-gradient(
      90deg,
      #5d2cff,
      #ffd700
    );

  border-radius: 10px;

  box-shadow:
    0 0 8px rgba(255,215,0,0.5);
}

.combo-card {

  position: relative;

  min-width: 150px;
  height: 48px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 26px;

  color: #f3dcff;

  font-size: 20px;
  font-weight: bold;

  letter-spacing: 1px;

  cursor: pointer;

  border: none;
  outline: none;

  background:
    linear-gradient(
      180deg,
      rgba(55,20,110,0.95),
      rgba(20,8,45,0.98)
    );

  clip-path: polygon(
    10% 0%,
    90% 0%,
    100% 50%,
    90% 100%,
    10% 100%,
    0% 50%
  );

  box-shadow:
    0 0 10px rgba(140,80,255,0.18),
    inset 0 0 10px rgba(255,255,255,0.04);

  transition: 0.25s;
}

/* 外枠 */

.combo-card::before {

  content: "";

  position: absolute;

  inset: 1px;

  clip-path: inherit;

  border-top:
    1px solid rgba(255,215,0,0.7);

  border-bottom:
    1px solid rgba(255,215,0,0.7);

  pointer-events: none;
}

/* ホバー */

.combo-card:hover {

  transform: translateY(-2px);

  color: #fde86d;

  box-shadow:
    0 0 12px rgba(255,215,0,0.25),
    0 0 20px rgba(140,80,255,0.2);
}

/* 選択中 */

.combo-card.active {

  color: #eed85a;

  text-shadow:
    3px 3px 2px #000000;

  background:
    linear-gradient(
      180deg,
      rgba(112,49,207,0.98),
      rgba(35,10,70,1)
    );

  box-shadow:
    0 0 4px rgba(255,255,220,0.95),
    0 0 10px rgba(255,230,120,0.8),
    0 0 20px rgba(255,215,0,0.65),
    0 0 40px rgba(255,215,0,0.45),
    inset 0 0 8px rgba(255,240,180,0.35);
}

.combo-card.active::before {

  border-top:
    2px solid rgba(255,215,0,0.8);

  border-bottom:
    2px solid rgba(255,215,0,0.8);

  box-shadow:
    0 0 10px rgba(255,235,121,0.6);
}

/* =========================
   コンボ全体レイアウト
========================= */

.combo-layout {

  display: flex;

  gap: 16px;

  align-items: flex-start;

  margin-top: 10px;
}

/* =========================
   左エリア
========================= */

.combo-left {

  width: 58%;

  display: flex;

  flex-direction: column;

  gap: 12px;
}

/* =========================
   共通パネル
========================= */

.combo-panel {

  position: relative;

  padding: 18px;

  border-radius: 16px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(12,6,35,0.94),
      rgba(4,3,18,0.98)
    );

  border:
    1px solid rgba(59, 39, 148, 0.685);

  box-shadow:
    0 0 18px rgba(120,0,255,0.18),
    inset 0 0 12px rgba(255,255,255,0.03);

  backdrop-filter: blur(8px);
}



/* =========================
   タイトル
========================= */

.combo-title {

  margin: 0 0 10px;

  font-size: 24px;

  color: #f3e8ff;

  letter-spacing: 2px;

  text-shadow:
    0 0 12px rgba(180,120,255,0.6);
}

.combo-sub {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 18px;

  color: #ddd6fe;

  font-size: 18px;
}

.combo-star {

  color: #ffd700;

  letter-spacing: 2px;

  text-shadow:
    0 0 10px rgba(255,215,0,0.7);
}

/* =========================
   動画
========================= */

.combo-video video {

  width: 100%;

  display: block;

  border-radius: 12px;

  border:
    1px solid rgba(255,255,255,0.08);

  aspect-ratio: 16 / 9;

  object-fit: cover;
}

/* =========================
   ゲージエリア
========================= */

.combo-gauge-wrap {

  display: flex;

  gap: 18px;
}

.combo-gauge-box {

  width: 50%;
}

/* 小タイトル */

.combo-gauge-box h4 {

  margin: 0 0 16px;

  padding-bottom: 10px;

  font-size: 20px;

  color: #8f9ffc;;

  border-bottom:
    1px solid rgba(255,255,255,0.08);

  text-shadow:
    0 0 10px rgba(255,215,0,0.4);
}

/* SA画像 */

.combo-gauge-box img {

  width: 100%;

  display: block;

  border-radius: 10px;
}

/* Dゲージ */

.drive-cost {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 18px;

  height: 60px;
}

.drive-label {

  font-size: 34px;

  font-weight: bold;

  color: #9be564;

  text-shadow:
    0 0 12px rgba(140,255,120,0.4);
}

.drive-value {

  font-size: 56px;

  font-weight: bold;
}

.drive-value.minus {

  color: #9be564;

  text-shadow:
    0 0 12px rgba(140,255,120,0.45);
}

/* =========================
   画像
========================= */

.combo-image-grid {

  display: flex;

  gap: 14px;
}

.combo-image-box {

  width: 50%;
}

.combo-image-box h4 {

  margin: 0 0 10px;

  color: #8f9ffc;;

  font-size: 22px;

  text-shadow:
    0 0 10px rgba(255,215,0,0.4);
}

.combo-image-box img {

  width: 100%;

  display: block;

  border-radius: 10px;

  margin-bottom: 10px;
}

.combo-image-box p {

  margin: 0;

  color: #ddddff;

  font-size: 14px;

  line-height: 1.7;
}

/* =========================
   右エリア
========================= */

.combo-right {

  width: 42%;

  display: flex;

  flex-direction: column;

  gap: 12px;
}

/* =========================
   小タイトル
========================= */

.combo-mini-title {

  margin: 0 0 14px;

  padding-bottom: 10px;

  font-size: 18px;

  color: #f3e8ff;

  border-bottom:
    1px solid rgba(255,255,255,0.08);

  text-shadow:
    0 0 10px rgba(180,120,255,0.5);
}

/* =========================
   入力ルート
========================= */

.combo-route {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 10px;
}

.route-step {

  min-width: 45px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0 12px;

  border-radius: 10px;

  color: white;

  font-size: 16px;

  font-weight: bold;

  background:
    linear-gradient(
      180deg,
      rgba(40,40,70,0.95),
      rgba(15,15,30,0.98)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 0 10px rgba(140,80,255,0.15);
}

/* DR */

.route-step.drive {

  color: #9eff6b;

  border:
    1px solid rgba(120,255,120,0.35);

  box-shadow:
    0 0 12px rgba(120,255,120,0.25);
}

/* 締め */

.route-step.od {

  color: #ffd86b;

  border:
    1px solid rgba(255,215,0,0.35);

  box-shadow:
    0 0 12px rgba(255,215,0,0.2);
}

/* 矢印 */

.route-arrow {

  font-size: 24px;

  color: #c084ff;
}

/* =========================
   ダメージ / 有利F
========================= */

.combo-data-wrap {

  display: flex;

  gap: 14px;
}

.combo-data-box {

  flex: 1;

  padding: 18px;

  border-radius: 12px;

  background:
    rgba(255,255,255,0.03);

  border:
    1px solid rgba(255,255,255,0.05);
}

.combo-data-box h4 {

  margin: 0 0 8px;

  font-size: 22px;

  color: #8f9ffc;
}

.combo-value {

  margin: 0;

  font-size: 32px;

  font-weight: bold;

  color: rgb(221, 199, 250);
}

.combo-value.plus {

  color: #7dff9b;

  text-shadow:
    0 0 12px rgba(120,255,120,0.4);
}

.frame-note {

  color: #d4d4d4;

  font-size: 15px;
}

/* =========================
   解説
========================= */

.combo-text {

  color: #e8e8ff;

  font-size: 17px;

  line-height: 1.9;
}

.combo-text ul {

  margin: 0;

  padding-left: 22px;
}

.combo-text li {

  margin-bottom: 12px;
}



/* =========================
   関連リンク
========================= */

.combo-links {

  display: flex;

  flex-direction: column;

  gap: 12px;
}

.combo-links a {

  display: block;

  padding: 16px 18px;

  border-radius: 10px;

  color: #f3e8ff;

  text-decoration: none;

  font-size: 18px;

  background:
    linear-gradient(
      180deg,
      rgba(40,20,70,0.95),
      rgba(18,10,35,0.98)
    );

  border:
    1px solid rgba(180,120,255,0.2);

  transition: 0.25s;
}

.combo-links a:hover {

  transform: translateY(-2px);

  color: #ffe082;

  box-shadow:
    0 0 14px rgba(255,215,0,0.2);
}

/* ===== ノートPC最適化（1024px前後） ===== */
@media (max-width: 1280px)and (min-width: 901px)  {

  /* ===== 全体余白 ===== */
  .container {
    gap: 8px;
  }

  /* ===== 左メニュー ===== */
  .left {
    width: 16%;
    padding: 10px;
  }

  .left h2 {
    font-size: 14px;
    padding: 6px 0;
  }

  .left h2::before,
  .left h2::after {
    font-size: 22px;
  }

  .left a {
    font-size: 13px;
    padding: 3px 4px 3px 12px;
  }

  /* ===== センター ===== */
  .center {
    width: 44%;
    padding: 12px;
  }

  .center h2 {
    font-size: 24px;
  }

  .center h2::before,
  .center h2::after {
    font-size: 28px;
  }

  

  /* ===== ナビ ===== */
  nav a {
    font-size: 14px;
  }
}

/*タブレット*/

@media(max-width:900px) {
      /* ===== ヘッダー ===== */
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin: 2px;
  }

  nav {
    width: 96%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2px;
  }

  nav a {
    padding: 2px;
    font-size: 14px;
  }

  

  /* ===== 3カラム → 縦 ===== */
  .container {
    flex-direction: column;
    gap: 10px;
  }

  .spacer {
    display: none;
  }

  .left,
  .center,
  .right {
    width: 95%;
    margin: auto;
    padding: 0;
  }

  /* 区切り線消す（スマホでは邪魔） */
  .left::after,
  .center::after {
    display: none;
  }

  /* ===== 左メニュー ===== */
  .left {
    padding: 10px;
  }

  .left a {
    font-size: 14px;
  }

  /*メインメニュー*/

  .center h2 {
    font-size:22px;
  }

  

  /* ===== 見出し ===== */
  h2 {
    font-size: 16px;
    padding: 8px 10px;
  }

  /* ===== フッター余白 ===== */
  footer {
    margin-top: 20px;
  }

  .menu-grid {

    grid-template-columns: repeat(3, 140px);

    gap: 14px;
  }

  .move-scroll {

    gap: 10px;

    padding-bottom: 12px;
  }

  .move-card {

    min-width: 118px;

    height: 38px;

    font-size: 15px;

    padding: 0 18px;
  }

}

/*スマホ*/

@media (max-width: 600px) {

  /* ===== ヘッダー ===== */

    header {
    position: relative;
    padding: 10px;
  }

  .header-inner {
  width: 100%;

    padding:
      14px 18px;

    clip-path: none;

    display: flex;
    justify-content: space-between;
    align-items: center;
  }


  nav {
    position: absolute;

    top: 78px;
    left: 10px;
    right: 10px;

    display: flex;
    flex-direction: column;

    gap: 0;

    padding: 10px;

    background:
      rgba(5,5,20,0.96);

    border:
      1px solid rgba(180,120,255,0.4);

    border-radius: 12px;

    backdrop-filter: blur(10px);

    box-shadow:
      0 0 20px rgba(120,0,255,0.3);

         /* 初期非表示 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition: 0.3s;

    z-index: 998;
  }

   /* 開いた時 */
  nav.active {

    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  nav a {
      padding: 14px 10px;

    border-bottom:
      1px solid rgba(255,255,255,0.08);

    font-size: 16px;
  }

    nav a:last-child {
    border-bottom: none;
  }

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

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


  

  /* ===== 3カラム → 縦 ===== */
  .container {
    flex-direction: column;
    gap: 10px;
  }

  .spacer {
    display: none;
  }

  .left,
  .center,
  .right {
    width: 95%;
    margin: auto;
    padding: 0;
  }

  /* 区切り線消す（スマホでは邪魔） */
  .left::after,
  .center::after {
    display: none;
  }

  .left::before {
    display: none;
  }

  /* ===== 左メニュー ===== */
  .left {
 position: fixed;

    top: 0;
    left: -320px;

    width: 260px;
    height: 100vh;

    z-index: 9999;

    overflow-y: auto;

    transition: 0.35s ease;

    border-radius: 0 18px 18px 0;

    padding:
      80px 14px 30px;
  }

        /* 開いた時 */
  .left.active {
    left: 0;
  }

    .menu-overlay {

    position: fixed;

    inset: 0;

    background:
      rgba(0,0,0,0.55);

    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;

    z-index: 9990;
  }

    .menu-overlay.active {

    opacity: 1;
    visibility: visible;
  }

    /* ハンバーガー */
  .hamburger {

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 6px;

    position: fixed;

    top: 14px;
    left: 14px;

    width: 44px;
    height: 44px;

    z-index: 10000;

    border:
      1px solid rgba(255,215,0,0.5);

    border-radius: 10px;

    background:
      rgba(5,5,20,0.9);

    backdrop-filter: blur(6px);

    cursor: pointer;
  }

   .hamburger span {

    width: 24px;
    height: 2px;

    margin: 0 auto;

    background: #ffd700;

    box-shadow:
      0 0 8px rgba(255,215,0,0.8);

    transition: 0.3s;
  }

   /* ×変形 */
  .hamburger.active span:nth-child(1) {
    transform:
      translateY(8px)
      rotate(45deg);
  }

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

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


  .left a {
    font-size: 14px;
  }

  /*メインメニュー*/

  .center h2 {
    font-size:22px;
  }

  .center::before {
    display: none;
}

  

  /* ===== 見出し ===== */
  h2 {
    font-size: 16px;
    padding: 8px 10px;
  }

   .combo-layout {

    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .combo-left,
  .combo-right {

    width: 100%;
    display: contents;
    gap: 2px;
  }

  .combo-scroll {

  gap: 8px;

  padding: 6px 4px 12px;
}

.combo-card {

  min-width: 92px;

  height: 34px;

  padding: 0 12px;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 0;

  clip-path: polygon(
    6% 0%,
    94% 0%,
    100% 50%,
    94% 100%,
    6% 100%,
    0% 50%
  );
}

/* 発光少し弱め */

.combo-card.active {

  box-shadow:
    0 0 3px rgba(255,255,220,0.9),
    0 0 8px rgba(255,230,120,0.7),
    0 0 16px rgba(255,215,0,0.45);
}

.combo-panel {

  padding: 12px;

  border-radius: 12px;
}

/* タイトル */

.combo-title {

  font-size: 18px;

  letter-spacing: 1px;

  margin-bottom: 6px;
}

.combo-sub {

  font-size: 14px;

  margin-bottom: 12px;
}

/* 動画 */

.combo-video video {

  border-radius: 8px;
}

/* ゲージ */

.combo-gauge-wrap {

  gap: 10px;
}

.combo-gauge-box h4 {

  font-size: 15px;

  margin-bottom: 10px;

  padding-bottom: 6px;
}

/* ドライブゲージ */

.drive-cost {

  gap: 10px;

  height: 42px;
}

.drive-label {

  font-size: 22px;
}

.drive-value {

  font-size: 34px;
}

/* 画像 */

.combo-image-grid {

  gap: 10px;
}

.combo-image-box h4 {

  font-size: 16px;

  margin-bottom: 6px;
}

.combo-image-box p {

  font-size: 12px;

  line-height: 1.6;
}

/* ルート */

.combo-route {

  gap: 6px;
}

.route-step {

  min-width: 34px;

  height: 30px;

  padding: 0 8px;

  font-size: 12px;

  border-radius: 8px;
}

.route-arrow {

  font-size: 16px;
}

/* ダメージ */

.combo-data-wrap {

  gap: 8px;
}

.combo-data-box {

  padding: 12px;
}

.combo-data-box h4 {

  font-size: 15px;
}

.combo-value {

  font-size: 22px;
}

.frame-note {

  font-size: 11px;
}

/* 解説 */

.combo-text {

  font-size: 13px;

  line-height: 1.7;
}

.combo-text li {

  margin-bottom: 8px;
}

/* 関連リンク */

.combo-links a {

  padding: 12px;

  font-size: 14px;

  border-radius: 8px;
}

/* 動画 */



.combo-video {
  order: 1;
}

/* 入力ルート */
.combo-route-panel {
  width: 100%;
    box-sizing: border-box;
  order: 2;
}

/* ダメージ */
.combo-damage-panel {
  width: 100%;
    box-sizing: border-box;
  order: 3;
}

.combo-kaisetu {
  width: 100%;
    box-sizing: border-box;
  order:6;
}

.combo-link {
  width: 100%;
    box-sizing: border-box;
  order:7;
}

.combo-ss {
  width: 100%;
    box-sizing: border-box;
  order: 5;
}

.combo-sa {
  width: 100%;
    box-sizing: border-box;
  order: 4;
}

  /* ===== フッター余白 ===== */
  footer {
    margin-top: 20px;
  }
  
 .move-select {
    width: 100%;

    overflow: hidden;
  }

  .move-scroll {

    width: 100%;

    box-sizing: border-box;

    overflow-x: auto;

    overflow-y: hidden;

    padding: 8px 6px 12px;

    gap: 8px;
  }

  .move-card {

    min-width: auto;

    width: auto;

    flex: 0 0 auto;

    white-space: nowrap;

    font-size: 12px;

    padding: 0 14px;

    height: 36px;
  }

  

}

