@charset "utf-8";

/* ↓↓↓ common ↓↓↓ */
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: relative;
}

/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ header ↓↓↓ */
header {
  position: fixed;
  width: 100%;
  padding: 10px 20px 0 20px;
  display: flex;
  justify-content: flex-start;
}

header .logo {
  width: 41px;
}

header .mascot_link_pc {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  header .mascot_link_pc {
    display: none;
  }
}

header .mascot_link_pc:hover {
  opacity: .7;
}

header .menu-btn {
  width: 38px;
  margin-left: auto;
  cursor: pointer;
}

header .menu {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 363px;
  height: 100vh;
  padding: 60px 40px;
  overflow-y: auto;
  -ms-overflow-style: none;
  background-color: #4d4d4d;
  transition: all .3s ease;
}

@media screen and (max-width: 768px) {
  header .menu {
    width: 100%;
  }
}

header .menu.active {
  transform: translateX(0%);
}

header .menu::-webkit-scrollbar {
  display: none;
}

header .menu .close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 17px;
  height: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

header .menu .title {
  width: 57px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

header .menu .list-group {
  font-size: 13px;
  color: #fff;
}

header .menu .list-group li {
  border-bottom: 1px solid #fff;
}

header .menu .list-group li a {
  display: block;
  padding: 12px 0;
}

@media screen and (max-width: 768px) {
  header .menu .list-group li a {
    padding: 15px 0;
  }
}

header .menu .top-btn {
  width: 27px;
  margin: 30px auto 60px auto;
  display: flex;
  align-items: center;
}

/* ↑↑↑ header ↑↑↑ */

/* ↓↓↓ mascot_link_sp ↓↓↓ */
.mascot_link_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .mascot_link_sp {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
  }
}

/* ↑↑↑ mascot_link_sp ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */

@media screen and (min-width: 1401px) {}

@media screen and (max-width: 1400px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 480px) {}

@media screen and (max-width: 375px) {}

@media screen and (max-width: 320px) {}