@charset "UTF-8";
html {
  font-size: 10px;
}

@font-face {
  font-family: 'skyer';
  font-weight: 400;
  src: url("../fonts/FontsFree-Net-skyer-400.ttf") format("truetype");
}

body {
  font-weight: 300;
  background-color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
}

.skyer {
  font-family: 'skyer';
}

.w_max {
  max-width: 1600px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 499px) {
  .w_max {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.center {
  text-align: center;
}

.ws_max {
  max-width: 800px;
  margin: 0 auto;
}

.svg {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .lg_sp {
    display: none;
  }
}

@media screen and (max-width: 999px) {
  .lg_pc {
    display: none;
  }
}

img {
  max-width: 100%;
}

.btn {
  text-align: center;
}

.btn div {
  appearance: none;
  display: inline-block;
  position: relative;
  color: #96a9b8;
  font-size: 1.8rem;
  filter: drop-shadow(0px 0px 4px #96a9b8);
  transition: all 0.4s;
  clip-path: polygon(100% 0%, 100% 89%, 98% 100%, 0 100%, 0 11%, 2% 0);
}

.btn div:before {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;
  bottom: 7px;
  right: 0;
  border-top: solid 2px #96a9b8;
  border-right: solid 2px #96a9b8;
}

.btn div:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0px;
  bottom: 0px;
  right: 7px;
  border-bottom: solid 2px #96a9b8;
  border-left: solid 2px #96a9b8;
}

.btn div span {
  display: block;
  position: relative;
  padding: 12px 80px;
}

.btn div span:before {
  content: "";
  position: absolute;
  top: 3px;
  left: -1px;
  width: 10px;
  height: 2px;
  background-color: #96a9b8;
  transform: rotate(-45deg);
}

.btn div span:after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: -1px;
  width: 10px;
  height: 2px;
  background-color: #96a9b8;
  transform: rotate(-45deg);
}




.btn a, .btn button {
  appearance: none;
  display: inline-block;
  position: relative;
  color: #7cc4fa;
  font-size: 1.8rem;
  filter: drop-shadow(0px 0px 4px #7cc4fa);
  transition: all 0.4s;
  clip-path: polygon(100% 0%, 100% 89%, 98% 100%, 0 100%, 0 11%, 2% 0);
}

.btn a:hover, .btn button:hover {
  opacity: 1;
  background-color: #7cc4fa;
  color: #fff;
  box-shadow: 0 0 10px #7cc4fa;
}

.btn a:before, .btn button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;
  bottom: 7px;
  right: 0;
  border-top: solid 2px #7cc4fa;
  border-right: solid 2px #7cc4fa;
}

.btn a:after, .btn button:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0px;
  bottom: 0px;
  right: 7px;
  border-bottom: solid 2px #7cc4fa;
  border-left: solid 2px #7cc4fa;
}

.btn a span, .btn button span {
  display: block;
  position: relative;
  padding: 12px 80px;
}

@media screen and (max-width: 767px) {
  .btn a span, .btn button span {
    font-size: 4.16vw;
    padding: 10px 70px;
  }
}

.btn a span:before, .btn button span:before {
  content: "";
  position: absolute;
  top: 3px;
  left: -1px;
  width: 10px;
  height: 2px;
  background-color: #7cc4fa;
  transform: rotate(-45deg);
}

.btn a span:after, .btn button span:after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: -1px;
  width: 10px;
  height: 2px;
  background-color: #7cc4fa;
  transform: rotate(-45deg);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0px;
}

@media screen and (max-width: 767px) {
  header {
    padding: 5px 0;
  }
}

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

header .logo {
  display: block;
  max-width: 210px;
}

@media screen and (max-width: 767px) {
  header .logo {
    max-width: 40vw;
    width: 120px;
  }
}

header .logo svg {
  width: 100%;
}

header .header_links {
  font-size: 400;
}

@media screen and (min-width: 500px) {
  header .header_links {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  header .header_links {
    background: rgba(10, 25, 45, 0.95);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    line-height: 2;
    padding: 80px 13vw 20px;
    overflow: scroll;
    transform: translateX(105%);
    transition: all 0.2s;
    min-width: 60vw;
    font-size: 4.42vw;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
  }
  header .header_links::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display: none;
  }
}

@media screen and (min-width: 768px) {
  header .header_links ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  header .header_links ul li {
    margin-bottom: 30px;
  }
}

header .header_links ul li a {
  display: block;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  header .header_links ul li a {
    padding: 0 40px;
  }
}

header .header_links ul li a:hover {
  color: #7cc4fa;
  text-shadow: 0 0 4px #7cc4fa;
}

header .header_links ul li.active {
  color: #7cc4fa;
}

header .header_links.sp_menu {
  transform: translateX(0);
}

@media screen and (max-width: 767px) {
  header .header_ham {
    z-index: 100;
    display: block;
  }
  header .header_ham a,
  header .header_ham a span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  header .header_ham a {
    position: relative;
    width: 30px;
    height: 44px;
  }
  header .header_ham a span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 70%;
    height: 2px;
    background-color: #fff;
    border-radius: 5px;
  }
  header .header_ham a span:nth-of-type(1) {
    top: 30%;
    transform: translateY(-50%);
  }
  header .header_ham a span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  header .header_ham a span:nth-of-type(3) {
    top: 70%;
    transform: translateY(-50%);
  }
  header .header_ham a.active span:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  header .header_ham a.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .header_ham a.active span:nth-of-type(3) {
    transform: translateY(-8.6px) rotate(45deg);
  }
}

/**
 * footer
 **/
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding-bottom: 5px;
  padding: 10px;
}
footer .footer {
  position: relative;
}
footer .footer p {
  color: #999999;
  font-size: 1.2rem;
}
footer .footer-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
footer .footer-right {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(0%,-50%);
}

@media screen and (max-width: 499px) {
  footer .footer p {
    font-size: 2.6vw;
  }
}

.menu-content {
    width: 85%;
    height: 90%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    background-color: #6c7e8a;
    transition: all 0.5s;
    display: none;
}

.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

/* テーブル関連 */
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 2rem;
  /* color: #212529; */
  vertical-align: top;
  border-color: #dee2e6;
}
tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}
.table td, .table th {
    padding: 2rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}
td {
    display: table-cell;
    vertical-align: inherit;
}
.table-scroll {
    overflow: auto;
    /* white-space: nowrap; */
}

/* select */
select {
  font-weight: bold;
  color: #7cc4fa;
  background-color: rgba(255, 255, 255, 0.1);
  appearance: none;
  height: 45px;
  border-radius: 7px;
  padding: 10px 15px;
  border-bottom: solid 2px #7cc4fa;
}

/* スクロールバーのCSSを設定するとブラウザで常に表示 */
/* スクロールバー */
/* .custom_scrollbar::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}
.custom_scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
.custom_scrollbar::-webkit-scrollbar-thumb {
  background: #888; 
} */
