@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(118, 140, 161, 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);
}

/* プロフィールページ用 */

.ingrid-profile-top {

  display: flex;

  gap: 24px;

  margin-bottom: 40px;
}

.costume-area {

  flex: 2;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.costume-card {

  background:
    rgba(15, 10, 35, .95);

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

  border-radius: 16px;

  overflow: hidden;

  text-align: center;

  box-shadow:
    0 0 15px rgba(180, 120, 255, .15);
}

.costume-card img {

  width: 100%;

  height: 400px;

  border-radius: 12px;

  object-fit: contain;

  display: block;

}

.costume-card h3 {

  color: #ffe89a;

  font-size: 24px;

  margin: 15px 0 8px;
}

.costume-card p {

  color: #ddd;

  padding: 0 15px 20px;
}

.profile-box {

  width: 420px;

  background:
    rgba(15, 10, 35, .95);

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

  border-radius: 18px;

  padding: 25px;
}

.profile-box h2 {

  text-align: center;

  color: #ffe89a;

  font-size: 32px;

  margin-bottom: 20px;

  text-shadow:
    0 0 10px rgba(251, 253, 116, 0.603),
    0 0 20px rgba(167, 167, 101, 0.404);

}

.profile-box table {

  width: 100%;

  border-collapse: collapse;
}

.profile-box th {

  width: 110px;

  color: #ffe89a;

  text-align: left;

  padding: 16px 10px;

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

.profile-box td {

  color: #fff;

  padding: 16px 10px;

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

.ingrid-strengths {

  margin-top: 50px;
}

.ingrid-strengths h2 {

  font-size: 28px;

  color: #ffe89a;

  margin-bottom: 16px;

  text-shadow:
    0 0 10px rgba(251, 253, 116, 0.603),
    0 0 20px rgba(167, 167, 101, 0.404);
}

.strength-area {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;
}

.strength-box {

  background:
    rgba(15, 10, 35, .95);

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

  border-radius: 18px;

  padding: 25px;
}

.strength-box h3 {

  text-align: center;

  color: #8fffd4;

  font-size: 24px;

  margin-bottom: 20px;
}

.weakness h3 {

  color: #cd8fff;
}

.ability-card {

  background:
    rgba(255, 255, 255, .04);

  border-radius: 12px;

  padding: 18px;

  margin-bottom: 15px;
}

.ability-card h4 {

  color: #a49aff;

  font-size: 20px;

  margin-bottom: 10px;
}

.ability-card p {

  color: #ddd;

  line-height: 1.8;
}

.true-ingrid {

  margin-top: 32px;
}

.true-ingrid h2 {

  font-size: 28px;

  color: #ffe89a;

  margin-bottom: 16px;

  text-shadow:
    0 0 10px rgba(251, 253, 116, 0.603),
    0 0 20px rgba(167, 167, 101, 0.404);
}

.true-ingrid-content {

  display: flex;

  gap: 30px;

  align-items: flex-start;
}

.true-ingrid-video {

  flex: 1;
}

.true-ingrid-video video {

  width: 100%;

  border-radius: 18px;

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

  box-shadow:
    0 0 20px rgba(255, 215, 0, .15);
}

.true-ingrid-info {

  flex: 1;

  display: flex;

  flex-direction: column;

  gap: 15px;
}

.true-card {

  background:
    rgba(15, 10, 35, .95);

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

  border-radius: 16px;

  padding: 20px;
}

.true-ingrid-info h3 {

  color: #a49aff;

  font-size: 22px;

  margin-bottom: 10px;
}

.true-card p {

  color: #ddd;

  line-height: 1.8;
}

.true-ingrid-video h3 {
  color: #ffe89a;

  font-size: 22px;

  margin-bottom: 10px;
}

.face-gallery {

  margin-top: 30px;
}

.face-gallery h2 {

  color: #ffe89a;

  font-size: 28px;

  margin-bottom: 24px;

  text-shadow:
    0 0 10px rgba(251, 253, 116, 0.603),
    0 0 20px rgba(167, 167, 101, 0.404);
}

.face-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}

.face-card {

  background:
    rgba(15, 10, 35, .95);

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

  border-radius: 16px;

  overflow: hidden;

  text-align: center;

  transition: .3s;
}

.face-card:hover {

  transform: translateY(-4px);

  box-shadow:
    0 0 15px rgba(255, 215, 0, .3);
}

.face-card img {

  width: 100%;

  aspect-ratio: 1/1;

  object-fit: cover;

  cursor: pointer;

  display: block;
}

.face-card p {

  padding: 12px;

  color: #ddd;

  font-size: 15px;
}

/*通常技一覧*/



.move-select {

  margin-bottom: 20px;
}

.move-scroll-area{

    display:flex;

    align-items:center;

    gap:10px;

}

.move-scroll{

    flex:1;

    display:flex;

    gap:12px;

    overflow-x:auto;

    overflow-y:hidden;

    flex-wrap:nowrap;

    padding:10px 4px 16px;

    scroll-behavior:smooth;

    scrollbar-width:none;

}

.move-scroll::-webkit-scrollbar{

    display:none;

}



.scroll-btn{

    width:46px;

    height:58px;

    flex-shrink:0;

    border:none;

    border-radius:14px;

    cursor:pointer;

    font-size:28px;

    color:#fff;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.12),
            rgba(110,70,220,.35),
            rgba(20,10,40,.9)
        );

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.2),
        0 0 14px rgba(120,90,255,.35);

    transition:.2s;
}

.scroll-btn:hover{

    transform:scale(1.05);

    box-shadow:
        0 0 20px rgba(180,120,255,.6);

}

.scroll-btn:active{

    transform:scale(.96);

}


/* ボタン本体 */
.move-card {

  position: relative;

  min-width: 130px;
  height: 42px;

  flex-shrink: 0;

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

  padding: 0 24px;

  color: #f3dcff;

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

  letter-spacing: 1px;

  text-decoration: none;

  cursor: pointer;

  border: none;
  outline: none;

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

  /* 六角っぽいSF形状 */
  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;
}

.move-card {
  flex-shrink: 0;
}

/* 外枠 */
.move-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;
}



/* ホバー */
.move-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);
}

/* 選択中 */
.move-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.993),
    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);

}

.move-card.active::before {

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

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

/* =========================
   全体レイアウト
========================= */

.move-layout {

  display: flex;

  gap: 16px;

  margin-top: 8px;

  align-items: flex-start;
}

/* 左右幅 */
.left-area {
  width: 58%;
}

.right-area {
  width: 42%;
}

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

.move-panel {

  position: relative;

  margin-bottom: 8px;

  padding: 14px;

  border-radius: 14px;

  overflow: hidden;

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

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

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

  backdrop-filter: blur(8px);
}

#id-3 {
  min-height: 358px;
}

#id-2 {
  min-height: 310px;
  padding-bottom: 4px;
}

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


.move-panel h3 {

  margin: 0 0 6px;

  padding-bottom: 10px;

  font-size: 32px;

  color: #ecd9ff;

  letter-spacing: 1px;

  border-bottom:
    1px solid rgba(180, 120, 255, 0.25);

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

.move-panel h4 {

  margin: 0 0 6px;

  padding-bottom: 10px;

  font-size: 18px;

  color: #ecd9ff;

  letter-spacing: 1px;

  border-bottom:
    1px solid rgba(180, 120, 255, 0.25);

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


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

.move-video video {

  width: 100%;

  display: block;

  border-radius: 10px;

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

/* =========================
   技性能テーブル
========================= */

/* 技性能2列 */

.spec-wrap {

  display: flex;

  gap: 18px;
}

.spec-wrap .spec-table {

  width: 50%;
}


.spec-table th {

  width: 60%;

  padding: 10px;

  text-align: left;

  color: #7ee7ff;

  font-weight: bold;

  border-bottom:
    1px solid rgba(120, 220, 255, 0.12);
}

.spec-table td {

  padding: 10px;

  color: #ffffff;

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

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

.move-image img {

  width: 100%;
  height: 165px;

  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 {

  max-width: 90%;
  max-height: 90%;

  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;
}

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

.move-text {

  color: #d9e2ff;

  line-height: 1.9;

  font-size: 18px;
}

.move-text p {

  margin: 0 0 10px;
}

/* 箇条書き */

.move-text ul {

  margin: 0;

  padding-left: 18px;
}

.move-text li {

  margin-bottom: 8px;
}

.move-text span {
  color: #e2e46b;
}

.move-content {
  display: none;
}

.move-content.active {
  display: block;
}

/* =========================
   基本アクション一覧
========================= */

.action-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 20px;

  margin-top: 20px;
}

/* =========================
   カード
========================= */

.action-card {

  position: relative;

  overflow: hidden;

  border-radius: 18px;

  padding: 14px;

  background:
    linear-gradient(180deg,
      rgba(18, 8, 45, 0.96),
      rgba(5, 3, 20, 0.98));

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

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

  transition: 0.25s;
}

.action-card:hover {

  transform: translateY(-4px);

  box-shadow:
    0 0 24px rgba(255, 215, 0, 0.18),
    0 0 40px rgba(120, 0, 255, 0.24);
}

/* =========================
   番号
========================= */

.action-number {

  position: absolute;

  top: 10px;
  left: 10px;

  width: 52px;
  height: 52px;

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

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

  color: #f3dcff;

  background:
    linear-gradient(180deg,
      #6f3cff,
      #2b0f66);

  clip-path: polygon(25% 0%,
      75% 0%,
      100% 50%,
      75% 100%,
      25% 100%,
      0% 50%);

  box-shadow:
    0 0 14px rgba(160, 100, 255, 0.6);
}

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

.action-card h3 {

  margin:
    4px 0 14px 70px;

  font-size: 32px;

  color: #f3e8ff;

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

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

.action-card video {

  width: 100%;

  border-radius: 12px;

  display: block;

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

  box-shadow:
    0 0 18px rgba(120, 0, 255, 0.2);
}

/* =========================
   説明
========================= */

.action-card p {

  margin-top: 14px;

  font-size: 17px;

  line-height: 1.8;

  color: #ddd6fe;
}

/* =========================
   見出し
========================= */

.action-header {

  position: relative;

  margin-bottom: 28px;

  padding:
    26px 20px;

  text-align: center;

  border-radius: 18px;

  overflow: hidden;

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

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

  box-shadow:
    0 0 24px rgba(120, 0, 255, 0.22),
    inset 0 0 18px rgba(255, 255, 255, 0.03);
}

/* 上下ライン */

.action-header::before,
.action-header::after {

  content: "";

  position: absolute;

  left: 40px;
  right: 40px;

  height: 1px;

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

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

.action-header::before {
  top: 12px;
}

.action-header::after {
  bottom: 12px;
}

/* タイトル */

.action-header h2 {

  position: relative;

  display: inline-block;

  margin: 0;

  padding: 0 70px;

  font-size: 42px;

  letter-spacing: 4px;

  color: #fff3c4;

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


/* サブタイトル */

.action-header p {

  margin-top: 14px;

  font-size: 18px;

  letter-spacing: 1px;

  color: #ddd6fe;

  text-shadow:
    0 0 8px rgba(180, 120, 255, 0.25);
}

/* =========================
   動画ラッパー
========================= */

.video-wrap {

  position: relative;

  overflow: hidden;

  border-radius: 14px;
}

/* 動画 */

.video-wrap video {

  width: 100%;

  display: block;

  border-radius: 14px;

  transition: 0.3s;
}

/* ホバー */

.action-card:hover video {

  transform: scale(1.03);

  filter:
    brightness(1.08);
}

/* =========================
   PLAYアイコン
========================= */

.video-play {

  position: absolute;

  top: 50%;
  left: 50%;

  transform:
    translate(-50%, -50%);

  width: 86px;
  height: 86px;

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

  border-radius: 25%;

  font-size: 42px;

  color: white;

  background:
    radial-gradient(circle,
      rgba(180, 120, 255, 0.85),
      rgba(80, 30, 180, 0.65));

  backdrop-filter: blur(4px);

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

  box-shadow:
    0 0 24px rgba(180, 120, 255, 0.6),
    0 0 40px rgba(120, 0, 255, 0.35);

  cursor: pointer;

  border: none;

  transition: 0.25s;
}

/* hoverで強発光 */

.action-card:hover .video-play {

  transform:
    translate(-50%, -50%) scale(1.08);

  box-shadow:
    0 0 30px rgba(255, 215, 0, 0.55),
    0 0 60px rgba(120, 0, 255, 0.45);
}

/* =========================
   コマンドUI
========================= */

.command-ui {

  display: flex;

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

  gap: 4px;

  margin-top: 14px;

  flex-wrap: wrap;
}

/* キー */

.key {

  min-width: 46px;
  height: 46px;

  padding: 0 12px;

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

  border-radius: 10px;

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

  color: #f8f4ff;

  background:
    linear-gradient(180deg,
      rgba(70, 40, 140, 0.95),
      rgba(20, 10, 40, 1));

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

  box-shadow:
    0 0 10px rgba(140, 80, 255, 0.25),
    inset 0 0 8px rgba(255, 255, 255, 0.05);

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

/* 攻撃ボタン */

.key.attack {

  color: #ffe082;

  background:
    linear-gradient(180deg,
      rgba(120, 50, 180, 1),
      rgba(45, 10, 80, 1));

  box-shadow:
    0 0 14px rgba(255, 215, 0, 0.25),
    0 0 20px rgba(180, 120, 255, 0.18);
}

/* + */

.plus {

  font-size: 24px;

  margin-top: 10px;
  margin-left: 5px;
  margin-right: 5px;

  color: #ffd700;

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

/* =========================
   キャンセルタイミング
========================= */

.cancel-title {

  position: relative;

  font-size: 42px;

  color: #ffe89a;

  letter-spacing: 2px;

  margin-bottom: 12px;

  padding: 14px 0;

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

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

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



.cancel-sub {

  color: #d8c8ff;

  margin-bottom: 30px;

  margin-left: 30px;

  font-size: 15px;

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

/* =========================
   動画 + 解説
========================= */

.cancel-top {

  display: flex;

  gap: 24px;

  align-items: stretch;

  margin-bottom: 40px;
}

/* 左動画 */

.cancel-movie-box {

  width: 52%;

  background:
    linear-gradient(180deg,
      rgba(15, 10, 35, 0.96),
      rgba(5, 5, 18, 0.98));

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

  border-radius: 18px;

  padding: 18px;

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

.cancel-movie-box h3 {

  color: #f3e8ff;

  font-size: 26px;

  margin-bottom: 18px;

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

.movie-frame {

  overflow: hidden;

  border-radius: 12px;

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

  background: black;
}

.movie-frame video {

  width: 100%;

  display: block;
}

/* 右解説 */

.cancel-text-box {

  width: 48%;

  background:
    linear-gradient(180deg,
      rgba(12, 6, 28, 0.96),
      rgba(4, 4, 14, 0.98));

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

  border-radius: 18px;

  padding: 18px;

  box-shadow:
    0 0 18px rgba(120, 0, 255, 0.15);
}

.cancel-text-box h3 {

  color: #f3e8ff;

  font-size: 26px;

  margin-bottom: 18px;

  text-shadow:
    0 0 8px rgba(180, 120, 255, 0.45);
}

.cancel-text {

  color: #e8ddff;

  line-height: 2;

  font-size: 15px;
}

.cancel-text p {

  margin-bottom: 18px;
}

.cancel-text ul {

  margin-top: 20px;

  padding-left: 20px;
}

.cancel-text li {

  margin-bottom: 12px;

  color: #ffd86b;

  text-shadow:
    0 0 8px rgba(255, 215, 0, 0.3);
}

/* =========================
   フレームメーター
========================= */

.frame-section {

  margin-top: 40px;
}


/* 画像枠 */

.frame-image-box {

  overflow: hidden;

  border-radius: 18px;

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

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

  padding: 12px;

  box-shadow:
    0 0 24px rgba(120, 0, 255, 0.15);

  margin-bottom: 24px;
}

/* 画像 */

.frame-image-box img {

  width: 100%;

  display: block;

  border-radius: 12px;
}

/* 解説欄 */

.frame-explain {

  padding: 22px;

  border-radius: 18px;

  background:
    linear-gradient(180deg,
      rgba(12, 6, 28, 0.96),
      rgba(4, 4, 14, 0.98));

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

  box-shadow:
    0 0 18px rgba(120, 0, 255, 0.12);
}

.frame-explain h4 {

  font-size: 24px;

  color: #ffe89a;

  margin-bottom: 20px;

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

.frame-explain p {

  color: #e8ddff;

  line-height: 2;

  margin-bottom: 18px;

  font-size: 18px;
}

/* リスト */

.frame-explain ul {

  list-style: none;

  padding: 0;

  margin-top: 24px;
}

.frame-explain li {

  margin-bottom: 14px;

  color: #f3e8ff;

  font-size: 15px;
}

/* 色 */

.blue {

  color: #59a8ff;

  font-weight: bold;

  text-shadow:
    0 0 8px rgba(89, 168, 255, 0.6);
}

.green {

  color: #65ff8f;

  font-weight: bold;

  text-shadow:
    0 0 8px rgba(101, 255, 143, 0.5);
}

.purple {

  color: #d18cff;

  font-weight: bold;

  text-shadow:
    0 0 8px rgba(209, 140, 255, 0.6);
}

.gray {

  color: #c7c7c7;

  font-weight: bold;
}

/* =========================
   フレームページ
========================= */

.frame-page {

  display: flex;

  flex-direction: column;

  gap: 28px;
}

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

.frame-main-title-box {

  margin-bottom: 10px;
}

.frame-main-title {

  font-size: 54px;

  color: #ffe8a3;

  letter-spacing: 4px;

  text-shadow:
    0 0 12px rgba(255, 215, 0, 0.7),
    0 0 24px rgba(255, 255, 180, 0.25);

  margin-bottom: 16px;
}

.frame-main-sub {

  color: #e7dbff;

  font-size: 18px;

  line-height: 1.9;
}

/* =========================
   ブロック
========================= */

.frame-block {

  position: relative;

  padding: 28px;

  border-radius: 22px;

  background:
    linear-gradient(180deg,
      rgba(10, 5, 30, 0.96),
      rgba(4, 3, 14, 0.98));

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

  box-shadow:
    0 0 25px rgba(120, 0, 255, 0.12);
}

/* 番号 */

.frame-number {

  position: absolute;


  width: 40px;
  height: 40px;

  border-radius: 14px;

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

  font-size: 28px;

  color: #fff;

  background:
    linear-gradient(180deg,
      rgba(120, 0, 255, 0.9),
      rgba(60, 0, 140, 0.95));

  box-shadow:
    0 0 15px rgba(180, 120, 255, 0.5);
}

/* タイトル */

.frame-block-title {

  padding-left: 70px;

  font-size: 28px;

  color: #ffffff;

  margin-bottom: 24px;

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

/* =========================
   フレームメーター
========================= */

.frame-meter-image {

  overflow: hidden;

  border-radius: 18px;

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

  margin-bottom: 20px;
}

.frame-meter-image img {

  width: 100%;

  display: block;
}

.frame-text {

  color: #e6dbff;

  padding-left: 4px;

  font-size: 18px;

  line-height: 2;
}

/* =========================
   カード
========================= */

.frame-card-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.frame-card {

  padding: 24px;

  border-radius: 18px;

  overflow: hidden;

  background:
    rgba(10, 10, 25, 0.9);

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

  transition: 0.3s;
}

.frame-card:hover {

  transform: translateY(-4px);

  box-shadow:
    0 0 20px rgba(180, 120, 255, 0.18);
}

.frame-card h4 {

  font-size: 34px;

  margin-bottom: 18px;
}

.frame-card p {

  color: #e7dbff;

  line-height: 2;

  font-size: 16px;

  margin-bottom: 18px;
}

.frame-card img {

  width: 100%;

  display: block;
}

/* 色 */

.startup h4 {

  color: #78db96;
  font-size: 30px;
}

.active2 h4 {

  color: #d33933;
  font-size: 30px;
}

.recovery h4 {

  color: #4036c2;
  font-size: 30px;
}

.frame-block span {
  color: #ffd86b;
}

/* =========================
   硬直差
========================= */

.advantage-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.adv-box {

  padding: 24px;

  border-radius: 18px;

  overflow: hidden;
}

.adv-box h4 {

  font-size: 30px;

  margin-bottom: 16px;
}

.adv-box p {

  color: #f0e8ff;

  line-height: 2;

  margin-bottom: 18px;
}

.adv-box img {

  width: 100%;

  display: block;
}

.hit-box {

  background:
    linear-gradient(180deg,
      rgba(60, 0, 0, 0.95),
      rgba(25, 0, 0, 0.98));

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

.hit-box h4 {

  color: #ff7474;
}

.guard-box {

  background:
    linear-gradient(180deg,
      rgba(0, 10, 40, 0.95),
      rgba(0, 5, 20, 0.98));

  border:
    1px solid rgba(80, 140, 255, 0.35);
}

.guard-box h4 {

  color: #7db6ff;
}

/* =========================
   +1F
========================= */

.plus-frame-content {

  display: flex;

  gap: 30px;

  align-items: center;
}

.plus-text {

  flex: 1;
}

.plus-text p {

  color: #f2e9ff;

  line-height: 2;

  font-size: 18px;

  margin-bottom: 16px;
}

.plus-image {

  width: 42%;
}

.plus-image img {

  width: 100%;

  display: block;
}

/* =========================
   TIP
========================= */

.frame-tip {

  display: flex;

  align-items: center;

  gap: 20px;

  padding: 24px;

  border-radius: 20px;

  background:
    linear-gradient(180deg,
      rgba(20, 10, 35, 0.96),
      rgba(6, 5, 15, 0.98));

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

.tip-icon {

  font-size: 38px;
}

.frame-tip p {

  color: #fff4cf;

  font-size: 18px;

  line-height: 2;
}

/*　崩しページ用 */
.mixup-page {

  display: flex;

  flex-direction: column;

  gap: 35px;

}

.mixup-page h3 {
  font-size: 24px;
  color: #ffe89a;
}

.mixup-page p {
  color: #ddd;
}

.step-area {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

}

.step-card {

  flex: 1;

  background: rgba(20, 10, 40, .9);

  border: 1px solid rgba(170, 120, 255, .3);

  border-radius: 15px;

  padding: 18px;

}

.step-card h3 {

  color: #b09aff;

  text-align: center;

  margin-bottom: 15px;

}

.step-card span {
  color: #6fc0a5;
}

.step-card video{

   width:100%;

    display:block;

    aspect-ratio:16 / 9;

    object-fit:cover;

    border-radius:12px;

    margin-bottom:15px;

    border:1px solid rgba(255,255,255,.12);

    box-shadow:
        0 0 15px rgba(170,120,255,.18);

}

.step-arrow {

  font-size: 38px;

  color: #d7b8ff;

}

.mixup-bottom {

  display: grid;

  grid-template-columns: 2.2fr 1fr;

  gap: 25px;

}

.mixup-table table {

  width: 100%;

  border-collapse: collapse;

}

.mixup-table th {

 color: #fff;

  padding: 16px;

  font-weight: bold;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.18) 0%,
      rgba(170,120,255,.18) 25%,
      rgba(90,40,150,.45) 60%,
      rgba(20,10,40,.75) 100%
    );

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,.18);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -1px 0 rgba(0,0,0,.4);

}

.mixup-table th::before{

  content:"";

  position:absolute;

  inset:0;

  background:
    linear-gradient(
      120deg,
      transparent 25%,
      rgba(255,255,255,.18) 45%,
      rgba(255,215,120,.18) 55%,
      transparent 80%
    );

  pointer-events:none;

}

.mixup-table th,
.mixup-table td {

 color:#eee;

 font-size: 18px;

padding: 8px;

  background:
    linear-gradient(
      135deg,
      rgba(170,220,255,.08),
      rgba(120,150,255,.06),
      rgba(40,30,80,.12)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08)

}

.mixup-advice {

  background: rgba(20, 10, 40, .9);

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

  border-radius: 15px;

  padding: 20px;

}

.mixup-advice ul {

  list-style: none;

  text-align: center;

  line-height: 2.2;

}

.summary {

  margin-top: 20px;

  padding: 15px;

  border-radius: 10px;

  background: rgba(255, 215, 0, .08);

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

}

.flow-card{

    display:flex;

    align-items:center;

    margin-top: 16px;

    gap:15px;

    padding:15px;

    border-radius:14px;

    background:
        linear-gradient(
            135deg,
            rgba(120,70,220,.25),
            rgba(40,25,80,.9)
        );

    border:1px solid rgba(255,215,120,.25);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08);

}

.flow-number{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    font-weight:bold;

    color:#fff;

    background:linear-gradient(#8d6cff,#5d2fb5);

    box-shadow:
        0 0 12px rgba(170,120,255,.45);

}

.flow-card h4{
  font-size:20px;
  color: #ddd;
}

.flow-arrow{

    text-align:center;

    font-size:18px;

    color:#d7b8ff;

    margin:8px 0;

}

.flow-result{

    margin-top:18px;

    padding:18px;

    border-radius:14px;

    text-align:center;

    font-weight:bold;

    color:#ffe89a;

    background:
        linear-gradient(
            135deg,
            rgba(255,220,100,.12),
            rgba(120,70,220,.18)
        );

    border:1px solid rgba(255,215,120,.4);

}



.mixup-note{

    margin-top:25px;

    padding:22px;

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            rgba(80,120,220,.12),
            rgba(40,20,80,.35)
        );

    border:1px solid rgba(170,120,255,.25);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08);

}

.mixup-note h3{

    color:#ffe89a;

    margin-bottom:15px;

    font-size:24px;

}

.mixup-note p{

    color:#ddd;

    line-height:2;

    margin-bottom:12px;

}


/*フッター*/
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;
}




/* ===== ノート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;
  }

  .ingrid-profile-top {

    flex-direction: column;
  }

  .costume-area {

    grid-template-columns: 1fr;
  }

  .profile-box {

    width: 100%;
  }

  /* ===== フッター余白 ===== */
  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;
  }

  .action-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }

  .action-header h2 {

    font-size: 40px;
  }

  .cancel-top {

    flex-direction: column;
  }

  .cancel-movie-box,
  .cancel-text-box {

    width: 100%;
  }

  .cancel-title {

    font-size: 32px;
  }

  .frame-title {

    font-size: 24px;
  }

  .frame-explain h4 {

    font-size: 22px;
  }

  .frame-card-grid {

    grid-template-columns: 1fr;
  }

  .advantage-grid {

    grid-template-columns: 1fr;
  }

  .plus-frame-content {

    flex-direction: column;
  }

  .plus-image {

    width: 100%;
  }

}




/*スマホ*/

@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;
  }

  /*====イングリッド紹介====*/
  .strength-area {

    grid-template-columns: 1fr;
  }

  .true-ingrid-content {

    flex-direction: column;
  }

  .face-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }

  /*崩しぺーじ*/

  .step-area {

    flex-direction: column;

  }

  .step-arrow {

    transform: rotate(90deg);

  }

  .mixup-bottom {

    grid-template-columns: 1fr;

  }

  /* ===== フッター余白 ===== */
  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;
  }

  /* ======== 技性能レイアウト ========*/
  .move-layout {

    flex-direction: column;
    gap: 2px;
  }

  .left-area {
    display: contents;
  }



  .right-area {
    order: 2;
  }

  #id-3 {
    height: auto;
  }


  .left-area,
  .right-area {

    width: 100%;
  }

  .move-panel {

    padding: 12px;
    margin-bottom: 4px;
  }

  .move-panel h3 {

    font-size: 18px;
  }

  .move-text {

    font-size: 14px;

    line-height: 1.7;
  }

  .spec-wrap {

    flex-direction: column;
  }

  .spec-wrap .spec-table {

    width: 100%;
  }

  .spec-table th,
  .spec-table td {

    padding: 8px;

    font-size: 14px;
  }

  .command {
    width: 28px;
    height: 28px;
  }

  .action-grid {

    grid-template-columns: 1fr;

    gap: 16px;
  }

  .action-card h3 {

    font-size: 26px;
  }

  .action-number {

    width: 44px;
    height: 44px;

    font-size: 20px;
  }

  .action-header {

    padding:
      20px 12px;
  }

  .action-header h2 {

    font-size: 28px;

    padding: 0 42px;
  }

  .action-header h2::before,
  .action-header h2::after {

    font-size: 22px;
  }

  .action-header p {

    font-size: 14px;
  }

  .cancel-title {

    font-size: 24px;

    padding: 10px 0;
  }

  .cancel-title::before,
  .cancel-title::after {

    font-size: 22px;
  }

  .cancel-title::before {
    left: 10px;
  }

  .cancel-title::after {
    right: 10px;
  }

  .cancel-sub {

    font-size: 13px;

    line-height: 1.8;
  }

  .cancel-movie-box h3,
  .cancel-text-box h3 {

    font-size: 20px;
  }

  .cancel-text {

    font-size: 14px;
  }


  .frame-explain {

    padding: 16px;
  }

  .frame-explain h4 {

    font-size: 18px;
  }

  .frame-explain p,
  .frame-explain li {

    font-size: 14px;

    line-height: 1.9;
  }

  .frame-main-title {

    font-size: 34px;
  }

  .frame-main-sub {

    font-size: 15px;
  }

  .frame-block {

    padding: 20px;
  }

  .frame-number {

    width: 38px;
    height: 38px;

    font-size: 22px;
  }

  .frame-block-title {

    font-size: 24px;

    padding-left: 52px;
  }

  .frame-text,
  .frame-card p,
  .adv-box p,
  .plus-text p,
  .frame-tip p {

    font-size: 14px;
  }

  .frame-card h4,
  .adv-box h4 {

    font-size: 24px;
  }

}