@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://use.typekit.net/vfx2gla.css");
@import url("https://fonts.googleapis.com/css2?family=Unna:ital,wght@0,400;0,700;1,400;1,700&display=swap");
a {
  color: #010101;
}
a:hover {
  color: #565656;
}

.btn--main {
  background: #010101;
  color: #ffffff;
}
.btn--main:hover {
  background: #565656;
}

.btn--sub {
  background: transparent;
  color: #010101;
}
.btn--sub:hover {
  background: #565656;
  color: #ffffff;
}

.detail__btn a::before {
  border-color: #010101;
}

.btn--chevron {
  color: #010101;
}
.btn--chevron::after {
  border-color: #010101;
}
.btn--chevron:hover {
  color: #565656;
}
.btn--chevron:hover::after {
  border-color: #565656;
}

.btn--chevron-left {
  color: #010101;
}
.btn--chevron-left::after {
  border-color: #010101;
}
.btn--chevron-left:hover {
  color: #565656;
}
.btn--chevron-left:hover::after {
  border-color: #565656;
}

.page--mypage .wrap > section {
  overflow: hidden;
}

header {
  padding: 2em 5% 0;
}
header h1 {
  position: relative;
  width: 20vw;
  max-width: 240px;
  margin: 3em auto 1em;
}
header h1 svg {
  fill: #010101;
}

.section--login {
  padding-top: 0;
}

.block--attention {
  padding: 20px;
  border: solid 1px;
  border-radius: 6px;
  font-size: 14px;
}

.list--menu li a[target=_blank] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list--menu li a[target=_blank]::after {
  width: auto;
  height: auto;
  margin-right: -2em !important;
  border: none !important;
}

.ph, .thumb {
  position: relative;
  line-height: 0;
}
.ph img, .thumb img {
  width: 100%;
}
.ph::after, .thumb::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/static/common/global-image/dummy.gif);
  background-size: cover;
}
.ph .dummy, .thumb .dummy {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.block--firstlogin .login--attention {
  padding: 20px;
  border: solid 2px #cc0000;
  background: #ffdada;
  font-size: 13px;
}
.block--firstlogin .login--attention .txt--basic {
  display: inline-block;
  margin: 0 0 0.8em;
  border-bottom: solid 1px;
}
.block--firstlogin .login--attention b {
  color: #cc0000;
}
.block--firstlogin .login--attention a {
  color: #010101;
}
.block--firstlogin .login--attention .btn--firstlogin {
  margin: 6% auto 9%;
}
.block--firstlogin .login--attention .btn--firstlogin a {
  position: relative;
  border-bottom: solid 2px #cc0000;
  font-weight: bold;
  transition: color 0.3s;
}
.block--firstlogin .login--attention .btn--firstlogin a::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #010101;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 0.4s;
}
.block--firstlogin .login--attention .btn--firstlogin a:hover {
  color: #565656;
}
.block--firstlogin .login--attention .btn--firstlogin a:hover::before {
  transform: scaleX(0);
}

.section--oshimen {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto 3em;
  padding: 2em;
  border-radius: 1.5em;
  border: solid 1px #010101;
  background-color: #ffffff;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
}
.section--oshimen ul.block--ohimen--info {
  width: 70%;
}
.section--oshimen ul.block--ohimen--info li {
  margin-bottom: 0.8em;
}
.section--oshimen ul.block--ohimen--info li:last-of-type {
  margin-bottom: 0;
}
.section--oshimen ul.block--ohimen--info li dl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.02em;
}
.section--oshimen ul.block--ohimen--info li dl dt {
  display: inline-block;
  margin-bottom: 0.4em;
  font-size: 12px;
}
.section--oshimen ul.block--ohimen--info li dl dd {
  font-size: 15px;
}
.section--oshimen ul.block--ohimen--character {
  width: 30%;
}
.section--oshimen ul.block--ohimen--character li img {
  width: 100%;
  transform-origin: center bottom;
  animation: dance 5s infinite linear 1.5s both;
}

@media screen and (min-width: 1px) and (max-width: 768px) {
  .section--oshimen {
    width: 100%;
    margin: 0 auto 3em;
  }
  .section--oshimen ul.block--ohimen--info {
    width: 60%;
  }
  .section--oshimen ul.block--ohimen--character {
    width: 40%;
  }
}
@keyframes dance {
  0% {
    transform: translateY(0);
  }
  3% {
    transform: translateY(-1em);
  }
  6% {
    transform: translateY(0);
  }
  9% {
    transform: translateY(-1em);
  }
  12% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-1em);
  }
  18% {
    transform: translateY(0);
  }
  53% {
    transform: rotateY(0deg);
  }
  56% {
    transform: rotateY(-180deg);
  }
  66% {
    transform: rotateY(-360deg);
  }
  100% {
    transform: translateY(0);
  }
}
.btn--birthday {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3em;
  padding: 1.5em 1em;
  border-radius: 100em;
  background: #000;
  background-size: 111% 111%;
  color: #ffffff;
  font-family: "adobe-caslon-pro", serif;
}
.btn--birthday i {
  margin-right: 0.3em;
  font-family: "Font Awesome 5 Free";
  font-size: 3em;
}
.btn--birthday span {
  font-size: 20px;
  line-height: 1.2;
}

.list--menu .list--notes {
  margin-bottom: 0;
  padding-top: 0.5em;
}
.list--menu .list--notes li {
  margin-bottom: 0.5em;
  border: none;
}
.list--menu .list--notes li a {
  display: inline-block;
  padding: 0;
  font-size: 11px;
  text-indent: 0;
  text-decoration: underline;
}
.list--menu .list--notes li a::after {
  display: none;
}

.mypage .detail__btn.app a::after {
  content: "BACK";
}

.block--card {
  perspective: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  opacity: 0;
  overflow: scroll;
  background: rgba(0, 0, 0, 0.3);
  transition: 0.4s;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  pointer-events: none;
}
.block--card .close {
  display: block;
  position: absolute;
  top: -40px;
  right: 0px;
  left: initial;
  z-index: 100;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.block--card .close::before, .block--card .close::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background: #000;
  transform: rotate(45deg);
}
.block--card .close::after {
  transform: rotate(-45deg);
}
.block--card img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.block--card .card {
  position: relative;
  width: 280px;
  height: 500px;
  box-sizing: border-box;
}
.block--card .card .card-omote, .block--card .card .card-ura {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transform-origin: center;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}
.block--card .card .card-omote {
  opacity: 0;
  height: auto;
  transform-origin: center;
  transform: rotateY(180deg);
}
.block--card .card .card-omote .inner {
  padding: 24px 24px 20px;
}
.block--card .card .card-omote .inner .block--name {
  font-family: "adobe-caslon-pro", serif;
  font-weight: 600;
}
.block--card .card .card-omote .inner .block--name .tit-wrap {
  display: flex;
  justify-content: space-between;
  opacity: 0.4;
  font-size: 10px;
}
.block--card .card .card-omote .inner .block--name .name-wrap {
  position: relative;
  padding: 12px 0 15px;
  text-align: center;
}
.block--card .card .card-omote .inner .block--name .name-wrap .line {
  width: 100%;
}
.block--card .card .card-omote .inner .block--name .name-wrap .line.top {
  top: 0;
}
.block--card .card .card-omote .inner .block--name .name-wrap .line.bottom {
  bottom: 20px;
}
.block--card .card .card-omote .inner .block--name .name-wrap .name {
  font-size: 38px;
  font-weight: 400;
}
.block--card .card .card-omote .inner .block--name .label {
  display: flex;
  justify-content: space-between;
  opacity: 0.4;
  margin-top: -16px;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.6em;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.block--card .card .card-omote .inner .block--name .label > span:nth-child(2) {
  position: relative;
  right: -8px;
  text-align: right;
}
.block--card .card .card-omote .inner .ph {
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 3/4;
}
.block--card .card .card-omote .inner .block--data .list--data {
  display: flex;
}
.block--card .card .card-omote .inner .block--data .list--data li:first-child {
  width: 7em;
}
.block--card .card .card-omote .inner .block--data .list--data li:last-child {
  margin-left: 10px;
}
.block--card .card .card-omote .inner .block--data .list--data dl .tit {
  opacity: 0.4;
  font-family: "adobe-caslon-pro", serif;
  font-weight: 600;
  font-size: 10px;
  zoom: 0.8;
}
.block--card .card .card-omote .inner .block--data .list--data dl dd {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.block--card .card .card-omote .inner .block--data .list--data dl dd.item__regist {
  font-family: "adobe-caslon-pro", serif;
  font-size: 11px;
}
.block--card .card .card-ura {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
}
.block--card .card .card-ura .inner {
  position: relative;
}
.block--card .card .card-ura .inner .logo {
  width: 150px;
  margin-bottom: 3px;
}
.block--card .card .card-ura .inner p {
  font-family: "adobe-caslon-pro", serif;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.01aem;
  text-align: center;
}
.block--card .card [class^=card-] {
  background: #E8E8E8;
}
.block--card .card [class^=card-]::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.15;
  width: 100%;
  height: 100%;
  background: url(/static/issue/mypage/memberscard_kYAFZngQ4V/bg__texture.webp);
  background-size: cover;
}
.block--card .card [class^=card-] .line {
  position: absolute;
  left: 50%;
  width: 85%;
  height: 3px;
  background: #000;
  transform: translateX(-50%);
}
.block--card .card [class^=card-] .line.top {
  top: 25px;
}
.block--card .card [class^=card-] .line.top::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  width: 100%;
  height: 1px;
  background: #000;
}
.block--card .card [class^=card-] .line.bottom {
  bottom: 25px;
}
.block--card .card [class^=card-] .line.bottom::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: #000;
}

.card-open .block--card {
  opacity: 1;
  pointer-events: auto;
}

.card-open.visible-back .block--card .card .card-ura {
  opacity: 0;
  transform: rotateY(180deg);
}
.card-open.visible-back .block--card .card .card-omote {
  opacity: 1;
  transform: rotateY(0deg);
}

.block--card.mode--app .block--name {
  font-family: "Unna", serif !important;
}
.block--card.mode--app .block--name .name-wrap {
  padding: 10px 0 0;
}
.block--card.mode--app .block--name .name-wrap .name {
  padding-bottom: 15px;
  font-size: min(50px, 10.6vw);
  line-height: 1;
}
.block--card.mode--app .block--data .tit, .block--card.mode--app .block--data dd {
  font-family: "Unna", serif !important;
}
.block--card.mode--app .card-ura p {
  font-family: "Unna", serif !important;
}
.block--card.mode--app .close {
  top: 0;
  right: -40px;
}
.block--card.mode--app .close::before, .block--card.mode--app .close::after {
  background: #ffffff;
}

@media screen and (min-width: 1px) and (max-width: 500px) {
  .block--card .card {
    width: 74%;
  }
  .block--card .card .card-omote .inner {
    padding: 6.4vw;
  }
  .block--card .card .card-omote .inner .block--name .label {
    font-size: 3vw;
  }
  .block--card .card .card-omote .inner .block--name .label > span:nth-child(2) {
    right: -1.4vw;
  }
  .block--card .card .card-omote .inner .block--name .name-wrap .name {
    font-size: min(40px, 10.6vw);
  }
  .block--card .card .card-ura .inner .logo {
    width: 40vw;
  }
  .block--card .card .card-ura .inner p {
    font-size: 3.3vw;
  }
}
@media screen and (min-width: 1px) and (max-width: 330px) {
  .block--card .card {
    height: 136vw;
  }
  .block--card .card .card-omote .inner .block--data .list--data li:first-child {
    width: 6em;
  }
  .block--card .card .card-omote .inner .block--data .list--data dl .tit {
    zoom: 0.65;
  }
}
#mypage--app section .area--user-status.status--free {
  background: #777777;
}

#mypage--app section .area--user-status.status--member {
  background: #010101;
}

@media screen and (min-width: 1px) and (max-width: 768px) {
  header h1 {
    width: 50vw;
    margin: 6px auto 20px;
  }
}