@charset “utf-8”;
/********
    共通
*********/
body {
  margin: 0 auto;
  padding: 0;
  color: #000;
  width: 100%;
  font-size: 18px;
  line-height: 28px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  touch-callout: none;
}
@media screen and (max-width: 300px) {
  body {
    width: 300px;
  }
}
a {
  display: block;
}
a:hover {
  text-decoration: none;
  color: #fff8f0;
}
img {
  vertical-align: inherit;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  pointer-events: none;
  width: 100%;
}

h2 {
  text-align: center;
  font-size: 24px;
}
h3 {
  text-align: center;
  font-size: 20px;
}

footer {
  background-color: #e1b26a;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
/* Container */
.container {
  width: 100%;
  min-width: 300px;
  max-width: 800px;
  margin: 0 auto;
}
.wrap-content {
  text-align: center;
}
/* === モーダル非表示（初期） ============================== */
.modalNoDisp {
  display: none;
}
/* === モーダルバックグランド ============================== */
.modalBg {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 100;
}
/* === モーダルバックグランド：OPEN時のアニメーション ====== */
.modalBgOpen {
  animation: bgOpenAnime 0.3s ease;
}
@keyframes bgOpenAnime {
  /* フェードイン */
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* === モーダルバックグランド：CLOSE時のアニメーション ===== */
.modalBgClose {
  bottom: 100%;
  animation: bgCloseAnime 0.3s ease;
}
@keyframes bgCloseAnime {
  /* フェードイン */
  0% {
    opacity: 1;
    bottom: 0;
  }
  100% {
    opacity: 0;
    bottom: 0;
  }
}
/* === モーダルウインド ==================================== */
.modalBg .modalWindow {
  /* モーダルウインドを中心に表示 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  font-size: 16pt;
  /* text-align    : center; */
}
/* === モーダルウインド：OPEN時のアニメーション============= */
.modalBgOpen .modalWindow {
  animation: modalOpenAnime 0.3s ease;
}
@keyframes modalOpenAnime {
  /* 下→中心 */
  0% {
    top: 150%;
  }
  100% {
    top: 50%;
  }
}
/* === モーダルウインド：CLOSE時のアニメーション============ */
.modalBgClose .modalWindow {
  animation: modalCloseAnime 0.3s ease;
}
@keyframes modalCloseAnime {
  /* 中心→下 */
  0% {
    top: 50%;
  }
  100% {
    top: 150%;
  }
}

/********
  背景色関係
*********/
.beige-bg {
  background-color: #fff8f0;
}
.black-bg {
  background-color: #000;
}
.brown-bg {
  background-color: rgb(198 156 108);
}
.gray-bg {
  background-color: rgba(128, 128, 128, 0.5);
}
.orange-bg {
  background-color: rgb(241 88 34);
}
.purple-bg {
  background-color: rgb(56 58 143);
}
.red-bg {
  background-color: rgba(255, 0, 0, 0.5);
}
.white-bg {
  background-color: rgb(255, 255, 255);
}
.yellow-bg {
  background-color: rgb(244, 177, 105);
}
.green-bg {
  background-color: rgb(30, 167, 114);
}
/********
  文字色関係
*********/
.red-font {
  color: rgba(255, 0, 0, 0.5);
}
.white-font {
  color: #fff;
}
.brown-font {
  color: rgb(198 156 108);
}
/********
  文字サイズ関係
*********/
.font-size70 {
  font-size: 70px;
}

/********
  余白関係
*********/
.lp-space10 {
  padding: 10px 0;
}
.lp-space20 {
  padding: 20px 0;
}
.lp-space40 {
  padding: 40px 0;
}
.lp-space60 {
  padding: 60px 0;
}
.lp-space100 {
  padding: 100px 0;
}
/********
    幅設定
*********/
/* 最大幅 */
.max-box {
  width: 100%;
  margin: 20px auto;
}
/* 大幅 */
.long-box {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
}
/* 中幅 */
.middle-box {
  width: 80%;
  max-width: 600px;
  margin: 20px auto;
}
/* 小幅 */
.short-box {
  width: 100%;
  max-width: 140px;
  margin: 0 auto;
}
/* 小中幅 */
.short-middle-box {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}
/* 極小幅 */
.min-box {
  width: 80%;
  max-width: 200px;
  margin: 0 auto;
}
/* 超極小幅 */
.macro-box {
  width: 40%;
  max-width: 120px;
  margin: 0 auto;
}
/********
    高さ設定
*********/
/* 40px */
.height-box40 {
  height: 40px;
  line-height: 40px;
}
/* 60px */
.height-box60 {
  height: 60px;
  line-height: 60px;
}
/* 150px */
.height-box150 {
  height: 150px;
  line-height: 150px;
}
/* 200px */
.height-box200 {
  height: 200px;
  line-height: 200px;
}

/********
    ヘッダ
*********/
.wrap-header {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}
/* ヘッダ画像 */
.wrap-header img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 600px) {
  .wrap-header {
    font-size: 5vw;
  }
}
@media screen and (max-width: 250px) {
  .wrap-header {
    font-size: 17px;
  }
}

/********
    分割
*********/
.wrap-split,
.wrap-split-leader {
  display: flex;
  justify-content: center;
  /* margin-bottom: 60px; */
}
.wrap-split-harf,
.wrap-split-harf-leader {
  width: 50%;
  max-width: 200px;
  margin: 0 1px;
}
.wrap-split-harf-count,
.wrap-split-harf-count-leader {
  width: 50%;
  margin: 0 1px;
}
/********
    個別設定
*********/
/* 参加者一覧の名前 */
.member-name {
  border-bottom: 1px solid #000;
  padding: 4px 4px;
  margin: 0 4px;
  text-align: left;
}
.member-name:hover {
  color: #bfbfbf;
}
/********
    団長・副団長紹介
*********/
/* プロフィール */
.member-profile {
  padding: 10px 20px;
  text-align: left;
}
/* コメント */
.member-comment {
  padding: 10px 20px;
  text-align: left;
  border-left: 3px solid #000;
}
.wrap-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  /* height: 20px; */
  /* line-height: 5px; */
}
.wrap-image {
  width: 80%;
  max-width: 350px;
  margin: 0 auto;
}
.x-icon {
  width: 40px;
}
/********
    代表戦メンバー
*********/
.pfp-icon {
  width: 80px;
  border-radius: 50%;
}
.pfp-icon img {
  border-radius: 50%;
}
.wrap-leader-art {
  width: 100%;
  height: 50vw;
  max-width: 300px;
  max-height: 500px;
  margin: 10px auto;
}
.wrap-leader-art img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.wrap-leader-detail {
  border: 1px solid #bfbfbf;
  border-radius: 10px;
  width: 95%;
  max-width: 350px;
  margin: 0 auto;
  padding: 20px;
}
.wrap-leader-button {
  margin: 20px auto;
}
.leader-button {
  border-radius: 10px;
  width: 80%;
  max-width: 350px;
  padding: 10px;
  text-align: center;
  margin: 0 auto;
  color: #fff;
}
.button-opensea {
  background-color: #2c96ff;
}
.button-foundation {
  background-color: #333131;
}
@media screen and (max-width: 600px) {
  .wrap-split-leader {
    display: block;
  }
  .wrap-split-harf-count-leader {
    width: 100%;
  }
  .wrap-leader-art {
    width: 90%;
    height: auto;
    max-height: none;
    max-width: none;
  }
}
/********
    作品一覧
*********/
.wrap-artbox {
  display: inline-block;
}
.art-box {
  float: left;
  width: 190px;
  height: 190px;
  margin: 3px;
  cursor: pointer;
}
@media screen and (max-width: 732px) {
  .art-box {
    width: 47%;
    height: 40vw;
  }
}
.art-box img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/********
    作品子画面
*********/
.art-modalWindow {
  width: 70vw;
  max-width: 600px;
  height: 95vh;
}
.modal-art-detail {
  height: 100%;
}
.lp-art-close {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  filter: brightness(0.3);
}
.modal-art-content {
  width: 100%;
  height: 100%;
  font-size: 16px;
  overflow: auto;
}
@media screen and (max-width: 700px) {
  .art-modalWindow {
    width: 95vw;
  }
}
.artname {
  height: 60px;
  line-height: 60px;
  margin-left: 20px;
}
.artimage {
  width: 70vw;
  height: 70vw;
  max-width: 600px;
  max-height: 600px;
  margin: 10px auto;
}
.artimage img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.artpost {
  margin: 0 auto;
  font-size: 16px;
  width: 130px;
}
.artpost a {
  text-align: center;
}
.artpost a:hover {
  color: #0006ff;
}
.creatorname {
  margin-right: 20px;
  font-size: 12px;
  text-align: right;
}
.creatorname a {
  display: initial;
}
.platform {
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 12px;
}
.platform-lnk {
  width: 40px;
  margin-left: 20px;
  filter: brightness(0.5);
}
.sale-btn {
  margin-left: 10px;
  padding: 0px 20px;
  border-radius: 50px;
  background-color: #2c96ff;
  color: #fff;
}
.saleinfo {
  margin-left: 20px;
  font-size: 12px;
}
