@charset "UTF-8";
/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
@keyframes scroll-down {
  0% {
    stroke-dasharray: 0, 180px;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  60% {
    opacity: 0.8;
    stroke-dasharray: 215.7737px, 363.607px;
  }
  70% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ball-move {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}
@keyframes blur-text {
  0% {
    filter: blur(0px);
  }
  100% {
    filter: blur(4px);
  }
}
@keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
@keyframes glowAnimation {
  0% {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 20px rgb(255, 255, 255));
  }
  100% {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  }
}
@keyframes glowAnimation--hover {
  0% {
    filter: drop-shadow(0 0 50px rgba(0, 150, 255, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 20px rgb(0, 150, 255));
  }
  100% {
    filter: drop-shadow(0 0 50px rgba(0, 150, 255, 0.5));
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gaming {
  /* 色の指定 */
  0% {
    background-color: Magenta;
  }
  33% {
    background-color: yellow;
  }
  66% {
    background-color: Cyan;
  }
  100% {
    background-color: Magenta;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    filter: blur(2px);
  }
  50% {
    opacity: 0.7;
    transform: translateY(10px) scale(0.95);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
  30% {
    opacity: 0.8;
    transform: translateY(5px) scale(0.98);
    filter: blur(0.5px);
  }
  60% {
    opacity: 0.5;
    transform: translateY(15px) scale(0.95);
    filter: blur(1px);
  }
  80% {
    opacity: 0.2;
    transform: translateY(22px) scale(0.92);
    filter: blur(1.5px);
  }
  100% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    filter: blur(2px);
  }
}
@keyframes evolveGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0));
  }
  60% {
    filter: drop-shadow(0 0 30px rgb(255, 255, 255));
  }
  100% {
    filter: drop-shadow(0 0 100px rgba(255, 255, 255, 0));
  }
}
@keyframes rotateGlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes mochimochiLoading {
  0% {
    transform: scale(1.4, 1.4);
  }
  20% {
    transform: scale(0.9, 0.9);
  }
  90% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1.4, 1.4);
  }
}
@keyframes getMochi {
  0% {
    transform: scale(4, 4);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes rainbowTxt {
  0% {
    color: #fae3e3;
  }
  14% {
    color: #eaceb1;
  }
  28% {
    color: #d7d4af;
  }
  42% {
    color: #9be19b;
  }
  56% {
    color: #91e1df;
  }
  70% {
    color: #c6dcf0;
  }
  85% {
    color: #f4f4fa;
  }
  100% {
    color: #f7dfec;
  }
}
@keyframes rainbow {
  0% {
    background-color: #fae3e3;
  }
  14% {
    background-color: #eaceb1;
  }
  28% {
    background-color: #d7d4af;
  }
  42% {
    background-color: #9be19b;
  }
  56% {
    background-color: #91e1df;
  }
  70% {
    background-color: #c6dcf0;
  }
  85% {
    background-color: #f4f4fa;
  }
  100% {
    background-color: #f7dfec;
  }
}
@keyframes rainbowDark {
  0% {
    background-color: #e16363;
  }
  14% {
    background-color: #c98239;
  }
  28% {
    background-color: #9e994f;
  }
  42% {
    background-color: #35ae35;
  }
  56% {
    background-color: #2faaa7;
  }
  70% {
    background-color: #4e92cf;
  }
  85% {
    background-color: #8f8fc6;
  }
  100% {
    background-color: #db62a2;
  }
}
@keyframes zoomin {
  0% {
    opacity: 0;
    transform: scale(4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes badgeGlow {
  0%, 100% {
    background: #e16363;
  }
  50% {
    background: #e98e8e;
  }
}
@keyframes reachGlow {
  0%, 100% {
    background: #182028;
  }
  50% {
    background: #3279B8;
  }
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes twitch {
  0%, 95%, 100% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.05);
  }
  10% {
    transform: scale(1.02);
  }
  15% {
    transform: scale(1.08);
  }
  20% {
    transform: scale(1.01);
  }
}
@keyframes hero-gradient-animation {
  0% {
    --x-1: 34%;
    --y-1: 99%;
    --c-1: settings.$v4bg1;
    --s-start-1: 8%;
    --s-end-1: 60%;
    --c-2: settings.$v4bg2;
    --x-2: 23%;
    --y-2: 66%;
    --s-start-2: 15%;
    --s-end-2: 85%;
  }
  100% {
    --x-1: 70%;
    --y-1: 84%;
    --c-1: settings.$v4bg3;
    --s-start-1: 5%;
    --s-end-1: 55%;
    --c-2: settings.$v4bg4;
    --x-2: 14%;
    --y-2: 51%;
    --s-start-2: 12%;
    --s-end-2: 60%;
  }
}
@property --x-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 80%;
}
@property --y-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --s-start-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --s-end-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}
@property --c-0 {
  syntax: "<color>";
  inherits: false;
  initial-value: #0a080a;
}
@property --x-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 34%;
}
@property --y-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 99%;
}
@property --c-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #061113;
}
@property --s-start-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 8%;
}
@property --s-end-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 60%;
}
@property --c-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #14070e;
}
@property --x-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 23%;
}
@property --y-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 66%;
}
@property --s-start-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 15%;
}
@property --s-end-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 85%;
}
@property --y-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --c-3 {
  syntax: "<color>";
  inherits: false;
  initial-value: #000000;
}
@property --x-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --s-start-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --s-end-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}
@property --s-start-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --s-end-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 50%;
}
@property --c-4 {
  syntax: "<color>";
  inherits: false;
  initial-value: #05141c;
}
@property --x-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --y-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-10px, 0);
  }
  20% {
    transform: translate(10px, 0);
  }
  30% {
    transform: translate(-10px, 0);
  }
  40% {
    transform: translate(10px, 0);
  }
  50% {
    transform: translate(-5px, 0);
  }
  60% {
    transform: translate(5px, 0);
  }
  70% {
    transform: translate(-5px, 0);
  }
  80% {
    transform: translate(5px, 0);
  }
  90% {
    transform: translate(-2px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
/*
03-generic
----------------------------
リセットCSS、ノーマライズ、基本のタイポグラフィ、body、ul/ol のスタイル、
そして全体に影響するキーフレームアニメーション（例: glowAnimation、shiny など）を定義する層です。
*/
/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
*::-webkit-scrollbar {
  display: none;
}

input:focus {
  outline: 2px solid #3279B8;
}

/*
04-elements
-----------------------
HTMLの各要素（a、header、input、label、meterなど）のデフォルトスタイルや、
基本的な要素ごとのスタイルを定義する層です。
*/
/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
a {
  text-decoration: none;
  border: none;
  transition: 0.3s;
}
a:hover {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

header {
  z-index: 2;
}
header img {
  z-index: 2;
}

a:hover {
  cursor: pointer;
}

body {
  position: relative;
  display: block;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  max-height: 100vh;
  overflow: hidden;
  font-family: SF Pro JP, SF Pro Display, SF Pro Icons, Hiragino Kaku Gothic Pro, ヒラギノ角ゴ Pro W3, メイリオ, Meiryo, ＭＳ Ｐゴシック, Helvetica Neue, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  background: #05090D;
}
body::-webkit-scrollbar {
  display: none;
}

input[type=text] {
  font-size: 16px;
}
input[type=submit]:hover {
  cursor: pointer;
}

meter {
  /* 全てのmeter要素にスタイルを適用 */
  width: 100%;
  height: 24px;
  border-radius: 5px;
  border: none;
}
meter[value="100"] {
  /* value属性が100の場合 */
  background-color: #298729;
}
meter[value="50"] {
  /* value属性が50の場合 */
  background-color: #298729;
}
meter[value="0"] {
  /* value属性が0の場合 */
  background-color: #298729;
}

main {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  height: 100vh;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
footer .footerRow {
  display: flex;
  width: 100%;
  margin: 18px auto;
  text-shadow: 0 0 2px black;
}
footer .footerRow button {
  position: relative;
  text-shadow: 0 0 4px black;
}
footer .footerRow button:hover {
  cursor: pointer;
}
footer .footerRow button .badge::after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  right: 12px;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: #e16363;
  animation: badgeGlow 1s infinite alternate;
}
footer .footerRow button:disabled i {
  display: inline;
}
footer .footerRow:nth-of-type(1) {
  justify-content: space-between;
}
footer .footerRow:nth-of-type(1) button {
  color: #f9f9f9;
  width: calc(33.3333333333% - 10px);
  border-radius: 8px;
  padding: 6px;
  font-size: 12px;
  font-weight: bold;
  transition: 0.3s;
  text-align: center;
}
footer .footerRow:nth-of-type(1) button:disabled {
  color: #283540;
  display: inline-block;
  font-weight: bold;
}
footer .footerRow:nth-of-type(1) button:disabled i {
  color: #283540;
  display: inline-block;
  font-size: 28px;
  margin: 0;
  padding-bottom: 4px;
}
footer .footerRow:nth-of-type(1) button:disabled:hover {
  color: #283540;
  cursor: default;
}
footer .footerRow:nth-of-type(1) button:disabled:hover i {
  color: #283540;
  font-size: 28px;
  margin: 0;
  padding-bottom: 4px;
}
footer .footerRow:nth-of-type(1) button i {
  font-size: 24px;
  margin: 0;
  padding-bottom: 4px;
}
footer .footerRow:nth-of-type(1) button:hover {
  color: #fff;
}
footer .footerRow:nth-of-type(1) .btn-getPointTwo {
  width: 140px;
  border-radius: 40px;
  color: #ffffff;
  filter: drop-shadow(0 0 20px #ffffff);
  margin: 0 24px;
  overflow: hidden;
  min-width: 78px;
  min-height: 78px;
}
footer .footerRow:nth-of-type(1) .btn-getPointTwo img {
  height: 24px;
}
footer .footerRow:nth-of-type(1) .btn-getPointTwo:disabled:hover {
  cursor: default !important;
  filter: none;
}
footer .footerRow:nth-of-type(1) .btn-getPointTwo.btn-power {
  border: 2px solid #ffffff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-shadow: 0 0 4px black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
footer .footerRow:nth-of-type(1) .btn-getPointTwo.btn-power:disabled {
  background: #283540;
  color: #132332;
  animation: none;
  border: none;
  filter: none;
  box-shadow: none;
  text-shadow: none;
}
footer .footerRow:nth-of-type(1) .btn-getPointTwo.btn-power:disabled:hover {
  filter: none;
}
footer .footerRow:nth-of-type(1) .btn-getPointTwo:hover {
  font-weight: bold;
  filter: drop-shadow(0 0 10px #ffffff);
}
footer .footerRow:nth-of-type(1) .btn-getPointTwo::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  /* アニメーション */
  animation-name: shiny;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
footer .footerRow:nth-of-type(1) .btn-getPointTwo:disabled {
  background: #283540;
  color: #132332;
}
footer .footerRow:nth-of-type(1) .btn-getPointTwo:disabled i {
  display: none;
}
footer .footerRow:nth-of-type(1) .btn-getPointTwo:disabled:hover {
  filter: none;
}
footer .footerRow:nth-of-type(1) .btn-getPointTwo:disabled::before {
  content: "\f023";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 24px;
}
footer .footerRow:nth-of-type(1) .btn-getPointTwo:disabled::after {
  display: none;
  background: #0E151B;
}
footer .footerRow:nth-of-type(2) {
  justify-content: center;
}
footer .footerRow:nth-of-type(2) button {
  position: relative;
  display: block;
  width: 100%;
  line-height: 40px;
  padding: 16px 20px;
  border-radius: 40px;
  text-align: center;
  text-decoration: none;
  color: #05090D;
  background: #E1E7EC;
  overflow: hidden;
  font-size: 20px;
  font-weight: bold;
}
footer .footerRow:nth-of-type(2) button.btn-power {
  animation: 2s rainbowDark linear infinite;
}
footer .footerRow:nth-of-type(2) button.btn-power:disabled {
  background: #283540;
  color: #132332;
  animation: none;
}
footer .footerRow:nth-of-type(2) button.btn-power:disabled:hover {
  filter: none;
}
footer .footerRow:nth-of-type(2) button:hover {
  font-weight: bold;
  filter: drop-shadow(0 0 20px #ffffff);
}
footer .footerRow:nth-of-type(2) button::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  /* アニメーション */
  animation-name: shiny;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
footer .footerRow:nth-of-type(2) button:disabled {
  background: #283540;
  color: #132332;
}
footer .footerRow:nth-of-type(2) button:disabled:hover {
  filter: none;
}
footer .footerRow:nth-of-type(2) button:disabled::before {
  content: "\f023";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  margin-right: 8px;
}
footer .footerRow:nth-of-type(2) button:disabled::after {
  display: none;
  background: #0E151B;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #A6ABAD;
  margin-right: 12px;
}
label span {
  color: #E1E7EC;
  margin-bottom: 4px;
}
label input[type=date] {
  padding: 8px 12px;
  font-size: 14px;
  color: #E1E7EC;
  background-color: #2e3a45;
  border: none;
  border-radius: 4px;
  transition: box-shadow 0.2s ease;
}
label input[type=date] i {
  color: #E1E7EC;
}
label input[type=date]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(46, 58, 69, 0.5);
  background-color: #2e3a45;
}

/*
05-objects
---------------------
再利用可能なレイアウトパターンやデザインパターン、意味的なブロック要素など、
コンテンツの構造を形成するオブジェクト群を管理する層です。
*/
/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
#wholeWrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  min-width: 360px;
  z-index: 1;
  max-height: 600px;
  min-height: 400px;
  max-width: 375px;
}
#wholeWrapper .logo-mark-type {
  display: block;
  margin: 0 auto;
  width: 80%;
}

/*
06-components
---------------------------
ボタン、モーダル、フォーム、カードなどの具体的なUIコンポーネントや機能的なパーツを定義する層です。
再利用性が高く、ユーザーインターフェースの各パーツとして利用されます。
*/
/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
.balloon-bottom {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 16px 24px;
  min-width: 120px;
  max-width: 100%;
  color: #E1E7EC;
  font-size: 16px;
  background: #2e3a45;
  border-radius: 16px;
}
.balloon-bottom::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #2e3a45;
}
.balloon-bottom p,
.balloon-bottom h3 {
  margin: 0;
  padding: 0;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
button {
  background: none;
  border: none;
  transition: 0.3s;
  white-space: nowrap;
  border: none;
  outline: none;
}
button i {
  margin-right: 4px;
}
button:hover {
  cursor: pointer;
}
button:disabled:hover {
  cursor: default;
}
button:focus {
  outline: none;
}

.btn-primary {
  padding: 8px 20px !important;
  background: #cccccc;
  border-radius: 40px;
  color: #1a1a1a;
  font-weight: 900;
}
.btn-primary a {
  color: #1a1a1a;
}
.btn-primary:hover {
  color: #000000;
  background: #ffffff;
}
.btn-primary:disabled {
  opacity: 0.3 !important;
  background: #CCC;
  animation: none;
}
.btn-primary:disabled:hover {
  background: #CCC;
  opacity: 0.3 !important;
  animation: none;
}
.btn-secondary {
  padding: 16px;
  color: #cccccc;
  transition: 0.3s;
  font-weight: 900;
  width: fit-content;
}
.btn-secondary:hover {
  color: #ffffff;
}
.btn-txt {
  color: #cccccc;
  transition: 0.3s;
  font-weight: 900;
  margin: 0;
  width: fit-content !important;
}
.btn-txt:hover {
  color: #ffffff;
}
.btn-admin-secondary {
  background: #2e3a45;
  padding: 8px;
  border-radius: 4px;
  font-weight: 900;
  transition: 0.3s;
  color: #E1E7EC;
}
.btn-admin-secondary:hover {
  background: #425464;
}
.btn-point-update {
  background: #E1E7EC;
  padding: 8px;
  border-radius: 0 4px 4px 0;
  font-weight: 900;
  transition: 0.3s;
}
.btn-point-update i {
  margin-right: 0;
}
.btn-point-update:hover {
  background: #f9f9f9;
}
.btn-tert {
  color: #BBBEC2;
  margin-left: 20px;
  font-size: 12px;
  display: flex;
  height: 100%;
  align-items: center;
}
.btn-tert:hover {
  color: #ffffff;
}
.btn-logOut {
  color: #f9f9f9;
  margin-left: 20px;
  font-size: 12px;
  display: flex;
  height: 100%;
  align-items: center;
}
.btn-edit i {
  font-size: 16px !important;
  color: #e6e6e6;
}
.btn-receive-gift {
  background: #ba2424;
  color: #E1E7EC;
  font-weight: bold;
  padding: 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.btn-receive-gift:hover {
  background: #e16363;
}
.btn-begin {
  padding: 12px 36px;
  background: #e6e6e6;
  border-radius: 40px;
  color: #1a1a1a;
  font-weight: 900;
  font-size: 20px;
}
.btn-begin a {
  color: #1a1a1a;
}
.btn-begin:hover {
  color: #000000;
  background: #ffffff;
}
.btn-sort {
  color: #BBBEC2;
  transition: 0.3s;
  transform-origin: center center;
  width: 14px;
  height: 14px;
}
.btn-sort:hover {
  color: #f9f9f9;
  transform-origin: center center;
}
.btn-sort.rotated {
  transform-origin: center center;
  transform: rotate(180deg);
}
.btn-search {
  color: #BBBEC2;
  transition: 0.3s;
  transform-origin: center center;
  width: 14px;
  height: 14px;
}
.btn-search:hover {
  color: #f9f9f9;
  transform-origin: center center;
}

.btnSetBox {
  position: absolute;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 40px);
}
.btnSetBox button,
.btnSetBox a {
  width: 45%;
  font-size: 14px;
  white-space: nowrap;
  text-align: center;
  color: #BBBEC2;
}
.btnSetBox button:nth-of-type(2),
.btnSetBox a:nth-of-type(2) {
  margin-left: 10px;
}
.btnSetBox button i,
.btnSetBox a i {
  margin-right: 6px;
}
.btnSetBox .btn-primary {
  background: #e6e6e6;
  color: #1a1a1a;
  font-weight: bold;
}
.btnSetBox .btn-primary a {
  color: #1a1a1a;
  font-weight: bold;
}
.btnSetBox .btn-primary:hover {
  cursor: pointer;
  background: #ffffff;
  color: #333333;
}
.btnSetBox .btn-primary:disabled {
  opacity: 0.3 !important;
  animation: none;
}
.btnSetBox .btn-primary:disabled:hover {
  filter: none;
}
.btnSetBox .btn-secondary {
  color: #e6e6e6;
  font-weight: bold;
}
.btnSetBox .btn-secondary:hover {
  color: #ffffff;
}
.btnSetBox .btn-secondary:visited {
  color: #ffffff;
}

.btnContainer {
  display: flex;
  margin-top: 20px;
}
.btnContainer button:nth-child(1) {
  margin-right: 20px;
}

.btn-nokai {
  position: relative;
  width: calc(100% - 28px);
  color: #E1E7EC;
  padding: 8px 24px;
  border: 1px solid #E1E7EC;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: #182028;
  font-weight: bold;
  transition: 0.3s;
}
.btn-nokai i {
  margin-bottom: 0 !important;
}
.btn-nokai::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 8px;
  top: 48%;
  transform: translate(-50%, -50%);
  font-size: 12px;
}
.btn-nokai.btn-power {
  animation: 2s rainbow linear infinite;
  color: #353d44;
}
.btn-nokai.btn-power::after {
  content: "";
}
.btn-nokai.btn-power:disabled {
  background: none;
  animation: none;
}
.btn-nokai.btn-power:disabled::after {
  content: "";
}
.btn-nokai:hover {
  color: #f9f9f9;
  border: 1px solid #f9f9f9;
  background: #2e3a45;
}
.btn-nokai i {
  margin-right: 4px;
}
.btn-nokai:disabled {
  opacity: 0.3;
  background: #182028;
  color: #E1E7EC;
  border: 1px solid #E1E7EC;
}
.btn-nokai:disabled::after {
  content: "";
}
.btn-nokai:disabled:hover {
  opacity: 0.3;
  cursor: default;
  background: #182028;
  color: #E1E7EC;
  border: 1px solid #E1E7EC;
}
.btn-nokai.w-nokaiModal {
  min-width: 246px;
  width: 246px;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
.loginBox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 28px);
  max-width: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  height: 300px;
  padding: 40px;
  z-index: 2;
}
.loginBox h2 {
  color: #E1E7EC;
  margin-bottom: 30px;
}
.loginBox .logo-mark-type {
  width: 100%;
  margin: 0 0 40px;
}
.loginBox .inputSection {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.loginBox .inputSection label {
  color: #BBBEC2;
  font-weight: bold;
  margin-bottom: 4px;
}
.loginBox .inputSection .balloon {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  display: none;
  margin: -90px auto 0;
  justify-content: center;
  padding: 12px 16px;
  min-width: 120px;
  max-width: auto;
  font-size: 16px;
  background: #2e3a45;
  border-radius: 20px;
}
.loginBox .inputSection .balloon p {
  text-align: center;
}
.loginBox .inputSection .balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #2e3a45;
}
.loginBox .inputSection .balloon--pass {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  width: 240px;
  display: none;
  margin: -40px auto 0;
  justify-content: center;
  padding: 12px 16px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #2e3a45;
  border-radius: 20px;
}
.loginBox .inputSection .balloon--pass:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #2e3a45;
}
.loginBox .inputSection .mailInput {
  border-radius: 20px 20px 0 0;
}
.loginBox .inputSection input {
  width: 100%;
  margin: 1px 0;
  padding: 16px 24px;
  background: #050708;
  color: #E1E7EC;
  transition: 0.3s;
  border: none;
  font-size: 16px;
}
.loginBox .inputSection input[type=submit] {
  background: #E1E7EC;
  color: #05090D;
  border-radius: 0 0 20px 20px;
  font-weight: bold;
}
.loginBox .inputSection input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #E1E7EC inset;
}
.loginBox .inputSection input:-input- .loginBox .inputSection input:focus {
  color: #f9f9f9;
  background: #242D36;
  outline: none;
}
.loginBox .inputSection input::placeholder {
  color: #A6ABAD;
}
.loginBox .btn-login {
  margin-top: 2px;
  width: 100%;
  padding: 12px 18px;
  font-size: 18px;
  color: #000000;
  font-weight: 600;
  text-align: center;
  border-radius: 0 0 20px 20px;
  transition: 0.3s;
  transition: box-shadow 0.3s ease-in-out;
  background: #E1E7EC;
  font-weight: 900;
}
.loginBox .btn-login:hover {
  box-shadow: inset 0 0 40px whitesmoke, inset 20px 0 40px #f0f, inset -20px 0 80px #0ff, inset 20px 0 300px #f0f, inset -20px 0 300px #0ff, 0 0 30px rgba(255, 255, 255, 0.5), -10px 0 20px #f0f, 10px 0 20px #0ff;
}
.loginBox .btn-login:disabled {
  background: gray;
}
.loginBox .btn-login:disabled:hover {
  cursor: default;
  background: gray;
}
.loginBox .btn-cv {
  padding: 24px 56px;
  font-size: 32px;
  border-radius: 70px;
  color: #ffffff;
  white-space: nowrap;
  font-weight: 900;
  box-shadow: inset 0 0 60px #000000, inset 20px 0 80px #f0f, inset -20px 0 80px #0ff, inset 20px 0 300px #f0f, inset -20px 0 300px #0ff, 0 0 100px rgba(255, 255, 255, 0.5), 0px 0 10px #f0f, 0px 0 10px #0ff;
  transition: box-shadow 1s ease-in-out;
}
.loginBox .btn-cv:hover {
  box-shadow: inset 0 0 60px whitesmoke, inset 20px 0 80px #f0f, inset -20px 0 80px #0ff, inset 20px 0 300px #f0f, inset -20px 0 300px #0ff, 0 0 50px #fff, -10px 0 80px #f0f, 10px 0 80px #0ff;
}
.loginBox form {
  width: 100%;
}

.contentsBox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.contentsBox__room {
  position: relative;
  width: calc(100% - 28px);
  max-width: 430px;
  margin: 14px auto;
  height: 188px;
  background: #2e3a45;
  border-radius: 8px;
  overflow: hidden;
}
.contentsBox__room button {
  display: block;
  width: 100%;
  height: 100%;
}
.contentsBox__room .rankTxt {
  position: absolute;
  display: flex;
  align-items: baseline;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: flex;
}
.contentsBox__room .statusBox {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  display: flex;
}
.contentsBox__room__bg {
  position: absolute;
  width: 100%;
}
.contentsBox__room__monster {
  position: absolute;
  display: flex;
  top: calc(50% + 50px);
  left: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
  animation: imageAnimation 6s infinite;
}
.contentsBox__room__monster.sick {
  filter: hue-rotate(90deg);
  animation: shake 0.5s infinite;
}
.contentsBox__room__monster.dead {
  filter: hue-rotate(90deg);
  animation: ghostFadeInOut 4s infinite;
}
@keyframes imageAnimation {
  0%, 100% {
    transform: translate(-50%, -50%) scaleX(-1);
  }
  49.9% {
    transform: translate(calc(-50% + 4px), -50%) scaleX(-1);
  }
  50% {
    transform: translate(calc(-50% + 4px), -50%) scaleX(1);
  }
  99.9% {
    transform: translate(calc(-50% - 4px), -50%) scaleX(1);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(-2deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(2deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(-2deg);
  }
}
@keyframes ghostFadeInOut {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
}
.contentsBox__img {
  width: 160px;
  display: flex;
  justify-content: center;
}
.contentsBox__img img {
  border-radius: 50%;
  overflow: hidden;
  margin: 16px auto;
  animation: shadowColorChange 3s infinite;
}
@keyframes shadowColorChange {
  0% {
    filter: drop-shadow(0px 0px 40px rgba(255, 255, 255, 0.6));
  }
  50% {
    filter: drop-shadow(0px 0px 32px rgb(255, 255, 255));
  }
  100% {
    filter: drop-shadow(0px 0px 40px rgba(255, 255, 255, 0.6));
  }
}
.contentsBox__title {
  text-align: center;
  margin-bottom: 40px;
}
.contentsBox__title.success h2 {
  color: #35ae35;
}
.contentsBox__title.success i {
  color: #35ae35;
  font-size: 80px;
  margin-bottom: 16px;
}
.contentsBox__title h2 {
  color: #e6e6e6;
}
.contentsBox__title h2 i {
  margin-right: 6px;
}
.contentsBox__content {
  position: fixed;
  width: calc(100% - 40px);
  max-width: 375px;
  top: 80px;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
}
.contentsBox__content .noticeBox {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(36, 45, 54, 0.8));
  border-radius: 8px;
  width: 100%;
  max-width: 375px;
  padding: 32px 12px 12px;
}
.contentsBox__content .noticeBox h3,
.contentsBox__content .noticeBox p {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contentsBox__content h2 {
  color: #f9f9f9;
}
.contentsBox__content h3 {
  color: #BBBEC2;
}
.contentsBox__content p {
  margin-top: 8px;
  color: #BBBEC2;
  line-height: 1.8em;
}
.contentsBox__content a {
  color: #ffffff;
  padding-bottom: 4px;
  font-weight: 900;
  border-bottom: 1px solid #ffffff;
  transition: 0.3s;
}
.contentsBox__content a:hover {
  opacity: 0.7;
}
.contentsBox__content .noticeTitle {
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  font-size: 12px;
  padding: 8px 12px;
}
.contentsBox__content .noticeDate {
  position: absolute;
  right: 0;
  top: 0;
  padding: 8px 12px;
}
.contentsBox__status {
  width: 100%;
}
.contentsBox__status .row {
  width: 100%;
  margin-bottom: 8px;
}
.contentsBox__status .row col:nth-of-type(1) {
  width: 30%;
}
.contentsBox__status .row col:nth-of-type(2) meter {
  width: 70%;
}
.contentsBox__status .row col p {
  font-size: 0.75rem !important;
}
.contentsBox h1,
.contentsBox h2,
.contentsBox h3,
.contentsBox h4,
.contentsBox h5,
.contentsBox h6,
.contentsBox p {
  color: #f9f9f9;
}

@media screen and (max-width: 375px) {
  .contentsBox h2,
  .contentsBox h3 {
    font-size: 24px;
  }
  .contentsBox .fs-lg {
    font-size: 20px;
  }
  .contentsBox__content {
    top: 60px;
  }
  .contentsBox__content .noticeBox {
    padding: 24cpx !important;
  }
  .contentsBox__content .noticeBox .noticeTitle {
    display: none;
  }
  .contentsBox__content .noticeBox .noticeDate {
    display: none;
  }
}
.copyTxt {
  color: #76abda !important;
  font-weight: bold;
  position: relative;
  transition: 0.3s;
}
.copyTxt::before {
  font-family: "Font Awesome 6 Free";
  content: "\f24d";
  margin-right: 8px;
  font-weight: 200;
}
.copyTxt:hover {
  cursor: pointer;
  color: #9ec4e5 !important;
}
.copyTxt:hover::before {
  font-weight: 900;
}

.feedback {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 8px;
  border-radius: 4px;
  background: #333;
  color: #74d574;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
.feedback i {
  font-size: 16px;
  margin-bottom: 0 !important;
}
.feedback.show {
  display: block;
  opacity: 1;
}

.currentNotice {
  position: relative;
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px dashed #E1E7EC;
  text-align: center;
}
.currentNotice::after {
  position: absolute;
  content: "現在のお知らせ表示";
  top: 0;
  left: 0;
  padding: 8px 16px;
  color: #4dc94d;
  font-weight: bold;
}

.header .header-box {
  display: block;
}
.header .header-box__item {
  text-shadow: 0 0 4px black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  width: calc(100% - 28px);
  max-width: 430px;
  margin: 14px auto;
}
.header .header-box__item .ranking {
  box-shadow: 0 0 4px black;
  color: #f9f9f9;
}
.header .header-box__item .homeUserIcon {
  box-shadow: 0 0 4px black;
}
.header .header-box__item .nickName--name {
  text-shadow: 0 0 4px black;
  color: #f9f9f9;
}
.header .header-box__item__sub {
  display: flex;
  align-items: baseline;
  color: #f9f9f9;
  font-size: 24px;
  font-weight: bold;
  height: 100%;
  text-shadow: 0 0 4px black;
}
.header .header-box__item__sub:hover {
  color: #ffffff;
}
.header .header-box__item__sub i {
  margin-right: 4px;
  text-shadow: 0 0 4px black;
}
.header .header-box__item__sub span {
  margin-right: 4px;
  text-shadow: 0 0 4px black;
  color: #f9f9f9;
}
.header .header-box__item__sub img {
  height: 20px;
  -webkit-filter: drop-shadow(0 0 4px rgb(0, 0, 0));
  filter: drop-shadow(0 0 4px rgb(0, 0, 0));
}
.header .header-box__item__sub.level01 {
  /*
  background: linear-gradient(60deg, settings.$light01 0%, #9E9E9E 45%, settings.$light04 70%, #9E9E9E 85%, settings.$light01 90% 100%);
  background: -webkit-linear-gradient(60deg, #9E9E9E 0%, settings.$light01 45%, settings.$light04 50%, #9E9E9E 85%, settings.$light01 90% 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  */
}
.header .header-box__item__sub.level02 {
  /*
  background: linear-gradient(60deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
  background: -webkit-linear-gradient(60deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  */
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
input[type=submit]:disabled {
  background: #242D36 !important;
}
input[type=submit]:disabled:hover {
  background: #242D36 !important;
  box-shadow: none;
}

.form-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.form-wrapper input {
  position: relative;
  width: 100%;
}
.form-wrapper i {
  position: absolute;
  display: block;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  align-items: center;
  color: #BBBEC2;
  cursor: pointer;
  transition: 0.3s;
}
.form-wrapper i:hover {
  color: #E1E7EC;
}

.inputSectionAdmin {
  display: flex;
  align-items: flex-end;
}
.inputSectionAdmin .inputBox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.inputSectionAdmin .inputBox label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #8F9395;
}
.inputSectionAdmin button {
  height: 40px;
}

.date-picker {
  position: relative;
}
.date-picker__label {
  color: #E1E7EC;
  margin-bottom: 4px;
}
.date-picker input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.date-picker input[type=date]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(46, 58, 69, 0.5);
  background-color: #2e3a45;
}

.input-number {
  background: #E1E7EC;
  color: #182028;
  font-weight: bold;
  padding: 8px;
  border-radius: 4px;
  width: 12em;
  height: 44.8px;
  font-size: 14px;
}

.toggle_input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}
.toggle_input:hover {
  cursor: pointer;
}
.toggle_input:checked + .toggle_label {
  background: #4dc94d;
}
.toggle_input:checked + .toggle_label::after {
  left: 40px;
}
.toggle_label {
  width: 75px;
  height: 35px;
  background: #2e3a45;
  position: relative;
  display: inline-block;
  border-radius: 40px;
  transition: 0.4s;
  box-sizing: border-box;
}
.toggle_label:hover {
  cursor: pointer;
}
.toggle_label::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background: #E1E7EC;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}
.toggle_button {
  position: relative;
  width: 35px;
  height: 35px;
  margin: 0 40px;
}
.toggle_button:hover {
  cursor: pointer;
}

.login-form {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 5px;
  background: #ffffff;
}
.login-form h2 {
  text-align: center;
  margin-bottom: 20px;
}
.login-form form {
  display: flex;
  flex-direction: column;
}
.login-form form label {
  margin: 10px 0 5px 0;
}
.login-form form input {
  padding: 10px;
  border: 1px solid #BBBEC2;
  border-radius: 5px;
}
.login-form form button {
  margin-top: 20px;
  padding: 10px;
  background: #3279B8;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.loginBox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 28px);
  max-width: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  height: 300px;
  padding: 40px;
  z-index: 2;
}
.loginBox h2 {
  color: #E1E7EC;
  margin-bottom: 30px;
}
.loginBox .logo-mark-type {
  width: 100%;
  margin: 0 0 40px;
}
.loginBox .inputSection {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.loginBox .inputSection label {
  color: #BBBEC2;
  font-weight: bold;
  margin-bottom: 4px;
}
.loginBox .inputSection .balloon {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  display: none;
  margin: -90px auto 0;
  justify-content: center;
  padding: 12px 16px;
  min-width: 120px;
  max-width: auto;
  font-size: 16px;
  background: #2e3a45;
  border-radius: 20px;
}
.loginBox .inputSection .balloon p {
  text-align: center;
}
.loginBox .inputSection .balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #2e3a45;
}
.loginBox .inputSection .balloon--pass {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  width: 240px;
  display: none;
  margin: -40px auto 0;
  justify-content: center;
  padding: 12px 16px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #2e3a45;
  border-radius: 20px;
}
.loginBox .inputSection .balloon--pass:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #2e3a45;
}
.loginBox .inputSection .mailInput {
  border-radius: 20px 20px 0 0;
}
.loginBox .inputSection input {
  width: 100%;
  margin: 1px 0;
  padding: 16px 24px;
  background: #050708;
  color: #E1E7EC;
  transition: 0.3s;
  border: none;
  font-size: 16px;
}
.loginBox .inputSection input[type=submit] {
  background: #E1E7EC;
  color: #05090D;
  border-radius: 0 0 20px 20px;
  font-weight: bold;
}
.loginBox .inputSection input:-webkit-autofill {
  color: #f9f9f9;
  box-shadow: 0 0 0 1000px #E1E7EC inset;
}
.loginBox .inputSection input:focus {
  background: #242D36;
  color: #f9f9f9;
  outline: none;
}
.loginBox .inputSection input::placeholder {
  color: #A6ABAD;
}
.loginBox .btn-login {
  margin-top: 2px;
  width: 100%;
  padding: 12px 18px;
  font-size: 18px;
  color: #000000;
  font-weight: 600;
  text-align: center;
  border-radius: 0 0 20px 20px;
  transition: 0.3s;
  transition: box-shadow 0.3s ease-in-out;
  background: #E1E7EC;
  font-weight: 900;
}
.loginBox .btn-login:hover {
  box-shadow: inset 0 0 40px whitesmoke, inset 20px 0 40px #f0f, inset -20px 0 80px #0ff, inset 20px 0 300px #f0f, inset -20px 0 300px #0ff, 0 0 30px rgba(255, 255, 255, 0.5), -10px 0 20px #f0f, 10px 0 20px #0ff;
}
.loginBox .btn-login:disabled {
  background: gray;
}
.loginBox .btn-login:disabled:hover {
  cursor: default;
  background: gray;
}
.loginBox .btn-cv {
  padding: 24px 56px;
  font-size: 32px;
  border-radius: 70px;
  color: #ffffff;
  white-space: nowrap;
  font-weight: 900;
  box-shadow: inset 0 0 60px #000000, inset 20px 0 80px #f0f, inset -20px 0 80px #0ff, inset 20px 0 300px #f0f, inset -20px 0 300px #0ff, 0 0 100px rgba(255, 255, 255, 0.5), 0px 0 10px #f0f, 0px 0 10px #0ff;
  transition: box-shadow 1s ease-in-out;
}
.loginBox .btn-cv:hover {
  box-shadow: inset 0 0 60px whitesmoke, inset 20px 0 80px #f0f, inset -20px 0 80px #0ff, inset 20px 0 300px #f0f, inset -20px 0 300px #0ff, 0 0 50px #fff, -10px 0 80px #f0f, 10px 0 80px #0ff;
}
.loginBox form {
  width: 100%;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
/* CSS */
body.modal-open {
  overflow: hidden !important;
}

.modal-first .page {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 375px;
  height: 600px !important;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1002;
  color: #E1E7EC;
  text-align: center;
}
.modal-first .page.active {
  display: block;
}
.modal-first .page__top {
  display: none;
}
.modal-first .page__middle {
  height: 375px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal-first .page__middle .selectedBuddyImgDep {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 16px;
}
.modal-first .page__middle video {
  width: 100%;
}
.modal-first .page__comment {
  height: 178px;
  padding: 16px;
  overflow: scroll;
  background: #182028;
  border-radius: 16px 16px 0 0;
  text-align: left;
  border-top: 1px solid #8F9395;
  border-left: 1px solid #8F9395;
  border-right: 1px solid #8F9395;
}
.modal-first .page__comment .speaker {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.modal-first .page__comment .speaker img {
  width: 32px;
  height: 32px;
  border-radius: 16px;
}
.modal-first .page__comment .speaker p {
  font-weight: bold;
  font-size: 18px;
}
.modal-first .page__comment.none {
  border: none;
  background: none;
}
.modal-first .page__bottom {
  height: 44px;
  background: #182028;
  border-radius: 0 0 16px 16px;
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid #8F9395;
  border-left: 1px solid #8F9395;
  border-right: 1px solid #8F9395;
}
.modal-first .page__bottom.none {
  border: none;
  background: none;
}
.modal-first .page__bottom.none.center {
  justify-content: center;
}
.modal-first .page__bottom.none input {
  width: 100%;
}
.modal-first .page__end {
  height: 556px;
  border-radius: 0 0 16px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-first .buddySelector {
  display: flex;
  justify-content: center;
}
.modal-first .buddySelector .buddyCard {
  opacity: 0.6;
  display: flex;
  flex-direction: column;
  width: 120px;
  margin: 4px;
  padding: 24px 24px;
  background: #242D36;
  border: 1px solid #242D36;
  border-radius: 24px;
  transition: 0.3s;
}
.modal-first .buddySelector .buddyCard.selected {
  opacity: 1;
  border: 1px solid #f9f9f9;
}
.modal-first .buddySelector .buddyCard.selected img {
  animation: glowAnimation 2s infinite;
}
.modal-first .buddySelector .buddyCard img {
  transition: all 0.3s;
}
.modal-first .buddySelector .buddyCard:hover {
  background: #2e3a45;
  cursor: pointer;
}
.modal-first .buddySelector .buddyCard:hover img {
  transform: scale(1.2, 1.2);
}
.modal-first .buddySelector .buddyCard h3 {
  margin-top: 16px;
}
.modal-first .buddySelector .buddyCard p {
  font-size: 14px;
  margin-top: 8px;
  color: #A6ABAD;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.modal button {
  pointer-events: auto !important;
}
.modal.active {
  display: block;
}
.modal__bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}
.modal__bg.main {
  background: rgb(0, 0, 0);
}
.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  max-width: 375px;
  height: calc(100% - 20px);
  max-height: 600px;
  background: #182028;
  color: #E1E7EC;
  padding: 20px;
  border-radius: 24px;
  z-index: 1001;
  position: relative;
}
.modal__content.main::before {
  position: absolute;
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(/static/img/background/bg-blue.gif) no-repeat center center;
  background-size: cover;
  opacity: 0.4;
  z-index: -1;
}
.modal__content.epilogue::before {
  position: absolute;
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100vw;
  height: 100vh;
  background: url(/static/img/background/bg-heaven.gif) no-repeat center center;
  background-size: cover;
  opacity: 0.6;
  z-index: -1;
}
.modal__content.villain::before {
  position: absolute;
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100vw;
  height: 100vh;
  background: url(/static/img/background/bg.gif) no-repeat center center;
  background-size: cover;
  opacity: 0.6;
  z-index: -1;
}
.modal__content__header {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translate(-50%, 0);
  height: 60px;
  width: calc(100% - 32px);
}
.modal__content__header .healthBox .bossName {
  text-align: left;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: bold;
}
.modal__content__main {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 360px;
  padding: 16px;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0);
}
.modal__content__main img {
  height: calc(100% - 80px);
}
.modal__content__main .effect {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: blink-shrink 1.6s ease forwards;
}
@keyframes blink-shrink {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  45% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  75% {
    opacity: 0;
    transform: scale(0.4);
  }
  100% {
    opacity: 0;
    transform: scale(0);
    visibility: hidden;
  }
}
.modal__content__footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 180px;
}
.modal__content__footer .battleMessageBox {
  position: relative;
  height: 100%;
  width: calc(100% - 32px);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  padding: 16px;
  font-size: 14px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid #E1E7EC;
  backdrop-filter: blur(10px);
}
.modal__content__footer .battleMessageBox__header {
  display: flex;
  align-items: center;
  position: absolute;
  top: 16px;
  left: 16px;
}
.modal__content__footer .battleMessageBox__header img {
  width: 22px;
  height: 22px;
}
.modal__content__footer .battleMessageBox__header p {
  font-weight: bold;
  margin-left: 4px;
  font-size: 18px;
}
.modal__content__footer .battleMessageBox__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 48px;
  left: 16px;
}
.modal__content__footer .battleMessageBox__footer {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  justify-content: flex-end;
}
.modal__content .tabBody {
  padding: 0px !important;
}
.modal__content__tabSelector {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.modal__content__tabSelector.two {
  display: flex;
}
.modal__content__tabSelector.two .tab {
  color: #8F9395;
  font-weight: bold;
  padding: 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
  font-size: 18px;
  transition: 0.3s;
  width: 50%;
}
.modal__content__tabSelector.three {
  display: flex;
}
.modal__content__tabSelector.three .tab {
  color: #8F9395;
  font-weight: bold;
  padding: 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
  font-size: 18px;
  transition: 0.3s;
  width: 33.3333333333%;
}
.modal__content__tabSelector .tab {
  color: #8F9395;
  font-weight: bold;
  margin: 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
  font-size: 18px;
  transition: 0.3s;
}
.modal__content__tabSelector .tab i {
  margin-right: 0;
}
.modal__content__tabSelector .tab:hover {
  cursor: pointer;
  color: #BBBEC2;
}
.modal__content__tabSelector .tab.active {
  color: #f9f9f9;
  font-weight: bold;
  border-bottom: 2px solid #f9f9f9;
}
.modal__content .explanation {
  width: calc(16em + 8px);
  text-align: left;
  color: #A6ABAD;
}
.modal__content .noticeDate i {
  font-size: 12px !important;
}
.modal__content__btnTopBox {
  display: flex;
  justify-content: flex-end;
}
.modal__content__btnTopBox .btn-close {
  display: flex;
  justify-content: flex-end;
  color: #E1E7EC;
  font-size: 20px;
  pointer-events: auto !important;
}
.modal__content .modal__messageBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: calc(100% - 40px);
}
.modal__content .modal__messageBox.envelopeContainer {
  max-height: calc(100% - 200px);
  overflow-y: scroll;
}
.modal__content .modal__messageBox .accountIcon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #8F9395;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 16px;
}
.modal__content .modal__messageBox .accountIcon--getClickedUser {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #8F9395;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
.modal__content .modal__messageBox .userIconContainer {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.modal__content .modal__messageBox .userIconContainer:hover {
  cursor: pointer !important;
}
.modal__content .modal__messageBox .userIconContainer:hover .accountIcon {
  cursor: pointer;
  border: 2px solid #76abda;
}
.modal__content .modal__messageBox .userIconContainer:hover i {
  color: #76abda;
}
.modal__content .modal__messageBox .userIconContainer .accountIcon {
  position: relative;
}
.modal__content .modal__messageBox .userIconContainer i {
  transition: 0.3s;
  color: #BBBEC2;
  position: absolute;
  right: -20px;
  bottom: -20px;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 22px;
  background: #242D36;
  border: 2px solid #242D36;
  border-radius: 22px;
}
.modal__content .modal__messageBox h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
}
.modal__content .modal__messageBox i {
  margin-bottom: 20px;
}
.modal__content .modal__messageBox.done {
  color: #4dc94d;
}
.modal__content .modal__messageBox__infoEnvelope {
  position: relative;
  padding: 16px;
  text-align: left;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  border-radius: 8px;
  transition: 0.3s;
}
.modal__content .modal__messageBox__infoEnvelope:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
}
.modal__content .modal__messageBox__infoEnvelope .badge {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: #e16363;
  animation: badgeGlow 1s infinite alternate;
  border-radius: 10px;
}
@keyframes badgeGlow {
  0%, 100% {
    background: #e16363;
  }
  50% {
    background: #e98e8e;
  }
}
.modal__content .modal__icon img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.modal__content .balanceBox {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.modal__content .balanceBox p:first-of-type {
  font-size: 14px;
}
.modal__content .balanceBox p:last-of-type {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: baseline;
}
.modal__content .balanceBox p:last-of-type img {
  height: 18px;
  margin-right: 2px;
}
.modal__content .balanceBox p:last-of-type span:last-of-type {
  font-size: 16px;
  margin-left: 4px;
}
.modal__content .tableBox {
  border-radius: 8px;
  max-height: 390px;
  overflow: scroll;
}
.modal__content .tableBox::-webkit-scrollbar {
  display: none;
}
.modal__content table {
  overflow: auto;
  border: none;
  border-spacing: 0;
  width: 100%;
}
.modal__content table thead {
  position: sticky;
  top: 0;
  left: 0;
  border-top: 4px solid #576d83;
}
.modal__content table thead th {
  text-align: left;
  padding: 4px 8px;
  font-weight: 300;
  font-size: bold;
  background: #242D36;
}
.modal__content table tbody {
  overflow: hidden;
  border: none;
}
.modal__content table tbody tr td {
  border-top: 1px solid #8F9395;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  padding: 8px;
}
.modal__content h4 {
  font-weight: 300;
}
.modal .dex-item__icon {
  width: 80px;
}
.modal .dex-item__monsterImg {
  width: 200px;
}
.modal .dex-item__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-height: 408px;
  min-width: 335px;
  overflow-y: scroll;
}
.modal .dex-item__wrapper::-webkit-scrollbar {
  display: none;
}
.modal .dex-item__wrapper::before {
  content: "";
  display: block;
  width: 80px;
  height: 0px;
  order: 1;
}
.modal .dex-item__wrapper::after {
  content: "";
  display: block;
  width: 80px;
  height: 0px;
}
.modal .dex-item__wrapper__Box {
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 67px;
  height: 67px;
  box-sizing: border-box;
  position: relative;
}
.modal .dex-item__wrapper__Box:not(.get)::before {
  content: "";
  position: absolute;
  width: 51px;
  height: 51px;
  border: 2px solid #8F9395;
  border-radius: 8px;
  background: url("/static/img/common/question-2.png") no-repeat center center;
  background-size: contain;
  display: block;
}
.modal .dex-item__wrapper__Box:not(.get) button {
  pointer-events: none !important;
}
.modal .dex-item__wrapper__Box:not(.get) img {
  display: none;
}
.modal .dex-item__wrapper__Box.get::before {
  display: none;
}
.modal .dex-item__wrapper__Box.get.selected button {
  position: relative;
}
.modal .dex-item__wrapper__Box.get.selected button::after {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translate(-50%, 0);
  content: "装備中";
  padding: 2px 8px;
  font-size: 8px;
  font-weight: bold;
  color: #05090D;
  background: #ffffff;
  border-radius: 8px;
  z-index: 1;
}
.modal .dex-item__wrapper__Box.get.selected button img {
  border: 2px solid white;
  background: #e48cba;
}
.modal .dex-item__wrapper__Box.get.reach img {
  animation: 1.2s reachGlow linear infinite;
}
.modal .dex-item__wrapper__Box.get.bingo img {
  animation: 0.8s rainbow linear infinite;
}
.modal .dex-item__wrapper__Box.get img {
  opacity: 1;
  display: block;
  border: 2px solid #9ec4e5;
  background: #9ec4e5;
}
.modal .dex-item__wrapper__Box img {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  border: 2px solid #BBBEC2;
  background: #242D36;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
.modal .dex-buddy__icon {
  width: 80px;
}
.modal .dex-buddy__monsterImg {
  width: 200px;
}
.modal .dex-buddy__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-height: 408px;
  min-width: 335px;
  overflow-y: scroll;
}
.modal .dex-buddy__wrapper::-webkit-scrollbar {
  display: none;
}
.modal .dex-buddy__wrapper::before {
  content: "";
  display: block;
  width: 80px;
  height: 0px;
  order: 1;
}
.modal .dex-buddy__wrapper::after {
  content: "";
  display: block;
  width: 80px;
  height: 0px;
}
.modal .dex-buddy__wrapper__Box {
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 67px;
  height: 67px;
  box-sizing: border-box;
  position: relative;
}
.modal .dex-buddy__wrapper__Box:not(.get)::before {
  content: "";
  position: absolute;
  width: 51px;
  height: 51px;
  border: 2px solid #8F9395;
  border-radius: 8px;
  background: url("/static/img/common/question-2.png") no-repeat center center;
  background-size: contain;
  display: block;
}
.modal .dex-buddy__wrapper__Box:not(.get) button {
  pointer-events: none !important;
}
.modal .dex-buddy__wrapper__Box:not(.get) img {
  display: none;
}
.modal .dex-buddy__wrapper__Box.get::before {
  display: none;
}
.modal .dex-buddy__wrapper__Box.get.selected button {
  position: relative;
}
.modal .dex-buddy__wrapper__Box.get.selected button::after {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translate(-50%, 0);
  content: "現在の姿";
  padding: 2px 8px;
  font-size: 8px;
  font-weight: bold;
  color: #05090D;
  background: #ffffff;
  border-radius: 8px;
  z-index: 1;
}
.modal .dex-buddy__wrapper__Box.get.selected button img {
  border: 2px solid white;
  background: #e48cba;
}
.modal .dex-buddy__wrapper__Box.get.reach img {
  animation: 1.2s reachGlow linear infinite;
}
.modal .dex-buddy__wrapper__Box.get.bingo img {
  animation: 0.8s rainbow linear infinite;
}
.modal .dex-buddy__wrapper__Box.get img {
  opacity: 1;
  display: block;
  border: 2px solid #9ec4e5;
  background: #9ec4e5;
}
.modal .dex-buddy__wrapper__Box img {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  background: #242D36;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
.modal .dex-level__icon {
  width: 80px;
}
.modal .dex-level__monsterImg {
  width: 200px;
}
.modal .dex-level__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-height: 408px;
  min-width: 335px;
  overflow-y: scroll;
}
.modal .dex-level__wrapper::-webkit-scrollbar {
  display: none;
}
.modal .dex-level__wrapper::before {
  content: "";
  display: block;
  width: 80px;
  height: 0px;
  order: 1;
}
.modal .dex-level__wrapper::after {
  content: "";
  display: block;
  width: 80px;
  height: 0px;
}
.modal .dex-level__wrapper__Box {
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 67px;
  height: 67px;
  box-sizing: border-box;
  position: relative;
}
.modal .dex-level__wrapper__Box:not(.get)::before {
  content: "";
  position: absolute;
  width: 51px;
  height: 51px;
  border: 2px solid #8F9395;
  border-radius: 27.5px;
  background: url("/static/img/common/question-2.png") no-repeat center center;
  background-size: contain;
  display: block;
}
.modal .dex-level__wrapper__Box:not(.get) img {
  display: none;
}
.modal .dex-level__wrapper__Box.get::before {
  display: none;
}
.modal .dex-level__wrapper__Box.get img {
  opacity: 1;
  display: block;
}
.modal .dex-level__wrapper__Box.get.reach img {
  animation: 1.2s reachGlow linear infinite;
}
.modal .dex-level__wrapper__Box.get.bingo img {
  animation: 0.8s rainbow linear infinite;
}
.modal .dex-level__wrapper__Box.get img {
  border: 2px solid #f9f9f9;
  background: #3279B8;
}
.modal .dex-level__wrapper__Box img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #BBBEC2;
  background: #242D36;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
.modal .dex-trophy__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-height: 408px;
  max-width: 408px;
  overflow-y: scroll;
}
.modal .dex-trophy__wrapper::-webkit-scrollbar {
  display: none;
}
.modal .dex-trophy__wrapper::before {
  content: "";
  display: block;
  width: 80px;
  height: 0px;
  order: 1;
}
.modal .dex-trophy__wrapper::after {
  content: "";
  display: block;
  width: 80px;
  height: 0px;
}
.modal .dex-trophy__wrapper__Box {
  padding: 3px;
  margin: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 105px;
  box-sizing: border-box;
  position: relative;
}
.modal .dex-trophy__wrapper__Box:not(.get)::before {
  content: "";
  position: absolute;
  width: 105px;
  height: 105px;
  border: 2px solid #8F9395;
  border-radius: 8px;
  background: url("/static/img/common/question-2.png") no-repeat center center;
  background-size: contain;
  display: block;
}
.modal .dex-trophy__wrapper__Box:not(.get) img {
  display: none;
}
.modal .dex-trophy__wrapper__Box button {
  pointer-events: none !important;
}
.modal .dex-trophy__wrapper__Box.get::before {
  display: none;
}
.modal .dex-trophy__wrapper__Box.get img {
  opacity: 1;
  display: block;
}
.modal .dex-trophy__wrapper__Box.get.reach img {
  animation: 1.2s reachGlow linear infinite;
}
.modal .dex-trophy__wrapper__Box.get.bingo img {
  animation: 0.8s rainbow linear infinite;
}
.modal .dex-trophy__wrapper__Box.get img {
  border: 2px solid #f9f9f9;
  background: #3279B8;
}
.modal .dex-trophy__wrapper__Box img {
  width: 105px;
  height: 105px;
  margin: 3px;
  border-radius: 8px;
  border: 2px solid #BBBEC2;
  background: #242D36;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
.modal .itemDex__icon {
  width: 80px;
}
.modal .itemDex__monsterImg {
  width: 200px;
}
.modal .itemDex__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-height: 408px;
  min-width: 335px;
  overflow-y: scroll;
}
.modal .itemDex__wrapper::-webkit-scrollbar {
  display: none;
}
.modal .itemDex__wrapper::before {
  content: "";
  display: block;
  width: 80px;
  height: 0px;
  order: 1;
}
.modal .itemDex__wrapper::after {
  content: "";
  display: block;
  width: 80px;
  height: 0px;
}
.modal .itemDex__wrapper__Box {
  padding: 6px;
  opacity: 0.2;
  display: block;
}
.modal .itemDex__wrapper__Box button {
  pointer-events: none !important;
}
.modal .itemDex__wrapper__Box.get {
  opacity: 1;
}
.modal .itemDex__wrapper__Box.get.selected button {
  position: relative;
}
.modal .itemDex__wrapper__Box.get.selected button::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  content: "装備中";
  padding: 2px 8px;
  font-size: 8px;
  font-weight: bold;
  color: #05090D;
  background: #76abda;
  border-radius: 8px;
}
.modal .itemDex__wrapper__Box.get.selected button img {
  border: 2px solid #76abda;
}
.modal .itemDex__wrapper__Box.get.reach button img {
  animation: 1.2s reachGlow linear infinite;
}
.modal .itemDex__wrapper__Box.get.bingo button img {
  animation: 0.8s rainbow linear infinite;
}
.modal .itemDex__wrapper__Box.get button {
  pointer-events: auto !important;
  transition: 0.3s;
}
.modal .itemDex__wrapper__Box.get button img {
  transition: 0.3s;
}
.modal .itemDex__wrapper__Box.get button img:hover {
  border: 2px solid #f9f9f9;
  background: #3279B8;
}
.modal .itemDex__wrapper__Box img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #BBBEC2;
  background: #242D36;
}
.modal .monsterDex__icon {
  width: 80px;
}
.modal .monsterDex__monsterImg {
  width: 160px;
}
.modal .monsterDex__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-height: 408px;
  min-width: 335px;
  overflow-y: scroll;
}
.modal .monsterDex__wrapper::-webkit-scrollbar {
  display: none;
}
.modal .monsterDex__wrapper::before {
  content: "";
  display: block;
  width: 80px;
  height: 0px;
  order: 1;
}
.modal .monsterDex__wrapper::after {
  content: "";
  display: block;
  width: 80px;
  height: 0px;
}
.modal .monsterDex__wrapper__Box {
  padding: 6px;
  opacity: 0.2;
  display: block;
}
.modal .monsterDex__wrapper__Box button {
  pointer-events: none !important;
}
.modal .monsterDex__wrapper__Box.get {
  opacity: 1;
}
.modal .monsterDex__wrapper__Box.get.reach button img {
  animation: 1.2s reachGlow linear infinite;
}
.modal .monsterDex__wrapper__Box.get.bingo button img {
  animation: 0.8s rainbow linear infinite;
}
.modal .monsterDex__wrapper__Box.get button {
  pointer-events: auto !important;
  transition: 0.3s;
}
.modal .monsterDex__wrapper__Box.get button img {
  transition: 0.3s;
}
.modal .monsterDex__wrapper__Box.get button img:hover {
  border: 2px solid #f9f9f9;
  background: #3279B8;
}
.modal .monsterDex__wrapper__Box img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #BBBEC2;
  background: #242D36;
}

@media screen and (max-width: 431px) {
  .modal .monsterDex__wrapper,
  .modal .itemDex__wrapper {
    max-width: 280px;
    min-width: 280px;
    width: 280px;
    margin: 0 auto;
  }
  .modal .monsterDex__wrapper__Box,
  .modal .itemDex__wrapper__Box {
    padding: 4px;
  }
  .modal .monsterDex__wrapper__Box img,
  .modal .itemDex__wrapper__Box img {
    width: 40px;
    height: 40px;
  }
}
.inputFirstModalTxt {
  height: 56px;
  border: none;
  outline: none;
  background: #2e3a45;
  color: #E1E7EC;
  padding: 16px 24px;
  text-align: center;
  border-radius: 16px;
  font-weight: bold;
  width: 100%;
}
.inputFirstModalTxt:focus {
  outline: 1px solid #3279B8;
}

.editModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
}
.editModal.active {
  display: block;
}
.editModal__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.editModal__container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  max-width: 375px;
  height: fit-content;
  max-height: 70vh;
  background: #242D36;
  border-radius: 16px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.24);
  width: 90%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalFadeIn 0.3s ease-out;
  z-index: 101;
}
.editModal__header {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  flex-shrink: 0;
}
.editModal__header .editModal__title {
  margin: 0;
  font-size: 20px;
  color: #8F9395;
}
.editModal__body {
  padding: 16px 16px 110px;
  flex: 1;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  color: #BBBEC2;
  height: fit-content;
  max-height: 70vh;
}
.editModal__body .adminInput {
  max-width: 200px;
}
.editModal__body::-webkit-scrollbar {
  display: none;
}
.editModal__body .editModal__field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.editModal__body .editModal__field label {
  font-size: 12px;
  font-weight: bold;
  color: #8F9395;
  margin-bottom: 4px;
}
.editModal__body .editModal__field input,
.editModal__body .editModal__field textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  padding: 8px;
  font-size: 14px;
  color: #f9f9f9;
  transition: border-color 0.2s;
  outline: 1px solid #3279B8;
}
.editModal__body .editModal__field input:focus,
.editModal__body .editModal__field textarea:focus {
  outline: none;
  border-color: #3279B8;
}
.editModal__body .editModal__field textarea {
  min-height: 80px;
  resize: vertical;
}
.editModal__footer {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #242D36;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-shrink: 0;
  z-index: 2;
}
.editModal__footer button {
  min-width: 80px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}
.editModal__footer .btn-secondary {
  background: transparent;
  color: #BBBEC2;
}
.editModal__footer .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}
.editModal__footer .btn-primary {
  background: #3279B8;
  color: #f9f9f9;
}
.editModal__footer .btn-primary:hover {
  background: #4e92cf;
}
.editModal__footer .btn-delete {
  background: #D93838;
  color: #f9f9f9;
}
.editModal__footer .btn-delete:hover {
  background: #e16363;
}
.editModal__footer .btn-create {
  background: #298729;
  color: #f9f9f9;
}
.editModal__footer .btn-create:hover {
  background: #35ae35;
}

@media screen and (max-width: 768px) {
  .editModal__container {
    width: calc(100% - 20px);
    max-width: 375px;
    height: calc(100% - 20px);
    max-height: 667px;
  }
}
.modal-exec {
  display: none;
  z-index: 10001;
  position: relative;
}
.modal-exec.active {
  display: block;
}
.modal-exec__bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
}
.modal-exec__container {
  z-index: 10004;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  max-width: 375px;
  height: fit-content;
  max-height: 70vh;
  background: #242D36;
  border-radius: 16px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.24);
  width: 90%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalFadeIn 0.3s ease-out;
  z-index: 101;
}
.modal-exec__header {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  flex-shrink: 0;
}
.modal-exec__title {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #8F9395;
}
.modal-exec__body {
  padding: 16px 16px 84px;
  flex: 1;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  color: #BBBEC2;
  text-align: center;
}
.modal-exec__body::-webkit-scrollbar {
  display: none;
}
.modal-exec__body__alert {
  padding: 14px;
  border: 1px solid #8F9395;
  border-radius: 8px;
  color: #8F9395;
  width: 100%;
}
.modal-exec__body__alert span {
  color: #BBBEC2;
  margin: 0 4px;
}
.modal-exec__field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.modal-exec__field label {
  font-size: 12px;
  font-weight: bold;
  color: #8F9395;
  margin-bottom: 4px;
}
.modal-exec__field input,
.modal-exec__field textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  padding: 8px;
  font-size: 14px;
  color: #f9f9f9;
  transition: border-color 0.2s;
}
.modal-exec__field input:focus,
.modal-exec__field textarea:focus {
  outline: none;
  border-color: #3279B8;
}
.modal-exec__field textarea {
  min-height: 80px;
  resize: vertical;
}
.modal-exec__footer {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #242D36;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-shrink: 0;
}
.modal-exec__footer button {
  min-width: 80px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}
.modal-exec__footer .btn-secondary {
  background: transparent;
  color: #BBBEC2;
}
.modal-exec__footer .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}
.modal-exec__footer .btn-primary {
  background: #3279B8;
  color: #f9f9f9;
}
.modal-exec__footer .btn-primary:hover {
  background: #4e92cf;
}
.modal-exec__footer .btn-delete {
  background: #D93838;
  color: #f9f9f9;
}
.modal-exec__footer .btn-delete:hover {
  background: #e16363;
}
.modal-exec__footer .btn-create {
  background: #298729;
  color: #f9f9f9;
}
.modal-exec__footer .btn-create:hover {
  background: #35ae35;
}

.fadeInImg {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 4s ease, filter 1s ease;
}

.fadeInImg.visible {
  opacity: 1;
  filter: blur(0);
}

.bg-villain {
  background: url(/static/img/common/bg-villain-01.png);
}
.bg-villain-cover {
  width: 100vw;
  height: 100vh;
  background: url(/static/img/common/bg-villain-01.png) no-repeat center center;
  background-size: cover;
}
.bg-ray {
  background: url(/static/img/common/bg-ray.png);
}
.bg-ray-cover {
  width: 100vw;
  height: 100vh;
  background: url(/static/img/common/bg-ray.png) no-repeat center center;
  background-size: cover;
}
.bg-none {
  background: transparent;
}

.modal__content__body {
  padding: 16px 16px 110px;
  flex: 1;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  color: #BBBEC2;
  height: fit-content;
  max-height: 100%;
}

.cover-footer {
  width: 100%;
  background: #182028;
  height: fit-content;
  display: flex;
  justify-content: center;
}

.user-detail-section {
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 8px;
  background: #242D36;
}
.user-detail-section h3 {
  margin: 0 0 16px 0;
  color: #8F9395;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid #666;
  padding-bottom: 8px;
}

.user-detail-section .user-basic-info,
.buddy-info-container,
.equipped-item-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-icon-large,
.buddy-image,
.item-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

.user-stats-grid,
.battle-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  background: #242D36;
}
.stat-item label {
  display: block;
  font-size: 12px;
  color: #8F9395;
  margin-bottom: 4px;
}
.stat-value {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #8F9395;
}

.rank-letter {
  color: #007bff;
  font-size: 24px;
}

.info-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 8px;
  align-items: center;
}
.info-row label {
  font-weight: bold;
  color: #8F9395;
  min-width: 14px;
}

.item-image {
  border-radius: 8px;
}

.item-stats div {
  font-size: 14px;
  margin-bottom: 4px;
  color: #8F9395;
}

.user-detail-loading {
  text-align: center;
  padding: 40px;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .user-basic-info,
  .buddy-info-container,
  .equipped-item-container {
    flex-direction: column;
    text-align: center;
  }
  .user-stats-grid,
  .battle-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.honorBox.boss-active #attacker-honor-box,
.honorBox.boss-active #finisher-honor-box {
  display: none !important;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.honorBox.boss-defeated #attacker-honor-box,
.honorBox.boss-defeated #finisher-honor-box {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
.point {
  font-size: 26px;
  margin-right: 4px;
}

.points-check {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 5px;
  background-color: #ffffff;
}
.points-check h2 {
  text-align: center;
  margin-bottom: 20px;
}
.points-check #pointsDisplay {
  font-size: 2em;
  text-align: center;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
.table-wrapper {
  max-width: 892px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
.daterangeArea {
  position: relative;
}
.daterangeArea:hover {
  cursor: pointer;
}
.daterangeArea .daterange {
  background: #2e3a45;
  color: #BBBEC2;
  border-radius: 8px;
  padding: 20px 20px 20px 40px;
  position: relative;
  transition: 0.3s;
}
.daterangeArea .daterange:focus {
  outline: 2px solid #3279B8;
}
.daterangeArea .daterange:hover {
  cursor: pointer;
}
.daterangeArea::after {
  position: absolute;
  content: "\f073";
  font-family: "FontAwesome";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #BBBEC2;
  pointer-events: none;
  font-size: 1em;
  z-index: 100;
}

.daterangepicker {
  position: absolute;
  color: inherit;
  background: #4C5760;
  border-radius: 4px;
  border: none;
  width: 278px;
  max-width: none;
  padding: 0;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
  z-index: 3001;
  top: 180px !important;
  right: 200px !important;
}
.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: "";
}
.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}
.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #4C5760;
  border-left: 6px solid transparent;
}
.daterangepicker.opensleft:before {
  right: 9px;
}
.daterangepicker.opensleft:after {
  right: 10px;
}
.daterangepicker.openscenter:before, .daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}
.daterangepicker.opensright:before {
  left: 9px;
}
.daterangepicker.opensright:after {
  left: 10px;
}
.daterangepicker.drop-up {
  margin-top: -7px;
}
.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}
.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}
.daterangepicker.single .daterangepicker .ranges,
.daterangepicker.single .drp-calendar {
  float: none;
}
.daterangepicker.single .drp-selected {
  display: none;
}
.daterangepicker.show-calendar .drp-calendar,
.daterangepicker.show-calendar .drp-buttons {
  display: block;
}
.daterangepicker.auto-apply .drp-buttons {
  display: none;
}
.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}
.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}
.daterangepicker .drp-calendar.right {
  padding: 8px;
}
.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}
.daterangepicker .calendar-table {
  border-radius: 4px;
  background: #4C5760;
}
.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  color: #E1E7EC;
  border: solid #E1E7EC;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}
.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}
.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  background-color: #4C5760;
  border-color: transparent;
  color: inherit;
}
.daterangepicker tbody td.available:hover,
.daterangepicker tbody th.available:hover {
  background-color: #3279B8;
  border-color: transparent;
  color: inherit;
}
.daterangepicker td.week,
.daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}
.daterangepicker td.off {
  background: #4C5760;
  border-color: transparent;
  color: #8F9395;
}
.daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background: #4C5760;
  border-color: transparent;
  color: #8F9395;
}
.daterangepicker td.in-range {
  background-color: #4e92cf;
  border-color: transparent;
  color: #E1E7EC;
  border-radius: 0;
}
.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}
.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}
.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}
.daterangepicker td.active {
  background-color: #357ebd;
  border-color: transparent;
  color: #E1E7EC;
}
.daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #E1E7EC;
}
.daterangepicker th.month {
  width: auto;
}
.daterangepicker td.disabled,
.daterangepicker option.disabled {
  color: #8F9395;
  cursor: not-allowed;
  text-decoration: line-through;
}
.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}
.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}
.daterangepicker select.yearselect {
  width: 40%;
}
.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}
.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}
.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}
.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}
.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}
.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}
.daterangepicker .btn-primary {
  background: #3279B8;
  color: #f9f9f9;
  box-shadow: 0 0 2px #0E151B;
  transition: 0.3s;
}
.daterangepicker .btn-primary:hover {
  background: #4e92cf;
}
.daterangepicker .btn-primary:active {
  background: #76abda;
}
.daterangepicker .btn-default {
  color: #E1E7EC;
  transition: 0.3s;
}
.daterangepicker .btn-default:hover {
  color: white;
}
.daterangepicker .btn-default:active {
  color: white;
}
.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}
.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}
.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}
.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}
.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}
.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}
.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}
.daterangepicker .ranges li:hover {
  background-color: #eee;
}
.daterangepicker .ranges li.active {
  background-color: #3279B8;
  color: #E1E7EC;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: 482px;
    direction: ltr;
    text-align: left;
  }
  .daterangepicker .ranges ul {
    width: 140px;
  }
  .daterangepicker.single .ranges ul {
    width: 100%;
  }
  .daterangepicker.single .drp-calendar.left {
    clear: none;
  }
  .daterangepicker.single .ranges,
  .daterangepicker.single .drp-calendar {
    float: left;
  }
  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .daterangepicker .drp-calendar.right {
    margin-left: 0;
  }
  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px;
  }
  .daterangepicker .ranges,
  .daterangepicker .drp-calendar {
    float: left;
  }
}
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
    float: left;
  }
  .daterangepicker.rtl .ranges {
    float: right;
  }
  .daterangepicker .drp-calendar.left {
    clear: none !important;
  }
}
/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.timeProgress {
  width: 100%;
  height: 20px;
  background-color: transparent;
  border: none;
  appearance: none;
  -webkit-appearance: none;
}
.timeProgress::-webkit-progress-bar {
  background-color: #4C5760;
  border-radius: 5px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  height: 3px;
}
.timeProgress::-webkit-progress-value {
  background: linear-gradient(90deg, #5C5A60, #908C9A, #AFA8AE, #C1BBB7);
  border-radius: 5px;
  height: 3px;
}
.timeProgress::-moz-progress-bar {
  height: 3px;
  background: linear-gradient(90deg, #298729, #4dc94d);
  border-radius: 5px;
}

.progress-blue {
  width: 100%;
  height: 3px;
  background-color: transparent;
  border: none;
  appearance: none;
  -webkit-appearance: none;
}
.progress-blue::-webkit-progress-bar {
  background-color: #4C5760;
  border-radius: 5px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  height: 3px;
}
.progress-blue::-webkit-progress-value {
  background: linear-gradient(90deg, #3279B8, #76abda);
  border-radius: 5px;
  height: 3px;
}
.progress-blue::-moz-progress-bar {
  height: 3px;
  background: linear-gradient(90deg, #3279B8, #76abda);
  border-radius: 5px;
}

.progress-pink {
  width: 100%;
  height: 3px;
  background-color: transparent;
  border: none;
  appearance: none;
  -webkit-appearance: none;
}
.progress-pink::-webkit-progress-bar {
  background-color: #4C5760;
  border-radius: 5px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  height: 3px;
}
.progress-pink::-webkit-progress-value {
  background: linear-gradient(90deg, #D13989, #e48cba);
  border-radius: 5px;
  height: 3px;
}
.progress-pink::-moz-progress-bar {
  height: 3px;
  background: linear-gradient(90deg, #D13989, #e48cba);
  border-radius: 5px;
}

.progress-violet {
  width: 100%;
  height: 3px;
  background-color: transparent;
  border: none;
  appearance: none;
  -webkit-appearance: none;
}
.progress-violet::-webkit-progress-bar {
  background-color: #4C5760;
  border-radius: 5px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  height: 3px;
}
.progress-violet::-webkit-progress-value {
  background: linear-gradient(90deg, #895BE0, #c7b1f0);
  border-radius: 5px;
  height: 3px;
}
.progress-violet::-moz-progress-bar {
  height: 3px;
  background: linear-gradient(90deg, #895BE0, #c7b1f0);
  border-radius: 5px;
}

.progress-green {
  width: 100%;
  height: 3px;
  background-color: transparent;
  border: none;
  appearance: none;
  -webkit-appearance: none;
}
.progress-green::-webkit-progress-bar {
  background-color: #4C5760;
  border-radius: 5px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  height: 3px;
}
.progress-green::-webkit-progress-value {
  background: linear-gradient(90deg, #298729, #4dc94d);
  border-radius: 5px;
  height: 3px;
}
.progress-green::-moz-progress-bar {
  height: 3px;
  background: linear-gradient(90deg, #298729, #4dc94d);
  border-radius: 5px;
}

.progressBox-img .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.progressBox-img .row .progress-blue,
.progressBox-img .row .progress-pink,
.progressBox-img .row .progress-violet,
.progressBox-img .row .progress-green {
  width: calc(100% - 60px);
}
.progressBox .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.progressBox .row .label {
  width: 100px;
  color: #BBBEC2;
  font-size: 12px;
  text-align: left;
}
.progressBox .row .progress-blue,
.progressBox .row .progress-pink,
.progressBox .row .progress-violet,
.progressBox .row .progress-green {
  width: calc(100% - 100px);
}

.hitPoint progress {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 24px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #E1E7EC;
  border-radius: 4px;
}
.hitPoint progress::-webkit-progress-value {
  background: #fff;
  border-radius: 4px 0 0 4px;
}
.hitPoint progress::-moz-progress-bar {
  background: #fff;
  border-radius: 4px 0 0 4px;
}
.hitPoint.hp-high progress::-webkit-progress-value {
  background: #1FCA00;
}
.hitPoint.hp-high progress::-moz-progress-bar {
  background: #1FCA00;
}
.hitPoint.hp-mid progress::-webkit-progress-value {
  background: #E17F02;
}
.hitPoint.hp-mid progress::-moz-progress-bar {
  background: #E17F02;
}
.hitPoint.hp-low progress::-webkit-progress-value {
  background: #D93838;
}
.hitPoint.hp-low progress::-moz-progress-bar {
  background: #D93838;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
#prologue {
  --x-0: 80%;
  --y-0: 0%;
  --c-0: settings.$v4bg4;
  --x-1: 34%;
  --y-1: 99%;
  --c-1: settings.$v4bg1;
  --c-2: settings.$v4bg2;
  --x-2: 23%;
  --y-2: 66%;
  --y-3: 0%;
  --c-3: settings.$v4bg3;
  --x-3: 0%;
  --c-4: settings.$v4bg5;
  --x-4: 0%;
  --y-4: 100%;
  background-color: #0a080a;
  background-image: radial-gradient(circle at var(--x-0) var(--y-0), var(--c-0) var(--s-start-0), transparent var(--s-end-0)), radial-gradient(circle at var(--x-1) var(--y-1), var(--c-1) var(--s-start-1), transparent var(--s-end-1)), radial-gradient(circle at var(--x-2) var(--y-2), var(--c-2) var(--s-start-2), transparent var(--s-end-2)), radial-gradient(circle at var(--x-3) var(--y-3), var(--c-3) var(--s-start-3), transparent var(--s-end-3)), radial-gradient(circle at var(--x-4) var(--y-4), var(--c-4) var(--s-start-4), transparent var(--s-end-4));
  animation: hero-gradient-animation 5s linear infinite alternate;
  background-blend-mode: normal, normal, normal, normal, normal;
  width: 100%;
  height: 100vh;
}

/*
07-utilities
-------------------------
マージン、パディング、表示／非表示、テキストカラー、フォントサイズなど、単一のプロパティ変更を提供する
ユーティリティクラスやヘルパークラスをまとめた層です。細かなレイアウト調整やスタイル上書きに利用します。
*/
/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
.bg-danger {
  background: #e98e8e !important;
}

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

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
.icon--xs {
  width: 14px;
  height: 14px;
  border-radius: 14px;
}
.icon--ss {
  width: 40px;
  height: 40px;
  border-radius: 14px;
}
.icon--sm {
  width: 44px;
  height: 44px;
  border-radius: 44px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
.txt-center {
  text-align: center;
}
.txt-start, .txt-left {
  text-align: left;
}
.txt-end, .txt-right {
  text-align: right;
}
.txt-bold--blue {
  color: #76abda !important;
  font-weight: bold;
}
.txt-link {
  color: #ffffff;
  padding-bottom: 2px;
  border-bottom: 1px solid #ffffff;
}
.txt-link-green {
  color: #298729;
  padding-bottom: 2px;
  border-bottom: 1px solid #298729;
}
.txt-link-green:hover {
  color: #74d574;
  padding-bottom: 2px;
  border-bottom: 1px solid #74d574;
}
.txt-link-green:visited {
  color: #4dc94d;
  padding-bottom: 2px;
  border-bottom: 1px solid #4dc94d;
}
.txt-shadow-bk {
  text-shadow: 0 0 5px #000000;
}
.txt-shadow-wh {
  text-shadow: 0 0 5px #FFFFFF;
}
.txt-collapse {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fc-deactive {
  color: #8F9395 !important;
}
.fc-danger {
  color: #e98e8e !important;
}
.fc-success {
  color: #74d574 !important;
}
.fc-warning {
  color: #c6c28d !important;
}
.fc-blue {
  color: #76abda !important;
}
.fc-red {
  color: #e98e8e !important;
}
.fc-green {
  color: #4dc94d !important;
}
.fc-yellow {
  color: #b5b06b !important;
}
.fc-violet {
  color: #c7b1f0 !important;
}
.fc-pink {
  color: #e48cba !important;
}
.fc-rainbow {
  animation: 0.8s rainbowTxt linear infinite;
}
.fc-sick {
  color: #b683ff !important;
}
.fc-white {
  color: #ffffff;
}
.fc-gold {
  color: #cab53e;
}
.fc-txt01 {
  color: #8F9395 !important;
}
.fc-txt02 {
  color: #A6ABAD !important;
}
.fc-txt03 {
  color: #BBBEC2 !important;
}
.fc-txt04 {
  color: #E1E7EC !important;
}
.fc-txt05 {
  color: #f9f9f9 !important;
}
.fc-txt-rainbow {
  animation: 0.8s rainbowTxt linear infinite;
}
.fs-xs {
  font-size: 8px !important;
}
.fs-sm {
  font-size: 14px !important;
}
.fs-md {
  font-size: 16px !important;
}
.fs-lg {
  font-size: 24px !important;
}
.fs-xl {
  font-size: 32px !important;
}
.fs-xxl {
  font-size: 64px !important;
}
.fw-normal {
  font-weight: normal;
}
.fw-bold {
  font-weight: bold;
}

.error {
  display: none;
  color: #e16363 !important;
  font-size: 14px;
  margin-top: 16px;
}
.error::before {
  content: "※";
}
.error.active {
  display: block;
}

.success {
  color: #4dc94d;
  font-size: 14px;
  margin-top: 16px;
}

.positive {
  color: #6BC770;
}

.negative {
  color: #FF9785;
}

.rank {
  font-size: 8px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 8px;
}
.rank.bronze {
  color: #ffffff;
  background: #a36b21;
}

.alert {
  padding: 16px;
  color: #e98e8e;
}

.prizeNumTotal {
  border-radius: 8px;
  padding: 10px;
  outline: none;
  background: #e6e6e6;
  font-size: 18px;
  font-weight: bold;
  width: 100px;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 4px;
}
.p-2 {
  padding: 8px;
}
.p-3 {
  padding: 16px;
}
.p-4 {
  padding: 32px;
}
.p-5 {
  padding: 64px;
}
.pt-1 {
  padding-top: 4px;
}
.pt-2 {
  padding-top: 8px;
}
.pt-3 {
  padding-top: 16px;
}
.pt-4 {
  padding-top: 32px;
}
.pt-5 {
  padding-top: 64px;
}
.pe-1 {
  padding-right: 4px;
}
.pe-2 {
  padding-right: 8px;
}
.pe-3 {
  padding-right: 16px;
}
.pe-4 {
  padding-right: 32px;
}
.pe-5 {
  padding-right: 64px;
}
.ps-1 {
  padding-left: 4px;
}
.ps-2 {
  padding-left: 8px;
}
.ps-3 {
  padding-left: 16px;
}
.ps-4 {
  padding-left: 32px;
}
.ps-5 {
  padding-left: 64px;
}
.pb-1 {
  padding-bottom: 4px;
}
.pb-2 {
  padding-bottom: 8px;
}
.pb-3 {
  padding-bottom: 16px;
}
.pb-4 {
  padding-bottom: 32px;
}
.pb-5 {
  padding-bottom: 64px;
}

.m-0 {
  margin: 0;
}
.m-1 {
  margin: 4px;
}
.m-2 {
  margin: 8px;
}
.m-3 {
  margin: 16px;
}
.m-4 {
  margin: 32px;
}
.m-5 {
  margin: 64px;
}
.mt-1 {
  margin-top: 4px;
}
.mt-2 {
  margin-top: 8px;
}
.mt-3 {
  margin-top: 16px;
}
.mt-4 {
  margin-top: 32px;
}
.mt-5 {
  margin-top: 64px;
}
.me-1 {
  margin-right: 4px;
}
.me-2 {
  margin-right: 8px;
}
.me-3 {
  margin-right: 16px;
}
.me-4 {
  margin-right: 32px;
}
.me-5 {
  margin-right: 64px;
}
.ms-1 {
  margin-left: 4px;
}
.ms-2 {
  margin-left: 8px;
}
.ms-3 {
  margin-left: 16px;
}
.ms-4 {
  margin-left: 32px;
}
.ms-5 {
  margin-left: 64px;
}
.mb-1 {
  margin-bottom: 4px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-3 {
  margin-bottom: 16px;
}
.mb-4 {
  margin-bottom: 32px;
}
.mb-5 {
  margin-bottom: 64px;
}
.mx-0 {
  margin-right: 0;
  margin-left: 0;
}
.mx-1 {
  margin-right: 4px;
  margin-left: 4px;
}
.mx-2 {
  margin-right: 8px;
  margin-left: 8px;
}
.mx-3 {
  margin-right: 16px;
  margin-left: 16px;
}
.mx-4 {
  margin-right: 32px;
  margin-left: 32px;
}
.mx-5 {
  margin-right: 64px;
  margin-left: 64px;
}
.my-0 {
  margin-top: 0;
  margin-left: 0;
}
.my-1 {
  margin-top: 4px;
  margin-bottom: 4px;
}
.my-2 {
  margin-top: 8px;
  margin-bottom: 8px;
}
.my-3 {
  margin-top: 16px;
  margin-bottom: 16px;
}
.my-4 {
  margin-top: 32px;
  margin-bottom: 32px;
}
.my-5 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.nowrap {
  display: inline-block;
  text-decoration: inherit;
  white-space: nowrap;
}

.d-flex {
  display: flex;
}
.d-block {
  display: block;
}
.d-inline {
  display: inline;
}
.d-none {
  display: none;
}

.direction-column {
  flex-direction: column;
}
.direction-row {
  flex-direction: row;
}

.align-center {
  align-items: center !important;
}
.align-start {
  align-items: start !important;
}
.align-end {
  align-items: end !important;
}

.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}

.visibility-hidden {
  visibility: hidden;
}
.visibility-visible {
  visibility: visible;
}
.visibility-inherit {
  visibility: inherit;
}

.glow {
  display: inline-block;
  animation: glowAnimation 2s infinite;
}
.glow:hover {
  filter: drop-shadow(0 0 50px rgba(0, 150, 255, 0.5));
  cursor: pointer !important;
}
.glow:hover img {
  cursor: pointer !important;
}

.flashes {
  margin-top: 16px;
}

.commonImgSize {
  width: 300px;
}

.block-sendNotice {
  padding-bottom: 16px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.currency {
  height: 18px;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
.w-0 {
  width: 0%;
}

.w-5 {
  width: 5%;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-60 {
  width: 60%;
}

.w-65 {
  width: 65%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-90 {
  width: 90%;
}

.w-95 {
  width: 95%;
}

.w-100 {
  width: 100%;
}

/*
08-projects
-----------------------
プロジェクト固有またはページ固有のスタイルを管理する層です。
ここには、特定の画面やコンテキストに依存するスタイル、オーバーライドやカスタマイズが含まれます。
*/
/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
#admin {
  overflow-x: hidden;
  overflow-y: auto;
  background: #242D36;
  color: #E1E7EC;
}
#admin::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
#admin::-webkit-scrollbar-track {
  background: #182028;
}
#admin::-webkit-scrollbar-thumb {
  background: #0E151B;
  border-radius: 4px;
}
#admin::-webkit-scrollbar-thumb:hover {
  background: #05090D;
}
#admin aside {
  position: fixed;
  top: 0;
  left: 0;
  padding: 24px 32px;
  background: #242D36;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 240px;
  z-index: 1;
  transition: transform 0.3s ease;
}
#admin aside.fold {
  transform: translateX(-210px);
  transition: transform 0.3s ease;
}
#admin aside.fold .js-btn-sidebarLeftToggle {
  transform: rotate(0deg);
}
#admin aside .sidebarButton {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
#admin aside .sidebarButton .js-btn-sidebarLeftToggle {
  color: #BBBEC2;
  padding: 2px;
  transform: rotate(-180deg);
}
#admin aside .sidebarButton .js-btn-sidebarLeftToggle:hover {
  color: #d6d8da;
}
#admin aside .sidebarButton .js-btn-sidebarLeftToggle.fold {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
#admin aside .adminAside {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#admin aside .adminAside .adminAside__top {
  margin-top: 22px;
}
#admin aside .adminAside .adminAside__top i {
  width: 20px;
}
#admin aside .adminAside .adminAside__top__border {
  color: #8F9395;
  border-bottom: 1px solid #8F9395;
  width: calc(100% - 48px);
  margin: 0 auto;
}
#admin aside .adminAside .adminAside__top__border p {
  font-size: 10px;
}
#admin aside .adminAside .adminAside__bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 24px;
  text-align: left;
}
#admin aside .adminAside .adminAside__bottom a {
  text-align: center;
  color: #8F9395;
}
#admin aside .adminAside .adminAside__bottom a:hover {
  cursor: pointer;
  color: #c3c6c7;
}
#admin aside .adminAside .btn-tabSelector {
  padding: 8px 16px;
  margin: 8px 0;
  color: #8F9395;
  text-align: left;
  transition: 0.3s;
}
#admin aside .adminAside .btn-tabSelector i {
  margin-right: 4px;
}
#admin aside .adminAside .btn-tabSelector.active {
  color: #b79bec;
  font-weight: bold;
  background: #182028;
  border-radius: 40px;
  border: 1px solid #b79bec;
}
#admin aside .adminAside .btn-tabSelector.active:hover {
  cursor: default;
  color: #d6c6f4;
  border: 1px solid #d6c6f4;
}
#admin aside .adminAside .btn-tabSelector:hover {
  cursor: pointer;
  color: #c3c6c7;
}
#admin #admin-header {
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
  width: 980px;
}
#admin #admin-main {
  padding: 0 20px;
  margin: 24px auto;
  padding-left: 240px;
  width: 100%;
  max-width: 1200px;
}

@media screen and (max-width: 768px) {
  #admin #admin-main {
    padding-left: 24px;
  }
}
.sortBox {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.sortBox p {
  margin-right: 24px;
}
.sortBox p i {
  margin-right: 8px;
}
.sortBox button {
  margin-right: 16px;
  position: relative;
  padding: 8px 20px;
}
.sortBox button span {
  position: absolute;
  display: block;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  font-size: 6px;
  padding: 4px;
  border-radius: 6px;
  background: #D93838;
  color: #ffffff;
}

.adminInput {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
}
.adminInput-1em {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 1em;
}
.adminInput-2em {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 2em;
}
.adminInput-3em {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 3em;
}
.adminInput-4em {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 4em;
}
.adminInput-5em {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 5em;
}
.adminInput-6em {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 6em;
}
.adminInput-7em {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 7em;
}
.adminInput-8em {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 8em;
}
.adminInput-9em {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 9em;
}
.adminInput-10em {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 10em;
}
.adminInput-11em {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 11em;
}
.adminInput-12em {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 12em;
}

.companyIdBox {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
}
.companyIdBox__title {
  display: flex;
  align-items: center;
}
.companyIdBox__title img {
  width: 30px;
  height: 30px;
  margin-right: 4px;
}
.companyIdBox__title__id {
  width: 3em;
  color: #8F9395;
}
.companyIdBox__title i:nth-child(1) {
  width: 30px;
  text-align: center;
  margin-right: 4px;
}
.companyIdBox:not(:last-child) {
  border-bottom: 1px solid #4C5760;
}

.companyIdSection {
  background: #242D36;
  border-radius: 20px;
  margin-bottom: 40px;
}

.admin__changeRandom .d-flex div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.admin__changeRandom label {
  display: block;
  margin-bottom: 8px;
}
.admin__changeRandom input {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  display: block;
  background: #2e3a45;
  color: #E1E7EC;
  font-weight: bold;
}
.admin__changeRandom input[type=submit] {
  padding: 14px 16px;
  height: fit-content;
  width: fit-content;
  border-radius: 8px;
  background: #E1E7EC;
  color: #2e3a45;
  font-weight: bold;
  margin-bottom: 0;
}
.admin__changeRandom input[type=submit]:hover {
  cursor: pointer;
}

.admin__sendNotice {
  display: flex;
  flex-direction: column;
}
.admin__sendNotice label {
  margin-bottom: 8px;
}
.admin__sendNotice input[type=text] {
  padding: 16px;
  border-radius: 8px;
  display: block;
  background: #2e3a45;
  color: #E1E7EC;
  margin-bottom: 16px;
}
.admin__sendNotice input[type=submit] {
  padding: 16px;
  border-radius: 8px;
  background: #E1E7EC;
  font-weight: bold;
}
.admin__sendNotice input[type=submit]:hover {
  cursor: pointer;
}
.admin__sendNotice textarea {
  background: #2e3a45;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  color: #E1E7EC;
}

.companyIdBox__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.adminRadioBox .companyIdBox__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.adminRadioBox .companyIdBox__content label.radioItem {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding-left: 28px;
  font-size: 14px;
  color: #BBBEC2;
}
.adminRadioBox .companyIdBox__content label.radioItem input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.adminRadioBox .companyIdBox__content label.radioItem .radioIndicator {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #BBBEC2;
  border-radius: 50%;
  background-color: transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.adminRadioBox .companyIdBox__content label.radioItem input[type=radio]:checked + .radioIndicator {
  border-color: #3279B8;
  background-color: #76abda;
}
.adminRadioBox .companyIdBox__content label.radioItem input[type=radio]:checked ~ .radioLabel {
  color: #76abda;
  font-weight: bold;
}
.adminRadioBox .companyIdBox__content label.radioItem input[type=radio]:focus + .radioIndicator {
  box-shadow: 0 0 0 4px rgba(50, 121, 184, 0.2);
}

.locationSelector {
  border-radius: 32px;
  font-size: 12px;
  padding: 6px 20px 6px 36px;
  font-weight: bold;
  text-align: center;
  background: #2e3a45;
  color: #E1E7EC;
  transition: 0.2s;
  position: relative;
}
.locationSelector::before {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 100;
  font-size: 16px;
}
.locationSelector:not(:last-child) {
  margin: 0 0 8px;
}
.locationSelector:hover {
  background: #425464;
  cursor: pointer;
}
.locationSelector.active {
  color: #05090D;
  background: #BBBEC2;
}
.locationSelector.active::before {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
}
.locationSelector.active:hover {
  background: #f1f1f2;
  cursor: pointer;
}

.editNoticeContainer__box {
  width: 100%;
  background: #384755;
  padding: 20px;
  border-radius: 16px;
  position: relative;
}
.editNoticeContainer__box__btnBox {
  position: absolute;
  right: 0px;
  top: 0px;
}
.editNoticeContainer__box__btnBox button {
  color: #BBBEC2;
  transition: 0.3s;
  padding: 16px;
  font-size: 18px;
}
.editNoticeContainer__box__btnBox button:hover {
  color: #f9f9f9;
}
.editNoticeContainer__box:not(:first-of-type) {
  margin-top: 20px;
}
.editNoticeContainer__box .heading {
  color: #f9f9f9;
  text-align: left;
}
.editNoticeContainer__box .message {
  color: #BBBEC2;
  text-align: left;
  font-size: 14px;
}
.editNoticeContainer__box .datetime {
  color: #8F9395;
  font-size: 10px;
  text-align: right;
}

.tableSortEmail {
  width: 892px;
  background: #2e3a45;
  border-radius: 32px;
  position: relative;
  margin-bottom: 20px;
}
.tableSortEmail input {
  width: 100%;
  padding: 20px 20px 20px 60px;
  background: #2e3a45;
  outline: none;
  border-radius: 32px;
  color: #f9f9f9;
  font-size: 18px;
}
.tableSortEmail i {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translate(-50%, -50%);
}

.adminTable {
  border-collapse: collapse;
  background-color: #2e3a45;
  font-family: "Roboto", sans-serif;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  width: 100%;
  overflow-x: scroll;
}
.adminTable thead {
  width: 940px;
  overflow-x: scroll;
}
.adminTable thead tr th {
  padding: 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #f9f9f9;
  border-bottom: 1px solid #182028;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.adminTable tbody {
  width: 940px;
  overflow-x: scroll;
}
.adminTable tbody tr {
  transition: background-color 0.2s ease;
}
.adminTable tbody tr:hover {
  background-color: #29343e;
}
.adminTable tbody tr td {
  padding: 16px;
  font-size: 14px;
  color: #E1E7EC;
  vertical-align: middle;
  border-bottom: 1px solid #182028;
  white-space: nowrap;
  min-width: fit-content;
}
.adminTable tbody tr td form {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: fit-content;
  margin: 14px;
}
.adminTable tbody tr td input {
  background: #f9f9f9;
  padding: 8px;
  border-radius: 4px 0 0 4px;
  width: 8em;
  background: #2e3a45;
  color: #E1E7EC;
  border: 1px solid #E1E7EC;
}
.adminTable tbody tr td input:focus {
  background: #4C5760;
  outline: 1px solid #3279B8;
  color: #f9f9f9;
  font-weight: bold;
}
.adminTable tfoot {
  background-color: #2e3a45;
}
.adminTable tfoot tr td {
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #f9f9f9;
  border-top: 1px solid #182028;
}

.kpiContainer canvas {
  height: 400px;
  width: 100%;
  margin-right: 40px;
}

.kpiTabGraphBox {
  display: none;
}
.kpiTabGraphBox.active {
  display: block;
}

.kpiTabBtnBox {
  margin-bottom: 40px;
}

.nokaiBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 24px;
}
.nokaiBox .nokaiFlag {
  margin: 10px;
  height: 72px;
  width: 72px;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #444;
  border: 2px solid #666;
  text-shadow: #000 0 0 10px;
}
.nokaiBox .nokaiFlag img {
  width: 90%;
  opacity: 0.2;
}
.nokaiBox .nokaiFlag i {
  margin-bottom: 0;
  text-shadow: #000 0 0 10px;
}
.nokaiBox .nokaiFlag.active {
  animation: 0.8s rainbow linear infinite;
}
.nokaiBox .nokaiFlag.active img {
  opacity: 1;
}

.tabBody {
  margin-bottom: 32px;
  display: none;
  padding: 24px;
  width: 100%;
}
.tabBody .tabSelector {
  width: 100%;
  color: #8F9395;
  display: flex;
  margin: 24px 0;
}
.tabBody .tabSelector .tab {
  width: 50%;
  color: #8F9395;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 18px;
  border-bottom: 2px solid #8F9395;
}
.tabBody .tabSelector .tab:not(:nth-child(1)), .tabBody .tabSelector .tab:not(:nth-child(2)) {
  margin-left: 2px;
  margin-right: 2px;
}
.tabBody .tabSelector .tab:hover {
  color: #E1E7EC;
  border-bottom: 2px solid #E1E7EC;
}
.tabBody .tabSelector .tab.active {
  color: #b79bec;
  border-bottom: 2px solid #b79bec;
}
.tabBody .tabSelector .tab.active:hover {
  cursor: default;
}
.tabBody .tabContent {
  display: none;
}
.tabBody .tabContent.active {
  display: flex;
  width: 100%;
}
.tabBody .tabContent.active .table-responsive {
  width: 100%;
}
.tabBody .tabContent.active .table-responsive .table {
  width: 100%;
  text-align: left;
  color: #E1E7EC;
}
.tabBody .box {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  min-width: 940px;
}
.tabBody .box form#timeControlForm {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.tabBody .box form#timeControlForm .time-picker {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: flex-start;
  margin-right: 20px;
}
.tabBody .box form#timeControlForm .time-picker:hover {
  cursor: pointer !important;
}
.tabBody .box form#timeControlForm .time-picker label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #8F9395;
}
.tabBody .box form#timeControlForm .time-picker input[type=time] {
  padding: 10px;
  border: 1px solid #BBBEC2;
  background: #E1E7EC;
  color: #242D36;
  border-radius: 4px;
  font-size: 16px;
  transition: 0.3s;
}
.tabBody .box form#timeControlForm .time-picker input[type=time]:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.tabBody .box form#timeControlForm .time-picker input[type=time]:hover {
  cursor: pointer !important;
  border-color: #007bff;
  outline: none;
  background: rgb(147, 209, 218);
}
.tabBody .box form#timeControlForm button {
  height: 40px;
}
.tabBody.active {
  display: block;
  width: 100%;
}

.table-responsive {
  width: 100%;
}
.table-responsive .table {
  width: 100%;
  text-align: left;
  color: #E1E7EC;
}
.table-responsive .table tr {
  border-bottom: 1px solid #8F9395;
}
.table-responsive .table tr td {
  border-bottom: 1px solid #4C5760;
}
.table-responsive .table .btn-secondary {
  font-size: 24px;
}

.boss_status {
  font-size: 12px;
  font-weight: bold;
  padding: 2px 12px;
  border-radius: 24px;
  margin-right: 4px;
  width: 80px;
  text-align: center;
}
.boss_status.pending {
  color: #b5b06b;
  border: 1px solid #b5b06b;
}
.boss_status.defeated {
  color: #e98e8e;
  border: 1px solid #e98e8e;
}
.boss_status.active {
  background: #3bc23b;
  color: #0E151B;
  border: 1px solid #3bc23b;
}

.shopFlag {
  font-size: 12px;
  color: #8F9395;
  border: 1px solid #8F9395;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: bold;
}
.shopFlag.active {
  background: #4dc94d;
  color: #0E151B;
  border: 1px solid #4dc94d;
}

.companyIdBox__title {
  font-size: 16px;
  font-weight: bold;
}
.companyIdBox__title label {
  font-size: 16px;
}
.companyIdBox__content input {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 200px;
}
.companyIdBox__content textarea {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 200px;
}
.companyIdBox__content select {
  background: #4C5760;
  color: #E1E7EC;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  width: 200px;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
#home {
  width: 100%;
  height: 100vh;
  background: url(/static/img/background/normalbg.webp);
  background-position: center center;
  background-clip: content-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #000000;
  z-index: 0;
}
#home main {
  position: relative;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#home main .storyImg {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home main .storyImg__buddy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 240px;
  -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.7));
}
#home main .storyImg__items {
  position: absolute;
  bottom: calc(50% - 88px);
  right: 50%;
  transform: translate(-50%, -50%);
  height: 50px;
  -webkit-filter: drop-shadow(0 0 4px rgb(0, 0, 0));
  filter: drop-shadow(0 0 4px rgb(0, 0, 0));
}
#home main .storyTxt {
  width: 100%;
  border: 1px solid #f9f9f9;
  color: #f9f9f9;
  text-shadow: 0 0 2px black;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 16px;
  height: 120px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}
#home main .storyTxt__header {
  display: flex;
  margin-bottom: 16px;
}
#home main .storyTxt__header img {
  width: 22px;
  height: 22px;
}
#home main .storyTxt__header p {
  font-weight: bold;
  margin-left: 4px;
}
#home main .storyTxt__header__body {
  font-weight: bold;
}
#home::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

@supports (-webkit-touch-callout: none) {
  #home {
    height: -webkit-fill-available;
  }
}
.userInfo button {
  height: 0;
}
.userInfo p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.userInfo .tableSection {
  display: block;
  text-align: left;
  transition: 0.3s;
  font-size: 14px;
}
.userInfo .tableSection:nth-of-type(1) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 8em;
}
.userInfo .tableSection:nth-of-type(1)::after {
  display: flex;
  content: ":";
  white-space: nowrap;
}
.userInfo .tableSection:nth-of-type(2) {
  width: 8em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.userInfo .tableSection:nth-of-type(2):active, .userInfo .tableSection:nth-of-type(2):hover {
  overflow: visible;
}

#info #infoWrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#info #infoWrapper .info-mapWrapper {
  display: flex;
  flex-direction: row;
}
#info #infoWrapper .info-mapWrapper h3 {
  color: #A6ABAD;
  text-align: center;
  padding: 12px;
}
#info #infoWrapper .info-mapWrapper button {
  transition: 0.3;
}
#info #infoWrapper .info-mapWrapper button img {
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  transition: 0.3;
}
#info #infoWrapper .info-mapWrapper button img:hover {
  transition: 0.3;
  opacity: 0.7;
  cursor: pointer;
}
#info #infoWrapper .info-mapWrapper button:hover {
  transition: 0.3;
  opacity: 0.7;
  cursor: pointer;
}
#info #infoWrapper .info-mapWrapper .mapBox {
  padding: 12px;
}
#info #infoWrapper h2 {
  color: #E1E7EC;
}
#info .modal {
  display: block;
}

@media screen and (max-width: 992px) {
  #info #infoWrapper .info-mapWrapper {
    display: flex;
    flex-direction: column;
  }
}
.harassmenterBox img {
  width: 160px;
}

.battleFeed .row {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #666;
}

.harassmenterCard img {
  height: 170px;
}

.storyFeed {
  margin: 20px 0;
  max-height: 420px;
  overflow-y: scroll;
}
.storyFeed .row {
  display: flex;
  align-items: center;
  padding: 16px;
  text-align: left;
  background: #242D36;
  border-radius: 16px;
  margin-bottom: 8px;
  width: 100%;
  transition: 0.3s;
  position: relative;
  color: #BBBEC2;
}
.storyFeed .row:hover {
  cursor: pointer;
  background: #2e3a45;
}
.storyFeed .row:disabled:hover {
  cursor: default;
  background: #242D36;
}
.storyFeed .row .storyFeed__content {
  width: calc(100% - 58px);
  margin-left: 14px;
}
.storyFeed .row .storyFeed__imgBox {
  width: 44px;
  height: 44px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
}
.storyFeed .row img {
  display: block;
  object-fit: cover;
  width: 48px;
  height: 48px;
  border: 0;
  background-color: #000;
  -webkit-mask-image: var(--mask-image);
  mask-image: var(--mask-image);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.storyFeed .row.active {
  color: #9be19b;
}
.storyFeed .row.active img {
  -webkit-mask-image: none !important;
  mask-image: none !important;
  background-color: transparent !important;
  background-image: var(--mask-image) !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  box-shadow: none !important;
  background-clip: border-box;
  background-size: 105% 105%;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
  overflow: hidden;
}
.storyFeed .row.destroyed {
  color: #e98e8e;
}
.storyFeed .row.destroyed::before {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "\f654";
  font-size: 18px;
  font-family: "FontAwesome";
  color: #e98e8e;
}

.userBox .notificationIcon {
  margin-right: 8px;
  color: #BBBEC2;
}
.userBox .notificationIcon i {
  font-size: 26px !important;
}

.battleHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.battleHeader .battleHeader__center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.battleHeader .battleHeader__center img {
  margin-right: 8px;
}
.battleHeader button {
  color: #BBBEC2;
}

.rankingTableContainer {
  max-height: 300px;
  overflow: scroll;
  border-radius: 8px;
}
.rankingTableContainer::-webkit-scrollbar {
  display: none;
}
.rankingTableContainer table tbody tr td {
  white-space: nowrap;
}
.rankingTableContainer table tbody tr td.rank {
  border-radius: 0 !important;
}
.rankingTableContainer table tbody tr td:nth-child(1), .rankingTableContainer table tbody tr td:nth-child(4) {
  max-width: 44px;
}
.rankingTableContainer table tbody tr td:nth-child(3) {
  max-width: 55px;
}

@media screen and (max-width: 768px) {
  .rankingTableContainer {
    max-height: 300px;
    overflow: scroll;
    white-space: nowrap;
  }
  .rankingTableContainer::-webkit-scrollbar {
    display: none;
  }
}
.changeForm {
  margin: 0 auto;
}
.changeForm .balanceBox {
  width: 80%;
  margin: 0 auto 80px;
  opacity: 0.6;
}
.changeForm label {
  display: block;
  margin-bottom: 8px;
}
.changeForm input {
  margin-bottom: 16px;
}
.changeForm input[type=submit] {
  background: #f9f9f9;
  color: #0E151B;
  border-radius: 50px;
}
.changeForm button {
  background: #f9f9f9;
  color: #0E151B;
  border-radius: 50px;
  padding: 16px 24px;
  width: 80%;
  border-radius: 30px;
  font-weight: bold;
}

.changeForm--Nickname label {
  display: block;
  margin-bottom: 8px;
}
.changeForm--Nickname input {
  margin-bottom: 16px;
}

.modal__messageBox input {
  width: 80%;
  font-weight: bold;
}
.modal__messageBox input[type=text] {
  padding: 16px 24px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #E1E7EC;
  font-size: 16px;
}
.modal__messageBox input[type=number] {
  padding: 16px 8px;
  background: none;
  color: #76abda;
  border-bottom: 2px solid #8F9395;
  font-size: 32px;
  text-align: right;
  -webkit-appearance: none !important;
  -moz-appearance: textfield !important;
}
.modal__messageBox input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.modal__messageBox input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.modal__messageBox input[type=number]:focus {
  outline: none;
  border-bottom: 3px solid #76abda;
}
.modal__messageBox input[type=submit] {
  background: #f9f9f9;
  color: #0E151B;
  border-radius: 50px;
  padding: 8px 16px;
}
.modal__messageBox input[type=file] {
  margin-bottom: 16px;
}

/*--
@media screen and (max-width:768px) {
    .modal__messageBox {
        height: calc(100% - 140px);
    }
}--*/
.userBox {
  display: flex;
  align-items: center;
}
.userBox i {
  font-size: 12px !important;
  margin-bottom: 0 !important;
}
.userBox .ranking {
  font-size: 12px;
  font-weight: bold;
  padding: 2px 12px;
  border-radius: 8px;
  color: #e6e6e6;
  border: 1px solid #ffffff;
  margin-left: 8px;
  text-shadow: 0 0 3px black;
}

#loading {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
}
#loading .loadingContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading svg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading svg rect:not(:first-child) {
  filter: drop-shadow(0 0 5px #ffffff);
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
}

.homeUserIcon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  object-position: center;
  margin-right: 8px;
}

#qr-reader {
  border-radius: 8px;
  overflow: hidden;
}

#qr-reader {
  position: relative;
  width: 256px !important;
  height: 256px !important;
  padding-bottom: 75%;
  margin: 0 auto;
}
#qr-reader #qr-shaded-region {
  border-radius: 16px;
  overflow: hidden;
  width: 256px !important;
  height: 256px !important;
  border: none !important;
}
#qr-reader video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  overflow: hidden;
  width: 256px !important;
  height: 256px !important;
  object-fit: cover;
}

#rankingTable {
  position: relative;
}
#rankingTable tbody tr {
  transition: 0.3s;
}
#rankingTable tbody tr:hover {
  cursor: pointer !important;
}
#rankingTable tbody tr td:hover {
  cursor: pointer !important;
}
#rankingTable tbody tr:nth-of-type(odd):hover {
  cursor: pointer;
}
#rankingTable tbody tr.active {
  background: #3279B8 !important;
  font-weight: bold;
}
#rankingTable tbody tr.active:hover {
  background: #4e92cf !important;
}

.rewardBox img {
  animation: evolveGlow 1s infinite, getMochi 0.4s;
  width: 200px;
  z-index: 2;
}

.rewardThree {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rewardThree img {
  animation: evolveGlow 1s infinite, getMochi 0.4s;
  width: calc(33.3333333333% - 4px);
  z-index: 2;
  margin-bottom: 0;
}

.buddyArea {
  position: relative;
}
.buddyArea .current_item {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 96px;
}

.message-gift {
  position: fixed;
  bottom: 200px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  width: 100%;
  margin-top: 16px;
}
.message-gift p {
  width: 100%;
  text-align: center;
  font-weight: bold;
  animation: gaming 2s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.message-gift p i {
  margin-right: 4px;
}
.message-gift p:nth-child(2) {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .message-gift {
    font-size: 12px;
    bottom: 100px;
  }
}
.chest {
  width: 200px;
  margin-bottom: 24px;
  animation: mochimochiLoading 0.8s infinite;
}

.chest--open {
  width: 200px;
  margin-bottom: 24px;
  animation: getMochi 0.4s, evolveGlow 1s infinite;
}

.status--heart {
  display: flex;
  align-items: center;
  color: #BBBEC2;
}
.status--heart i {
  color: #BBBEC2;
  margin-left: 4px;
}

.evolvedMonster {
  animation: evolveGlow 1s infinite, getMochi 0.4s;
  width: 200px;
  z-index: 2;
}
.evolvedMonster.sick {
  filter: hue-rotate(90deg);
}
.evolvedMonster.dead {
  animation: ghostFadeInOut 4s infinite;
}

.nickName {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  color: #d9d9d9;
  height: fit-content;
}
.nickName .nickName--name {
  display: block;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nickName:hover {
  color: #ffffff;
}

.evolveMovie {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 10;
  background: #FF9785;
}
.evolveMovie .evolveMovie__contents {
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.qr-reader-loading {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.readMark {
  display: none;
  text-align: right;
  margin-top: 20px;
  font-size: 10px;
}
.readMark.active {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: block;
}

.fugemonArea {
  width: 100%;
  height: 100%;
}

.loadingBoss {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: url(/static/animation/background-battle.gif);
  background-position: center center;
  background-clip: content-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #000000;
  z-index: 10000;
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.loadingBoss.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.loadingBoss__container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  min-width: 300px;
}
.loadingBoss__container img {
  width: 100%;
  -webkit-filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.5));
  animation: zoomin 0.3s ease forwards;
}

.zoomin {
  animation: zoomin 0.3s ease forwards;
}

.damage {
  display: inline-block;
  /* 0.3秒の点滅アニメーションの後、0.5秒のシェイクアニメーションを実行 */
  animation: flash 0.3s ease-in-out, shake 0.5s ease-in-out 0.3s;
}

@keyframes flash {
  0% {
    opacity: 1;
    filter: brightness(1);
  }
  10% {
    opacity: 0.3;
    filter: brightness(2);
  }
  20% {
    opacity: 1;
    filter: brightness(1.5);
  }
  30% {
    opacity: 0.3;
    filter: brightness(2);
  }
  40% {
    opacity: 1;
    filter: brightness(1.5);
  }
  50% {
    opacity: 0.3;
    filter: brightness(2);
  }
  60% {
    opacity: 1;
    filter: brightness(1.5);
  }
  70% {
    opacity: 0.3;
    filter: brightness(2);
  }
  80% {
    opacity: 1;
    filter: brightness(1.5);
  }
  90% {
    opacity: 0.3;
    filter: brightness(2);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
  }
}
@keyframes shake {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  10% {
    transform: translate(-10px, 10px) rotate(-10deg);
  }
  20% {
    transform: translate(10px, -10px) rotate(10deg);
  }
  30% {
    transform: translate(-10px, 10px) rotate(-10deg);
  }
  40% {
    transform: translate(10px, -10px) rotate(10deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(-10deg);
  }
  60% {
    transform: translate(10px, -10px) rotate(10deg);
  }
  70% {
    transform: translate(-10px, 10px) rotate(-10deg);
  }
  80% {
    transform: translate(10px, -10px) rotate(10deg);
  }
  90% {
    transform: translate(-10px, 10px) rotate(-10deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.resultBox-top {
  display: flex;
  justify-content: center;
  align-items: center;
}
.resultBox-top img {
  width: 44px;
}

.battleFeed tr {
  display: flex;
  width: 100%;
  padding: 12px 0;
  border-top: 1px solid #8F9395;
}
.battleFeed tr td {
  border-top: none !important;
}
.battleFeed tr td .damage-strong {
  font-weight: bold;
  color: #f9f9f9;
}
.battleFeed tr td .damage-strong::before {
  content: "ばつぐん";
  color: #74d574;
  border: 1px solid #74d574;
  font-size: 10px;
  padding: 4px;
  border-radius: 4px;
  margin-right: 4px;
}
.battleFeed tr td .damage-normal {
  font-weight: bold;
  color: #f9f9f9;
}
.battleFeed tr td .damage-normal::before {
  content: "まあまあ";
  color: #9ec4e5;
  border: 1px solid #9ec4e5;
  font-size: 10px;
  padding: 4px;
  border-radius: 4px;
  margin-right: 4px;
}
.battleFeed tr td .damage-weak {
  font-weight: bold;
  color: #f9f9f9;
}
.battleFeed tr td .damage-weak::before {
  content: "いまいち";
  color: #c7b1f0;
  border: 1px solid #c7b1f0;
  font-size: 10px;
  padding: 4px;
  border-radius: 4px;
  margin-right: 4px;
}
.battleFeed tr td:nth-child(1) {
  width: 48px !important;
  padding: 0;
}
.battleFeed tr td:nth-child(1) img {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 20px;
  margin-right: 8px;
  background: #4C5760;
  padding: 4px;
}
.battleFeed tr td:nth-child(2) {
  padding: 0;
  width: calc(100% - 48px) !important;
  max-width: calc(100% - 48px) !important;
}
.battleFeed tr td:nth-child(2) img {
  width: 22px;
  height: 22px;
}
.battleFeed tr td:nth-child(2) i {
  margin: 0 4px 0 0;
}
.battleFeed tr td:nth-child(2) p {
  line-height: 1.6em;
}

.battlFeed--bestUser {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.battlFeed--bestUser img {
  width: 40px;
  height: 40px;
  border-radius: 20px;
}

.honorBox {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 16px;
}
.honorBox__user {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #242D36;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 8px;
  width: 100%;
}
.honorBox__user__txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: 4px;
}
.honorBox__user__txt i {
  margin-bottom: 0 !important;
}
.honorBox__user img {
  height: 44px !important;
  width: 44px !important;
  border-radius: 22px;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
#signIn,
#signUp,
#resetPassword,
#fogotPassword,
#success-sendmail {
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-clip: content-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}
#signIn::before,
#signUp::before,
#resetPassword::before,
#fogotPassword::before,
#success-sendmail::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
#signIn header,
#signUp header,
#resetPassword header,
#fogotPassword header,
#success-sendmail header {
  width: calc(100% - 28px);
  max-width: 430px;
  margin: 0 auto;
  padding: 40px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
#signIn main p,
#signUp main p,
#resetPassword main p,
#fogotPassword main p,
#success-sendmail main p {
  color: #8F9395;
  text-align: center;
}
#signIn footer,
#signUp footer,
#resetPassword footer,
#fogotPassword footer,
#success-sendmail footer {
  text-align: center;
}
#signIn footer a,
#signUp footer a,
#resetPassword footer a,
#fogotPassword footer a,
#success-sendmail footer a {
  font-size: 0.8em;
  color: #8F9395;
  padding-bottom: 4px;
  border-bottom: 1px solid #8F9395;
}
#signIn footer a:hover,
#signUp footer a:hover,
#resetPassword footer a:hover,
#fogotPassword footer a:hover,
#success-sendmail footer a:hover {
  color: #BBBEC2;
  border-bottom: 1px solid #BBBEC2;
}

#fogotPassword,
#resetPassword {
  background: #182028;
}

#fogotPassword .loginBox .inputSection input {
  border-radius: 20px 20px 0 0 !important;
}

#resetPassword .loginBox .inputSection input#pass--reset {
  border-radius: 20px 20px 0 0 !important;
}

#signUp {
  width: 100%;
  height: 100vh;
  background: url(/static/animation/bg-05.gif);
  background-position: center center;
  background-clip: content-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}
#signUp::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#signUp header {
  width: calc(100% - 28px);
  max-width: 430px;
  margin: 0 auto;
  padding: 40px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
#signUp main p {
  color: #8F9395;
  text-align: center;
}
#signUp footer {
  padding: 40px 0;
  text-align: center;
}
#signUp footer a {
  font-size: 0.8em;
  color: #8F9395;
  padding-bottom: 4px;
  border-bottom: 1px solid #8F9395;
}
#signUp footer a:hover {
  color: #BBBEC2;
  border-bottom: 1px solid #BBBEC2;
}

#particles-js {
  background: linear-gradient(to bottom, #090b02, #282e05);
  z-index: 0;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
@font-face {
  font-family: "Kaushan Script";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/kaushanscript/v18/vm8vdRfvXFLG3OLnsO15WYS5DF7_.ttf") format("truetype");
}
@font-face {
  font-family: "Lobster";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lobster/v31/neILzCirqoswsqX9_oU.ttf") format("truetype");
}
#intro {
  overflow-x: hidden;
  overflow-y: scroll;
  color: #f9f9f9;
  font-family: "Noto Sans JP", system-ui, sans-serif !important;
  letter-spacing: 0;
  line-height: 2;
}
#intro p {
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif !important;
}
#intro h1,
#intro h2,
#intro h3,
#intro h4,
#intro h5,
#intro h6 {
  font-family: "Noto Sans JP", system-ui, sans-serif !important;
}
#intro .heading2 {
  font-family: "Kaushan Script", cursive !important;
}
#intro .introSection {
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  min-height: 100vh;
  height: fit-content;
}
#intro .introSection.cardBoxRootSection {
  min-height: 140vh;
  height: 140vh;
}
#intro .introSection:nth-child(odd) {
  background: #161617;
}
#intro .introSection .animeSection {
  text-align: center;
  max-width: 980px;
}
#intro .introSection .animeSection h2 {
  margin-bottom: 30px;
}
#intro .introSection .animeSection p {
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
}
#intro .contentsBox {
  width: 100%;
}
.introSection #intro .contentsBox {
  max-width: none;
  margin: 0;
  padding: 0;
}
#intro .contentsBox:not(.introSection *) {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
#intro .d-block {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#intro .desc {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}
#intro .desc_body {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  background: #05090D;
  border-radius: 15px;
  text-align: center;
}
#intro .desc_body h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #f9f9f9;
}
#intro .desc_body p {
  line-height: 2;
  color: #E1E7EC;
}
#intro::-webkit-scrollbar {
  display: none;
}
#intro .contentsFlex {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  color: #FFF;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
#intro .contentsFlex--reverse {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  color: #FFF;
  justify-content: center;
  align-items: center;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  flex-direction: row-reverse;
}
#intro .contentsFlex--reverse .contentsImg {
  width: 40%;
  padding: 20px;
}
#intro .contentsFlex--reverse .contentsImg img {
  width: 100%;
}
#intro .contentsFlex--reverse .contentsTxt {
  max-width: 60%;
  width: fit-content;
}
#intro .contentsFlex--reverse .contentsTxt h2,
#intro .contentsFlex--reverse .contentsTxt p {
  max-width: 100%;
  width: fit-content;
}
#intro .contentsFlex .contentsImg {
  width: 40%;
  padding: 20px;
}
#intro .contentsFlex .contentsImg img {
  width: 100%;
}
#intro .contentsFlex .contentsTxt {
  max-width: 60%;
  width: fit-content;
}
#intro .contentsFlex .contentsTxt h2,
#intro .contentsFlex .contentsTxt p {
  max-width: 100%;
  width: fit-content;
}
#intro .cardBox-3 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  flex-wrap: nowrap;
  padding: 0 20px;
  min-height: fit-content;
  height: fit-content;
}
#intro .card {
  background-color: #2a2a2a;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
  text-align: center;
  padding: 0;
  position: relative;
  width: 400px;
  aspect-ratio: 1;
  transition: 0.6s;
}
#intro .card .card__txtBox {
  position: absolute;
  transform: translate(0, -40%);
  top: 50%;
  width: 100%;
  padding: 8px 22px 22px;
}
#intro .card .card__txtBox h3 {
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.3s ease;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}
#intro .card .card__txtBox p {
  font-size: 1rem;
  line-height: 1.5;
  color: white;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  filter: blur(2px);
  pointer-events: none;
  transition: none;
}
#intro .card:hover {
  cursor: pointer;
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
  cursor: pointer;
}
#intro .card:hover img {
  transform: scale(1.2);
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
#intro .card:hover .card__txtBox p {
  animation: fadeInUp 0.6s ease-out forwards;
  pointer-events: auto;
}
#intro .card:not(:hover) .card__txtBox p {
  animation: fadeOutDown 0.5s ease-out forwards;
}
#intro .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  transform: scale(1.1);
}
#intro .heroSection {
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-clip: content-box;
  background-size: cover;
  background-repeat: no-repeat;
}
#intro .heroSection::after {
  display: block;
  position: absolute;
  bottom: -100px;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, rgba(5, 10, 13, 0) 0%, rgb(5, 10, 13) 100%);
}
#intro .heroSection .heroVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#intro .heroSection .contentsBox {
  position: absolute;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}
#intro .heroSection .contentsBox img {
  max-width: 50%;
  filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.5));
}
#intro .heroSection .bottomBox {
  position: absolute;
  z-index: 3;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
}
#intro .heroSection .bottomBox .scroll-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  animation: scroll-btn 1s ease-in-out alternate infinite;
}
#intro .heroSection .bottomBox .scroll-btn svg {
  fill: #F8F7F2;
  height: 50px;
  width: 32px;
}
#intro .heroSection .bottomBox .scroll-btn svg .animated {
  animation: scroll-down 2s infinite linear;
}
#intro .heroSection .bottomBox .scroll-btn svg .ball {
  animation: ball-move 1s infinite ease-in-out alternate;
}
#intro .heroSection .bottomBox button {
  font-size: 20px;
}
#intro .introSection {
  position: relative;
  min-height: 120vh;
  height: fit-content;
  max-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 3s ease;
  padding: 24px;
  width: 100%;
  /* フェードのアニメーション */
}
#intro .introSection.visible {
  opacity: 1 !important;
}
#intro .introSection p {
  font-size: 24px;
  color: #8F9395;
  line-height: 1.25;
  font-weight: 600;
}
#intro .introSection .heading2 {
  font-family: "Kaushan Script", cursive !important;
  font-size: 100px;
  margin-bottom: 38px;
  line-height: 1.2em;
}
#intro .introSection .glow-txt {
  font-family: "Kaushan Script", cursive !important;
  text-shadow: 2px 2px 20px #cf4dff, -2px 2px 20px #3bf081, 2px -2px 20px #fb47bf, -2px -2px 20px #d62aa9;
}
#intro .introSection strong {
  color: #F8F7F2;
}
#intro .introSection .animeSection {
  text-align: center;
}
#intro .introSection .animeSection img {
  width: 100%;
}
#intro .introSection .contentsBox {
  position: absolute;
  text-align: center;
  width: fit-content;
}
#intro .introSection .contentsBox p {
  color: #A6ABAD;
}
#intro .btn-cv {
  padding: 24px 56px;
  font-size: 32px;
  border-radius: 70px;
  color: #ffffff;
  white-space: nowrap;
  font-weight: 900;
  box-shadow: inset 0 0 60px #000000, inset 20px 0 80px #f0f, inset -20px 0 80px #0ff, inset 20px 0 300px #f0f, inset -20px 0 300px #0ff, 0 0 100px rgba(255, 255, 255, 0.5), 0px 0 10px #f0f, 0px 0 10px #0ff;
  transition: box-shadow 1s ease-in-out;
}
#intro .btn-cv:hover {
  box-shadow: inset 0 0 60px whitesmoke, inset 20px 0 80px #f0f, inset -20px 0 80px #0ff, inset 20px 0 300px #f0f, inset -20px 0 300px #0ff, 0 0 50px #fff, -10px 0 80px #f0f, 10px 0 80px #0ff;
}
#intro .btn-float {
  position: fixed;
  bottom: 36px;
  right: 36px;
  background: #E1E7EC;
  color: #2e3a45;
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 900;
  z-index: 2;
  transition: 0.3s;
  animation: twitch 4s infinite;
}
#intro .btn-float:hover {
  background: #f9f9f9;
}
#intro .btn-fadeAnime {
  position: fixed;
  display: none;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  background: #f9f9f9;
  padding: 20px 40px;
  border-radius: 50px;
  font-weight: bold;
}
#intro .btn-fadeAnime.active {
  display: block;
}
#intro .loading-text {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
}

.desc {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  gap: 20px;
}
.desc_body {
  width: 326px;
  padding: 48px;
  background: #182028;
  height: 100%;
  border-radius: 28px;
  width: 400px;
}
.desc_body h3 {
  font-size: 28px;
}
.desc_body p {
  font-size: 18px !important;
  line-height: 2em;
}

@media screen and (min-width: 769px) {
  .heading2 {
    font-size: 60px;
  }
  .desc {
    flex-direction: row;
  }
  .desc_body {
    flex: 1;
    min-width: 300px;
    max-width: none;
  }
}
@media screen and (min-width: 1200px) {
  .contentsBox:not(.introSection *) {
    max-width: 1200px;
    margin: 0 auto;
  }
  .d-block {
    padding: 0 40px;
  }
  .glow-txt {
    font-size: 120px;
  }
  .desc {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    gap: 20px;
  }
  .desc_body {
    width: 326px;
    padding: 48px;
    background: #182028;
    height: 100%;
    border-radius: 28px;
    width: 400px;
  }
  .desc_body h3 {
    font-size: 28px;
  }
  .desc_body p {
    font-size: 18px !important;
    line-height: 2em;
  }
  .cardBox-3 {
    gap: 30px;
  }
  .card {
    max-width: 400px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 769px) {
  .contentsBox:not(.introSection *) {
    padding: 0 20px;
  }
  .glow-txt {
    font-size: 80px;
  }
  .d-block {
    padding: 0 30px;
  }
  .cardBox-3 {
    gap: 15px;
  }
  .card {
    width: calc(33.333% - 10px);
    max-width: 280px;
  }
  .card .card__txtBox h3 {
    font-size: 1.3rem;
  }
  .card .card__txtBox p {
    font-size: 0.9rem;
  }
  .contentsFlex {
    padding: 0 20px;
  }
  .contentsFlex--reverse {
    flex-direction: column !important;
  }
  .contentsFlex--reverse .contentsTxt {
    max-width: 100%;
  }
  .contentsFlex--reverse .contentsTxt h2 {
    font-size: 2rem;
    width: 100%;
  }
  .contentsFlex--reverse .contentsTxt p {
    font-size: 16px;
  }
  .contentsFlex .contentsImg {
    width: 45%;
  }
  .contentsFlex .contentsTxt {
    max-width: 100%;
  }
  .contentsFlex .contentsTxt h2 {
    font-size: 2rem;
    width: 100%;
  }
  .contentsFlex .contentsTxt p {
    font-size: 16px;
  }
  .desc {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    height: auto;
  }
  .desc_body {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 25px 20px;
    text-align: center;
    min-width: auto;
  }
  .desc_body h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  .desc_body p {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 768px) {
  #intro {
    font-size: 14px;
  }
  #intro p {
    line-height: 1.8em;
  }
  .glow-txt {
    font-size: 60px;
  }
  .desc {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .desc_body {
    width: calc(100% - 36px);
  }
  .heroSection .contentsBox img {
    width: 80%;
    max-width: 300px;
  }
  .introSection {
    padding: 40px 20px;
  }
  .introSection .animeSection {
    text-align: center;
  }
  .introSection .animeSection h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .introSection .animeSection p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .desc {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    height: auto;
  }
  .desc_body {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 25px 20px;
    text-align: center;
    min-width: auto;
  }
  .desc_body h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  .desc_body p {
    font-size: 15px;
    line-height: 1.7;
  }
  .contentsFlex {
    flex-direction: column !important;
    align-items: center;
    padding: 0 20px;
    gap: 30px;
  }
  .contentsFlex--reverse {
    flex-direction: column-reverse;
  }
  .contentsFlex--reverse h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    width: 100% !important;
  }
  .contentsFlex .contentsImg {
    width: 80%;
    max-width: 300px;
    padding: 10px;
  }
  .contentsFlex .contentsImg img {
    width: 100%;
  }
  .contentsFlex .contentsTxt {
    max-width: 100%;
    text-align: center;
  }
  .contentsFlex .contentsTxt h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    width: 100% !important;
  }
  .contentsFlex .contentsTxt p {
    font-size: 16px;
    line-height: 1.8;
  }
  .contentsBox:not(.introSection *) {
    padding: 0 20px;
  }
  .cardBox-3 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .card {
    width: 200px;
    max-width: 200px;
    aspect-ratio: 1;
  }
  .card img {
    height: 100%;
  }
  .card .card__txtBox h3 {
    font-size: 1.2rem;
  }
  .card .card__txtBox p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .headingImg {
    width: 95%;
    max-width: 400px;
  }
  .introSection {
    height: fit-content;
    max-height: fit-content;
    padding-top: 48px;
  }
  .introSection .aninmeSection {
    height: fit-content;
    max-height: fit-content;
  }
  .introSection .contentsBox {
    height: fit-content;
    max-height: fit-content;
  }
}
@media screen and (max-width: 480px) {
  .contentsFlex--reverse {
    flex-direction: column !important;
  }
  .contentsFlex--reverse .contentsTxt {
    width: 100%;
    max-width: 100% !important;
  }
  .contentsFlex--reverse .contentsTxt h2 {
    width: 100% !important;
  }
  .contentsFlex .contentsTxt {
    width: 100%;
    max-width: 100% !important;
  }
  #intro {
    font-size: 13px;
  }
  .heading2 {
    width: 100%;
    font-size: 40px;
    text-align: center;
  }
  .heading2 .glow-txt {
    text-align: center;
  }
  .desc {
    margin-top: 20px;
    gap: 15px;
    flex-direction: column;
  }
  .desc_body {
    width: 100%;
    max-width: 280px;
  }
  .introSection {
    padding: 30px 15px;
  }
  .introSection .animeSection h2 {
    font-size: 1.5rem;
  }
  .introSection .animeSection p {
    font-size: 14px;
  }
  .contentsFlex {
    padding: 0 15px;
  }
  .contentsFlex .contentsTxt h2 {
    font-size: 1.5rem;
  }
  .contentsFlex .contentsTxt p {
    font-size: 14px;
  }
  .contentsBox:not(.introSection *) {
    padding: 0 15px;
  }
  .card {
    max-width: 200px;
    aspect-ratio: 1;
  }
  .card img {
    height: 100%;
  }
  .card .card__txtBox h3 {
    font-size: 1.1rem;
  }
  .card .card__txtBox p {
    font-size: 0.85rem;
  }
  .desc_body {
    padding: 15px;
  }
  .desc_body h3 {
    font-size: 1.2rem;
  }
  .desc_body p {
    font-size: 14px;
  }
  .introSection {
    height: fit-content;
    max-height: fit-content;
    padding-top: 48px;
  }
  .introSection .aninmeSection {
    height: fit-content;
    max-height: fit-content;
  }
  .introSection .contentsBox {
    height: fit-content;
    max-height: fit-content;
  }
}
.headingImg {
  max-width: 1000px;
  width: 90%;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
#wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
}

#video {
  margin: 0px;
  background-color: lightgray;
  text-align: center;
  border-radius: 8px;
}

#canvas {
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.bossContainer {
  width: 900px;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
.maintenance {
  display: block;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-image: url("/static/img/common/second-bg.png");
  background-position: center center;
  background-clip: content-box;
  background-size: cover;
  background-repeat: no-repeat;
}
.maintenance__bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.maintenance__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #E1E7EC;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: ghostFadeInOut 1s infinite;
}
.maintenance__content img {
  width: 128px;
}
.maintenance__content i {
  font-size: 64px;
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
.prologue-userIcon {
  position: relative;
  width: 200px;
  height: 200px;
  border: 3px solid #182028;
  border-radius: 100px;
  transition: 0.3s;
  margin-bottom: 30px;
}
.prologue-userIcon::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 203px;
  height: 203px;
  border: 3px solid #8F9395;
  border-radius: 103px;
}
.prologue-userIcon:hover {
  transition: 0.3s;
}
.prologue-userIcon:hover::after {
  border: 3px solid #76abda;
}
.prologue-userIcon:hover i {
  color: #8F9395;
  font-size: 30px;
  border: 3px solid #182028;
  border-radius: 30px;
  color: #76abda;
  background: #182028;
  transition: 0.3s;
  z-index: 2;
}
.prologue-userIcon i {
  position: absolute;
  bottom: 4px;
  right: 4px;
  color: #8F9395;
  font-size: 30px;
  border: 3px solid #182028;
  border-radius: 30px;
  background: #182028;
  transition: 0.3s;
  z-index: 2;
}
.prologue-userIcon img {
  width: 194px;
  height: 194px;
  border-radius: 100px;
  overflow: hidden;
  object-fit: cover;
}
.prologue-userIcon img::after {
  position: absolute;
  content: "";
  width: 206px;
  height: 206px;
  border: 6px solid #8F9395;
  border-radius: 103px;
}

.prologueImg {
  width: 300px;
}

.prologueImgBg {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
  max-height: 359px;
}

.playButton {
  color: #BBBEC2;
  position: relative;
}
.playButton::before {
  content: "\f6a9";
  font-family: "FontAwesome";
  position: absolute;
  padding-right: 16px;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*
scss/
├── build/
│   └── main.scss   // エントリーポイント
├── abstracts/      // ITCSSの各層に対応するフォルダ（01-settings ～ 07-utilities）
│   ├── 01-settings/
│   │   ├── _colors.scss
│   │   ├── _dimensions.scss
│   │   ├── _settings.scss
│   │   ├── _shadows.scss
│   │   ├── _spacing.scss
│   │   └── _index.scss
│   ├── 02-tools/
│   │   ├── _mixins.scss
│   │   ├── _keyframes.scss
│   │   ├── _functions.scss
│   │   └── _index.scss
│   ├── 03-generic/
│   │   ├── _reset.scss
│   │   └── _index.scss
│   ├── 04-elements/
│   │   ├── _elements.scss
│   │   ├── _form-elements.scss
│   │   └── _index.scss
│   ├── 05-objects/
│   │   ├── _objects.scss
│   │   └── _index.scss
│   ├── 06-components/
│   │   ├── _balloon.scss
│   │   ├── _button.scss
│   │   ├── _components.scss
│   │   ├── _forms.scss
│   │   ├── _modal.scss
│   │   ├── _points.scss
│   │   ├── _tables.scss
│   │   └── _index.scss
│   ├── 07-utilities/
│   │   ├── _txt.scss
│   │   ├── _background.scss
│   │   ├── _icons.scss
│   │   ├── _width.scss
│   │   ├── _utilities.scss
│   │   └── index.scss
│   └── 08-projects/
│       ├── _home.scss
│       ├── _admin.scss
│       ├── _beforelogin.scss
│       ├── _intro.scss
│       ├── _layout.scss
│       ├── _maintenance.scss
│       └── _index.scss
*/
/*
01-settings
-------------------------------------
プロジェクト全体で利用する基本の変数、カラー、タイポグラフィ、ブレイクポイント、ミックスインや関数などの設定値を定義する層です。
*/
/*
02-tools
-----------------
共通で利用するミックスイン、関数、ヘルパーツールなどをまとめた層です。
これにより、プロジェクト内で頻繁に使う処理を簡単に再利用できます。
*/
.errorContainer {
  display: block;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-image: url("/static/img/common/second-bg.png");
  background-position: center center;
  background-clip: content-box;
  background-size: cover;
  background-repeat: no-repeat;
}
.errorContainer__bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.errorContainer__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #E1E7EC;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.errorContainer__content img {
  width: 128px;
}
.errorContainer__content i {
  font-size: 64px;
  margin-bottom: 8px;
}
.errorContainer__content h2,
.errorContainer__content h3 {
  color: #E1E7EC;
}

.errorAnimation {
  animation: ghostFadeInOut 1s infinite;
}