@charset "utf-8";
body {
  background-color: #fafafa;
}
.btn--main {
  background: #222A6E;
  color: #fafafa;
  border-radius: 50px;
}
.btn--sub {
  background: transparent;
  color: #222A6E;
  border-radius: 50px;
}
.detail__btn a::before {
  border-color: #000000;
}
.btn--chevron {
  color: #222A6E;
}
.btn--chevron::after {
  border-color: #222A6E;
}
.btn--chevron-left {
  color: #222A6E;
}
.btn--chevron-left::after {
  border-color: #222A6E;
}
.btn--main:hover {
  background: #222A6E;
}
.block--card {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.block--card::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.block--card.app::before {
  background: rgba(0, 0, 0, 0.3);
}
.block--card.app .close::before,
.block--card.app .close::after {
  background: #fff;
}
.block--card .card {
  width: 80%;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  -webkit-transition: z-index 0 0.6s;
  transition: z-index 0 0.6s;
  background: #232B70;
  text-align: center;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 0 6.8% 5.2vw;
  z-index: 10;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}
.block--card .card .logo {
  width: 62vw;
  height: 30vw;
  margin: 10vw auto 23vw;
  position: relative;
  left: 2px;
}
.block--card .card .area--logo {
  height: 89.2vw;
  background-image: url("/static/oisiclemelonpan/fanclub/mypage/membership_card/card_logo.png");
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center 55%;
  position: relative;
}
.block--card .card .area--logo .triangle-top-left {
  position: absolute;
  width: 18%;
  top: 20%;
  left: 1%;
  animation: 3s linear infinite rotation2;
}
.block--card .card .area--logo .triangle-top-right {
  width: 32%;
  position: absolute;
  right: 1%;
  top: 5%;
  animation: 4s linear infinite rotation1;
}
.block--card .card .area--logo .triangle-bottom-left {
  width: 63%;
  position: absolute;
  bottom: -5%;
  left: -1%;
  animation: 5s linear infinite rotation2;
}
.block--card .card .area--logo .triangle-sub-top {
  position: absolute;
  top: 13%;
  width: 12%;
  right: -2%;
  animation: 1.5s linear infinite rotation3;
}
.block--card .card .area--logo .triangle-sub-bottom {
  position: absolute;
  width: 22%;
  bottom: -1%;
  left: 32%;
  animation: 3s linear infinite rotation1;
}
.block--card .card .area--text {
  position: relative;
  z-index: 2;
}
.block--card .card .list--data {
  color: #FFFFFF;
  border-top: #9CA1D0 1px solid;
  padding-top: 9px;
  display: flex;
  flex-wrap: wrap;
}
.block--card .card .name--item {
  text-align: left;
  width: 100%;
  padding-bottom: 9px;
  border-bottom: #9CA1D0 1px solid;
}
.block--card .card .nickname {
  font-size: 14px;
}
.block--card .card .member--id--item {
  width: 50%;
  text-align: left;
  font-size: 4.1vw;
  padding-top: 9px;
}
.block--card .card .member--id {
  margin-left: 1px;
}
.block--card .card .duration--item {
  padding-left: 15px;
  width: 50%;
  text-align: left;
  position: relative;
  padding-top: 9px;
}
.block--card .card .duration--item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 28%;
  width: 1px;
  height: 62%;
  background-color: #9CA1D0;
  background-size: cover;
}
.block--card .card .duration {
  font-size: 4.1vw;
  margin-left: 1px;
  font-family: -apple-system, BlinkMacSystemFont, 'Arial', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.block--card .card .year {
  margin-left: 3px;
  margin-right: 5px;
}
.block--card .card .ruby {
  color: #7D84C3;
  font-size: 10px;
  transform: scale(0.9);
  transform-origin: left top;
  letter-spacing: 0.2em;
}
.block--card .close {
  position: absolute;
  width: 45px;
  height: 45px;
  right: -20px;
  top: -50px;
}
.block--card .close::after,
.block--card .close::before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 50%;
}
.block--card .close::after {
  transform: rotate(45deg);
}
.block--card .close::before {
  transform: rotate(-45deg);
}
.pop-up {
  margin-bottom: 40px;
}
.card-show .block--card {
  z-index: 100;
  opacity: 1;
  pointer-events: auto;
}
.card-show .list--menu,
.card-show .tit--menu,
.card-show .footer,
.card-show header,
.card-show .detail__btn,
.card-show .pop-up {
  filter: blur(5px);
}
@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation2 {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes rotation3 {
  0% {
    transform: rotateX(0);
  }
  100% {
    transform: rotateX(360deg);
  }
}
/* application
============================== */
#mypage--app header {
  display: none;
}
#mypage--app footer {
  display: none;
}
#mypage--app .wrap {
  padding-bottom: 0!important;
}
#mypage--app .detail__btn {
  display: none;
}
#mypage--app section:last-of-type {
  padding-bottom: 10px;
}
/* application QRコード
============================== */
/* 非会員 */
#mypage--app section .area--user-status.status--free {
  background: rgba(0, 0, 0, 0.1);
}
/* 有料会員 */
#mypage--app section .area--user-status.status--member {
  background: #232B70;
}
