@charset "utf-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0.8rem;
}
body {
  margin: 0;
  padding: 0;
  background-color: #efeef4;
  background-image:
    linear-gradient(0deg, transparent 31px, #333 32px),
    linear-gradient(90deg, transparent 31px, #333 32px);
  background-size: 32px 32px;
  background-attachment: fixed;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
input,
button,
select,
textarea {
  -webkit-appearance: none;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.mt_herf {
  margin-top: 0.5rem;
}
.mt_1 {
  margin-top: 1rem;
}
.mt_2 {
  margin-top: 2rem;
}
.mt_3 {
  margin-top: 3rem;
}
.mt_4 {
  margin-top: 4rem;
}
.mb_1 {
  margin-bottom: 1rem;
}
.mb_2 {
  margin-bottom: 2rem;
}
.highlight {
  color: #0a0099;
  font-weight: 700;
}
.big_text {
  font-size: 1.2rem;
}
.hidden {
  display: none;
}
.width_full {
  width: 100%;
}
.gray {
  color: #888888;
}

h3 {
  border-bottom: solid 1px #000;
}
.bold_text {
  font-weight: 600;
}

/* マウスカーソル */
#mouse_stalker {
  pointer-events: none;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50%;
  transform: translate(0, 0);
  transition: transform 0.2s;
  transition-timing-function: ease-out;
  z-index: 999;
  mix-blend-mode: difference;

  &.is_active {
    top: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    transition: 0.2s;
  }
}

/* ボディのスタイル */
body {
  background-color: #efeef4;
}
h2 {
  text-align: center;
}
#side_menu {
  width: calc(30% - 3rem);
  max-width: 20rem;
  position: fixed;
  box-sizing: border-box;
  border-right: 1px solid #000;
  z-index: 999;
  height: calc(100% - 3rem);
  overflow: visible !important;
  background-color: #ffffffd3;
  border: #000 1px solid;
  backdrop-filter: blur(2px);
  left: 1.5rem;
  top: 1.5rem;
  filter: drop-shadow(3px 3px 0.5rem #03035535);
  border-radius: 8px;
}

.side_menu_ul::-webkit-scrollbar {
  width: 16px;
}
.side_menu_ul::-webkit-scrollbar-thumb {
  background: #0a0099;
  border-radius: 8px;
  border-right: 4px solid transparent; /* 透明なボーダーをつける */
  border-left: 4px solid transparent; /* 透明なボーダーをつける */
  background-clip: padding-box; /* 背景を切り取る */
}
.side_menu_ul::-webkit-scrollbar-track {
  /* 上下に余白を付ける */
  margin-top: 4px;
  margin-bottom: 4px;
}
.side_menu_ul {
  height: 100%;
  overflow: hidden scroll;
}
.sub_menu li {
  position: relative;
}

#side_menu li > a:hover {
  background-color: #0a009924;
}

#side_menu li a {
  box-sizing: border-box;
  padding: 0.8rem;
}
.sub_menu li a {
  padding: 0.5rem 2rem !important;
  position: relative;
}
.sub_menu > li:has(.sub_sub_menu) > a:after {
  font-family: "Material Icons";
  content: "\e5e1";
  right: 1rem;
  margin: 0 0 0 auto;
  position: absolute;
  transition: ease 0.2s;
}
.sub_menu > li:has(.sub_sub_menu):hover > a:after {
  transform: rotate(180deg);
}
.sub_sub_menu {
  position: absolute;
  top: 0;
  left: -3rem;
  width: 15rem;
  background-color: #efeef4f1;
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 999;
  border-radius: 0.5rem;
  border: 1px solid #ffffff93;
  filter: drop-shadow(5px 5px 10px #00000039);
  overflow: hidden;
}
.sub_menu li:hover .sub_sub_menu {
  opacity: 1;
  pointer-events: auto;
}
.sub_sub_menu li:last-of-type {
  margin: 0;
}
.sub_sub_menu li a {
  padding: 0.5rem 2rem !important;
}
.border_top {
  border-top: 1px solid #000;
}
li > a {
  display: block;
  width: 100%;
}
#main {
  margin: 0 auto;
  min-width: calc(100% - 15rem);
  position: relative;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  margin: 0 0 0 auto;
}
a img:hover {
  opacity: 0.7;
}
/* うにゃにゃ */
.text_light {
  position: absolute;
  z-index: -11;
  user-select: none;
}
canvas {
  position: fixed;
}
/* title */

/* パララックス */
.bg_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#parallax_item1 {
  z-index: -2;
}
#parallax_item1 img {
  position: absolute;
  right: -2rem;
  top: 0;
  -ms-filter: blur(2px);
  filter: blur(2px);
}
#parallax_item2 {
  z-index: 3;
}
#parallax_item2 img {
  position: absolute;
  left: 50%;
  top: 90%;
  -ms-filter: blur(6px);
  filter: blur(6px);
}
/* スライド */
.slider {
  padding-top: 3rem;
  /* max-height: 250px; */
  /* height: 25%; */
}
.slider img {
  width: 100%;
  height: 40vw;
  object-fit: cover;
  max-height: 250px;
}
.slick-slide {
  margin: 0 5px;
}
.loop_text_wrapper {
  position: absolute;
  display: flex;
  width: 100%;
  overflow: hidden;
  font-size: 5rem;
  font-family: "Exo", sans-serif;
  font-weight: bold;
  z-index: 100;
  text-stroke:
    0.2rem rgba（255,
    255,
    255,
    0.5;
  -webkit-text-stroke: 0.1rem rgba(0, 0, 0);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  overflow: hidden;
}

@keyframes loop_animation_right_double {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.loop_right_double {
  animation: loop_animation_right_double 20s linear infinite;
  white-space: nowrap;
  margin-right: 1rem;
}

/* 自己紹介 */
.welcom_massege {
  border: solid 1px #000;
  padding: 1.8rem 1rem;
  border-radius: 0.5rem;
  background-color: #efeef4;
  box-shadow: 4px 4px 0 #000;
  position: relative;
  box-sizing: border-box;
  text-align: center;
  margin-top: 3rem !important;
}
.welcom_massege::before {
  position: absolute;
  content: "";
  color: #888888;
  width: 35%;
  height: 2rem;
  background-color: #000;
  top: -1.6rem;
  left: -1px;
  z-index: -1;
  border-radius: 10px 10px 0 0;
}
.jikosyoukai {
  position: absolute;
  top: -2.8rem;
  right: 1rem;
  color: #c8ff00;
  font-size: 3.5rem;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: black;
  text-shadow: 3px 4px #000;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 1000;
  font-style: normal;
}
.link_container {
  text-align: center;
  margin: 0 auto;
  padding: 1rem;
}
.flex_wappar {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
}
.link_icon_wrapper {
  width: 100%;
  text-align: center;
}
.link_icon_img {
  width: 100%;
}
.flex_wappar > a:hover {
  opacity: 0.7;
}

.Twitter_link a {
  color: #0a0099;
  display: inline;
}

/* メニュー */
.menu_list {
  margin-top: 2rem;
  display: flex;
  font-weight: bold;
}
.menu_item {
  width: 100%;
  text-align: center;
  border: solid 1px #000;
  background-color: #c8ff00;
  padding: 0.5rem 0rem;
  border-radius: 10px 10px 0 0;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 2rem;
}
#menu_list .active {
  border-bottom: none;
  background-color: #efeef4c5;
  margin-top: 1.5rem;
}
#menu_list,
.kanari_small_text,
.welcom_massege,
.content_item_wapper {
  width: calc(70% - 1rem);
  min-width: calc(100% - 24rem);
  margin: auto 0.8rem 0 auto;
  box-sizing: border-box;
}
.content_item_wapper {
  background-color: #efeef4c5;
  padding-bottom: 2rem;
  padding-top: 2rem;
  backdrop-filter: blur(3px);
  border: 1px solid #000;
}
.mokuji {
  text-align: center;
}
.content_mokuji {
  width: 90%;
  display: flex;
  margin: 0 auto 1.5rem auto;
  font-size: 0.9rem;
  line-height: 1rem;
  align-items: center;
}
.content_mokuji > li {
  padding: 1rem 0;
  width: 100%;
  text-align: center;
}
.content_mokuji > li:not(:first-child) {
  border-left: solid 1px #000;
}
/* 活動時間 */
.left_side {
  margin: 3rem 2rem 0 0;
  padding: 2rem 0.8rem 3rem 1.5rem;
  background-color: #ffffff;
  border: solid 1px #000;
  border-left: none;
  box-shadow: 10px 10px #bbff00;
}

.right_side {
  margin: 3rem 0 0 1.5rem;
  padding: 2rem 1rem 3rem 1.5rem;
  background-color: #ffffff;
  border: solid 1px #000;
  border-right: none;
  box-shadow: 10px 10px #bbff00;
}
.text {
  margin: inherit 0.5rem;
}
.scenario_list_container {
  margin: 1.5rem 0.5rem;
}
.text_in_link {
  border-bottom: solid 1px #000;
  font-weight: bold;
}
.text_in_link:hover {
  opacity: 0.6;
}
.small_text_items {
  margin: 0.9rem 0;
  padding: 0.8rem 0.8rem;
  border: dotted 1px gray;
  border-radius: 0.5rem;
  background-color: #bbff00;
  font-weight: 700;
}
.small_text {
  font-size: 0.8rem;
  margin: 0 0.8rem;
}
.sub_content_title {
  font-weight: 700;
}
.sub_content::before {
  content: "└";
  margin-right: 0.4rem;
}
.syousai_link_mokuji {
  margin: 1.2rem 0 1.6rem 0;
  display: flex;
  justify-content: space-around;
}
.syousai_link_mokuji li {
}
/* キャラクターリスト */
.PCList_section_wappar,
.scenario_list_wappar {
  margin: 0 0.8rem;
}
.PCList_section_wappar h3 {
  margin: 1rem 0rem 0.2rem 0rem;
}
.PCList_section_wappar h2 {
  margin-bottom: 0.8rem;
}
.PClist_wapper {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.charactor_wapper_desgin {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0px 4px 0px rgb(0, 0, 0);
  border: solid 1px #000;
  text-align: center;
  margin: 0.45rem;
  padding-bottom: 0.3rem;
  transition: 0.2s ease-in-out;
}
.charactor_wapper_desgin:hover {
  box-shadow: 0px 0px 0px rgb(0, 0, 0);
  margin-top: 0.7rem;
  margin-bottom: 0;
}
.four_content {
  width: 25%;
  max-width: 250px;
}
.charactor_wapper_desgin {
  background-color: #efeef4;
}
.charctor_list_image_container {
}
.cahactor_text_wapper {
  margin: 0.2rem;
}
.cahactor_scenario {
  font-size: 0.7rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cahactor_name {
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* charactersearch */
#search_text,
#search_scenario_text {
  background-color: #bbff00;
  border: 1px solid #000;
  padding: 0.5rem;
  border-radius: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  width: 40%;
}
#search_btn,
#search_scenario_btn {
  background: #000;
  padding: 0.2rem 0.8rem 0.5rem;
  border-radius: 2rem;
  color: #c8ff00;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#search_btn:hover {
  opacity: 0.7;
}

/* シナリオ一覧 */
.scenario_list_container h3 {
  margin-bottom: 0.3rem;
}
.KP_filter_btn_container {
  margin: 0.3rem 1rem;
}
.KP_filter_btn_container p {
  padding-left: 1rem;
}
.toggle-button-4 {
  display: flex;
  align-items: center;
  position: relative;
  width: 60px;
  height: 30px;
  border-radius: 50px;
  box-sizing: content-box;
  background-color: #47474733;
  cursor: pointer;
  transition: background-color 0.4s;
  margin-top: 0.5rem;
  margin-left: 1rem;
}
.toggle-button-4::before {
  position: absolute;
  left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #474747;
  content: "off";
  font-weight: 600;
  transition: left 0.4s;
  font-size: 0.7em;
  color: #fff;
}

.toggle-button-4_change::before {
  content: "on";
  left: 35px;
  background-color: #0a0099;
  transition: left 0.4s;
}
.toggle-button-4 input {
  display: none;
}
.handout_bangou {
  font-size: 0.8rem;
}
.handout_bangou::before {
  content: " - ";
  margin: 0 0.4rem;
}
.scenario_list_item {
  margin: 0.2rem 0.5rem;
}

.scenario_list_container h3 {
  font-weight: bold;
  font-size: 1.2rem;
}
.scenario_list_item {
  margin-top: 0.3rem;
  margin-left: 1rem;
}
.toggle {
  position: relative;
  padding-left: 50px;
  cursor: pointer;
}
.toggle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.4rem;
  left: 1rem;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(135deg);
  transition: 0.3s;
}
.toggle.toggle_active::before {
  transform: rotate(45deg);
}

footer {
  background-color: #000;
  color: #efeef4;
  padding: 1rem;
  font-size: 0.8rem;
  margin-top: 1rem;
}

.right_side {
  transform: translate3d(50px, 0, 0);
  opacity: 0;
}

.left_side {
  transform: translate3d(-50px, 0, 0);
  opacity: 0;
}

.right_side.animated,
.left_side.animated {
  transform: translate3d(0, 0, 0);
  transition: 1s;
  opacity: 1;
}
.content_item_wapper {
  overflow: hidden;
}

.Top_btn {
  position: fixed;
  background-color: inherit;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0px 4px 0px #000000;
  text-align: center;
  bottom: 2rem;
  right: 1rem;
  z-index: 100;
  background-color: #bbff0080;
  border: solid 1px #000;
  font-family: "Exo", sans-serif;
  font-weight: 900;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.Top_btn::before {
  content: "Top";
  position: absolute;
  color: #000;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.not_search {
  opacity: 0.5;
}
.not_search_text {
  background-color: #000;
  color: #efeef4;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: 8px;
  margin-top: 0.8rem;
  display: none;
}

.junbityu {
  position: relative;
  overflow: hidden;
}
.junbityu::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #00000074;
  top: 0;
  right: 0;
  opacity: 10;
  z-index: 900;
  transition: 0.3s;
}
.junbityu::before {
  position: absolute;
  color: #fff;
  width: 100%;
  height: 100%;
  content: "工事中";
  top: 3rem;
  right: 0;
  opacity: 1;
  transition: 0.3s;
  z-index: 600;
}
.junbityu:hover::before {
  opacity: 1;
}
.junbityu:hover::after {
  opacity: 1;
}
.junbityu a {
  pointer-events: none;
}
.info_kousin_box {
  background-color: #c8ff00;
  padding: 0.8rem;
  border: #000 solid 1px;
  text-align: left;
  width: 100%;
  height: 8rem;
  overflow-y: scroll;
  box-sizing: border-box;
}
.info_table thead th:first-of-type {
  width: 4rem;
}
.info_table {
  border-collapse: collapse; /* ← これが大事！ */
  width: 100%; /* 必要なら */
}
.info_table thead th {
  font-size: 0.8rem;
  text-align: left;
}
.info_table td,
.info_table th {
  border-bottom: 1px dotted #000000;
  padding: 0.5rem 0;
}
.info_table tbody td {
  text-align: left;
  vertical-align: top;
}
.info_table thead td:last-of-type {
  width: 90%;
}
.played_scenario_result {
  display: flex;
  margin: 1rem;
  border-bottom: 1px solid #000;
  gap: 2rem;
}
.twitter_container,
.link_container {
  width: 100%;
}
