html, body {
  background: #1c1c1c;
  font-family: 'Libre Bodoni', serif;
}
ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer {
  position: absolute;
  text-align: center;
  width: 100%;
  font-size: 14px;
  padding-bottom: 40px;
  bottom: 0px;
}
.container {
  color: white;
  min-height: 100vh;
  position: relative;/*←相対位置*/
  padding-bottom: 180px;/*←footerの高さ*/
  box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
}
.content {
  margin-bottom: 120px;
  min-height: 610px;
}
.header {
  /* background: #000000; */
  color: #fff;
  /* padding: 20px; */
}
.logo {
  text-align: center;
  padding-left: 26px;
}
.logo a {
  color: #fff;
  text-decoration: none;
}
.logo img {
  height: 60px;
}
.logo-menu {
  font-size: 36px;
  color: #3F3F3F;
  padding: 20px;
  padding-top: 4px;
  display: none;
}
.back {
  float: left;
  margin: 16px;
  width: 10px;
}
.back-button {
  display: none;
}
.menu {
  float: right;
  padding-top: 10px;
  padding-right: 10px;
}
.menu a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 20px;
}
.img-back {
  position: relative;
  display: block;
  background: white;
  margin-left: auto;
  margin-right: auto;
  width: 400px;
}
.img-back img {
  position: absolute;
  width: 400px;
  display: none;
}

.img-front {
  position: relative;
  top: 120px;
  text-align: center;
}
.img-front img {
  width: 220px;
}

.mint-area, .sold-out-area {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 400px;
  top: 330px;
  text-align: center;
  padding-bottom: 200px;
  /* height: 0px; */
  display: none;
}
.sold-out-label {
  background: #FFF48D;
  color: #8A00FF;
  font-size: 30px;
  width: 130px;
  top: -70px;
  position: absolute;
  padding: 10px;
  left: 0;
  right: 0;
  margin: auto;
}
.mint-button {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  text-align: center;
  background-color: #8A00FF;
  border: none;
  color: white;
  padding: 10px;
  font-size: 18pt;
  border-radius: 40px;
  font-family: 'Libre Bodoni', serif;
  cursor: pointer;
}

.menu-list {
  text-align: center;
  font-size: 30px;
}

.members {
  width: 400px;
  margin: auto;
}
.members-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333333;
}

.members-list table {
  width: 100%;
}
.members-list tr {
  display: block;
  margin-bottom: 40px;
}
.members-list td {
  width: 50%;
  vertical-align: top;
  font-size: 14px;
}
.members-list img {
  width: 140px;
  border-radius: 50%;
  margin-right: 20px;
}
.members-list .members-name {
  margin-bottom: 14px;
  font-size: 20px;
}
.socials {
  margin-bottom: 40px;
}
.socials img {
  width: 40px;
  margin: 14px;
  /* background: #D9D9D9; */
  padding: 6px;
  /* border-radius: 10px; */
}
/* =============== menu ================= */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 30px;
  height: 18px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 8px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}
/* =============== menu ================= */

/* =============== modal ================= */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.8);
}

/* Modal Content */
.modal-content {
  background-color: #000;
  margin: 200px auto;
  padding: 20px;
  border: 1px solid #333;
  max-width: 600px;
  border-radius: 10px;
  color: white;
}
.modal-content p {
  text-align: center;
}
.modal-content img {
  width: 300px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.modal-link {
  margin-top: 30px;
  margin-bottom: 30px;
}
.modal-link a {
  text-decoration: none;
  color: #8A00FF;
  border-radius: 30px;
  border: 1px solid #8A00FF;
  padding: 10px 30px;
  font-size: 18px;
}

/* =============== modal ================= */
