@charset "UTF-8";
body {
  background-color: #f5f5f5;
}

a {
  color: #000;
}
a:hover {
  color: #444;
}

.btn--main {
  background: #0086CD;
  color: #fff;
}

.btn--main:hover {
  background: #c5e9ff;
  color: #0086CD;
}

.btn--sub {
  background: #fff;
  color: #000;
}

.btn--sub:hover {
  color: #fff;
  background: #0086CD;
}

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

.btn--chevron {
  color: #000;
}
.btn--chevron::after {
  border-color: #000;
}
.btn--chevron:hover {
  color: #444;
}
.btn--chevron:hover::after {
  border-color: #444;
}

.btn--chevron-left {
  color: #000;
}
.btn--chevron-left::after {
  border-color: #000;
}
.btn--chevron-left:hover {
  color: #444;
}
.btn--chevron-left:hover::after {
  border-color: #444;
}

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

.section--login {
  padding-top: 0;
}
.section--login .stop__ara {
  background: #ccc;
  text-align: center;
  padding: 1em 0;
  color: #fff;
  margin-top: 3em;
}

.wrap {
  background: #f5f5f5;
}

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

/* デジタル会員証 */
.block--card {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  -webkit-transition: none;
  transition: none;
  cursor: pointer;
  background-color: #0063b3;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0063b3), color-stop(50%, #0086cd), to(#a9e1ff));
  background-image: -webkit-linear-gradient(top, #0063b3 0%, #0086cd 50%, #a9e1ff 100%);
  background-image: linear-gradient(180deg, #0063b3 0%, #0086cd 50%, #a9e1ff 100%);
}
.block--card::before {
  content: "";
  width: 150%;
  height: 150%;
  display: block;
  position: absolute;
  background: url(/static/ligareaz/official/common/bg_01.jpg) no-repeat center;
  background-size: cover;
  mix-blend-mode: luminosity;
  top: 0;
  left: 50%;
  opacity: 0.2;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: sky_bg_01 10s linear 0s infinite;
          animation: sky_bg_01 10s linear 0s infinite;
  -o-object-fit: cover;
     object-fit: cover;
}
.block--card::after {
  content: "";
  width: 150%;
  height: 150%;
  top: 0;
  display: block;
  position: absolute;
  background: url(/static/ligareaz/official/common/bg_02.jpg) no-repeat center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: 0.2;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: sky_bg_02 10s linear 0s infinite;
          animation: sky_bg_02 10s linear 0s infinite;
  -o-object-fit: cover;
     object-fit: cover;
}
.block--card .card {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 420px;
  z-index: 3;
}
.block--card .card .close {
  position: absolute;
  width: 85px;
  height: 85px;
  right: -41px;
  top: -40px;
  background: url(/static/ligareaz/fanclub/common/useropition/heart_cloud01.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
  -webkit-transform: rotate(9deg);
          transform: rotate(9deg);
  z-index: 11;
  -webkit-filter: drop-shadow(5px 6px 13px rgba(0, 41, 154, 0.2));
          filter: drop-shadow(5px 6px 13px rgba(0, 41, 154, 0.2));
  -webkit-animation: 3s fuwafuwa_sp infinite;
          animation: 3s fuwafuwa_sp infinite;
}
.block--card .card .close::before, .block--card .card .close::after {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  background: #0086CD;
  position: absolute;
  border-radius: 10px;
  top: 46%;
  left: 40%;
}
.block--card .card .inner {
  -webkit-box-shadow: 3px 3px 10px rgba(0, 27, 101, 0.2);
          box-shadow: 3px 3px 10px rgba(0, 27, 101, 0.2);
  padding: 20px;
  border-radius: 10px;
  z-index: 10;
  position: relative;
  background-color: transparent;
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 40% 20%, rgba(255, 255, 255, 0.4));
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 40% 20%, rgba(255, 255, 255, 0.4));
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  height: 265px;
}
.block--card .card .inner .shine {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}
.block--card .card .inner::before {
  content: "";
  width: 320px;
  height: 200px;
  position: absolute;
  top: -30px;
  right: -140px;
  opacity: 0.4;
  background: url(/static/ligareaz/fanclub/common/mypage/cloud.svg) no-repeat center;
  background-size: contain;
  z-index: -1;
}
.block--card .card .inner::after {
  content: "";
  width: 200px;
  height: 140px;
  position: absolute;
  bottom: -12px;
  right: -90px;
  opacity: 0.8;
  background: url(/static/ligareaz/fanclub/common/mypage/cloud_solid.svg) no-repeat center;
  background-size: contain;
  z-index: -1;
}
.block--card .card .inner .logo {
  width: 115px;
  position: relative;
  margin-bottom: 60px;
}
.block--card .card .inner .logo::before {
  content: "";
  width: 230px;
  height: 160px;
  position: absolute;
  top: -70px;
  left: -60px;
  background: url(/static/ligareaz/fanclub/common/mypage/cloud.svg) no-repeat center;
  background-size: contain;
  z-index: -1;
}
.block--card .card .inner .logo img {
  z-index: 1;
}
.block--card .card .inner > p {
  font-size: 24px;
  font-family: "philosopher", sans-serif;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin-bottom: 35px;
}
.block--card .card .inner .list--data {
  position: relative;
  text-align: left;
}
.block--card .card .inner .list--data li {
  margin-bottom: 10px;
}
.block--card .card .inner .list--data .tit {
  font-family: philosopher, sans-serif;
  color: #ffffff;
  opacity: 0.7;
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.1em;
}
.block--card .card .inner .list--data dt, .block--card .card .inner .list--data dd {
  display: inline-block;
}
.block--card .card .inner .list--data dt {
  width: 7.5em;
}
.block--card .card .inner .list--data dd {
  font-size: 15px;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.block--card .card .inner .list--data .item__rgist {
  color: #405060;
  font-size: 15px;
}
.block--card .card .inner .list--data::before {
  content: "";
  width: 340px;
  height: 190px;
  position: absolute;
  bottom: -90px;
  left: -180px;
  background: url(/static/ligareaz/fanclub/common/mypage/cloud.svg) no-repeat center;
  background-size: contain;
  z-index: -1;
  opacity: 0.2;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@-webkit-keyframes shine {
  0% {
    left: -75%;
  }
  20% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

@keyframes shine {
  0% {
    left: -75%;
  }
  20% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
@-webkit-keyframes sky_bg_01 {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.1) translateX(-50%);
            transform: scale(1.1) translateX(-50%);
  }
  100% {
    opacity: 0.2;
    -webkit-transform: scale(1) translateX(-50%);
            transform: scale(1) translateX(-50%);
  }
}
@keyframes sky_bg_01 {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.1) translateX(-50%);
            transform: scale(1.1) translateX(-50%);
  }
  100% {
    opacity: 0.2;
    -webkit-transform: scale(1) translateX(-50%);
            transform: scale(1) translateX(-50%);
  }
}
@-webkit-keyframes sky_bg_02 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
    -webkit-transform: scale(1.1) translateX(-50%);
            transform: scale(1.1) translateX(-50%);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1) translateX(-50%);
            transform: scale(1.1) translateX(-50%);
  }
}
@keyframes sky_bg_02 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
    -webkit-transform: scale(1.1) translateX(-50%);
            transform: scale(1.1) translateX(-50%);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1) translateX(-50%);
            transform: scale(1.1) translateX(-50%);
  }
}
@-webkit-keyframes fuwafuwa_sp {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(8deg);
            transform: translateY(0) rotate(8deg);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(8deg);
            transform: translateY(-10px) rotate(8deg);
  }
}
@keyframes fuwafuwa_sp {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(8deg);
            transform: translateY(0) rotate(8deg);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(8deg);
            transform: translateY(-10px) rotate(8deg);
  }
}
.card-open .block--card .card .close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.card-open .block--card .card .close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.card-open .block--card .card .shine {
  -webkit-animation: shine 4s infinite 0.4s;
          animation: shine 4s infinite 0.4s;
}

.block--attention {
  font-size: 14px;
  border: 1px solid #0086CD;
  padding: 20px;
  border-radius: 6px;
  background: #fff;
  line-height: 1.6;
}
.block--attention a {
  color: #0086CD;
  padding-bottom: 2px;
  border-bottom: 2px solid;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
.block--attention a:hover {
  border: none;
}
.block--attention .txt {
  color: #0386cd;
  font-size: 1.3em;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
}
.block--attention .txt > span {
  display: block;
  font-size: 0.65em;
  margin-top: 3px;
}
.block--attention .list--attention {
  margin-top: 2em;
}
.block--attention .list--attention li {
  padding: 0 0 0 1em;
  text-indent: -1em;
  font-size: 11px;
  text-align: left;
  line-height: 1.4;
}
.block--attention .list--attention li::before {
  content: none;
}

.list--menu.list--useroption .list--menu__artist_name {
  font-weight: bold;
  padding: 1.5em 0 1em;
  font-size: 1.1em;
}
.list--menu.list--useroption .inner {
  width: 35%;
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 1em 0;
  position: relative;
}
.list--menu.list--useroption .inner .menu__status {
  width: 230%;
  right: -190%;
}
.list--menu.list--useroption .inner .menu__status .btn {
  text-align: right;
  margin: 0 0 0 auto;
}
.list--menu.list--useroption .inner .menu__status .btn.disabled {
  opacity: 0.5;
}
.list--menu.list--useroption .inner .menu__status .btn .btn--main,
.list--menu.list--useroption .inner .menu__status .btn .btn--sub {
  min-width: inherit;
  font-size: 14px;
  line-height: 1;
  padding: 0.5em 1.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn--entry a {
  border: none;
}
.btn--entry a::after {
  border-color: #0086CD;
}

.page--useroption section {
  max-width: 500px;
}
.page--useroption .btn--main, .page--useroption .btn--sub {
  width: 100%;
}
.page--useroption .list--attention {
  color: #f33;
  margin-bottom: 10px;
}
.page--useroption .list--attention li {
  padding: 0 0 0 1em;
  text-indent: -1em;
  font-size: 13px;
  text-align: left;
  line-height: 1.4;
}
.page--useroption .list--attention li::before {
  list-style: none;
}
.page--useroption .list--attention li::before {
  content: none;
}

.page--useroption_list .member-add {
  margin-bottom: 5em;
}
.page--useroption_list .member-add .block {
  background: #fff;
  text-align: center;
  padding: 2em 4em;
}
.page--useroption_list .member-add .block .form--post {
  margin: 0 auto;
}
.page--useroption_list .member-add .block .form--post dd {
  margin-bottom: 0;
}
.page--useroption_list .member-add .block .form__select {
  width: 80%;
}
.page--useroption_list .member-add .block .btn {
  margin-bottom: 0;
}
.page--useroption_list .block--attention {
  padding: 20px;
  background: #fff0ea;
  color: #f33;
  border: 1px solid #F33;
  margin: 0 auto 40px;
}
.page--useroption_list .block--attention .box .tit {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: bold;
}
.page--useroption_list .block--attention .box .list--attention li {
  font-size: 13px;
  text-indent: -1em;
  padding-left: 1em;
}
.page--useroption_list .block--resume {
  padding: 20px;
  background: #e2f5ff;
  color: #0086CD;
  border: 1px solid #0086CD;
  margin: 0 auto 40px;
  border-radius: 6px;
}
.page--useroption_list .block--resume .box .tit {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: bold;
}
.page--useroption_list .block--resume .box .list--resume li {
  font-size: 13px;
  text-indent: -1em;
  padding-left: 1em;
}

.txt--attention {
  color: #f33;
  font-size: 14px;
  margin-top: -1em;
  text-indent: -1em;
  padding-left: 1em;
}

.list--menu li.target_blank a::after {
  content: "";
  position: absolute;
  top: 50%;
}

.page--useroption_list .member-add .block .btn.useroption .btn--main {
  background: #999;
  pointer-events: none;
}
.page--useroption_list .member-add .block .btn.useroption.active .btn--main {
  background: #0086CD;
  pointer-events: all;
}
.page--useroption_list .member-add .block .btn.useroption.active:hover .btn--main {
  background: #c5e9ff;
}

@media screen and (min-width: 1px) and (max-width: 960px) {
  .block--card::before, .block--card::after {
    width: 100%;
    height: 100%;
  }
  .block--card .card {
    width: 90%;
  }
  .block--card .card .close {
    right: -7px;
    top: -48px;
  }
  .block--card .card .inner {
    height: auto;
    padding: 18px;
  }
  .block--card .card .inner::before {
    width: 76vw;
    height: 50vw;
    top: -9vw;
    right: -36vw;
  }
  .block--card .card .inner::after {
    width: 41vw;
    height: 23vw;
    bottom: -1vw;
    right: -21vw;
  }
  .block--card .card .inner .logo {
    width: 25vw;
    margin-bottom: 14vw;
  }
  .block--card .card .inner .logo::before {
    width: 53vw;
    height: 35vw;
    top: -17vw;
    left: -16vw;
  }
  .block--card .card .inner > p {
    font-size: 5vw;
    margin-bottom: 9vw;
  }
  .block--card .card .inner .list--data::before {
    width: 76vw;
    height: 47vw;
    bottom: -21vw;
    left: -44vw;
  }
  .block--card .card .inner .list--data li {
    margin-bottom: 5px;
  }
  .block--card .card .inner .list--data .tit {
    font-size: 10px;
  }
  .block--card .card .inner .list--data dd {
    font-size: 13px;
  }
  .page--useroption section {
    max-width: 100%;
  }
  .txt--attention {
    font-size: 12px;
  }
  .page--useroption_list .member-add {
    margin-bottom: 3em;
  }
  .page--useroption_list .member-add .block {
    padding: 2em 1.5em;
  }
  .page--useroption_list .member-add .block .btn {
    margin-top: 1em;
  }
  .page--useroption_list .member-add .block .btn--main {
    min-width: 90%;
  }
  .page--useroption_list .member-add .block .form__select {
    width: 90%;
  }
}
@media screen and (min-width: 756px) and (max-width: 961px) {
  .block--card .card {
    width: 450px;
  }
  .block--card .card .inner {
    height: 300px;
  }
  .block--card .card .inner > p {
    font-size: 26px;
    margin-bottom: 35px;
  }
  .block--card .card .inner::before {
    width: 75vw;
    height: 30vw;
  }
  .block--card .card .inner::after {
    width: 36vw;
  }
  .block--card .card .inner .logo {
    width: 15vw;
    margin-bottom: 70px;
  }
  .block--card .card .inner .logo::before {
    width: 38vw;
    height: 22vw;
    top: -11vw;
    left: -11vw;
  }
  .block--card .card .inner .list--data::before {
    width: 46vw;
    height: 32vw;
    bottom: -21vw;
    left: -26vw;
  }
}
/* SP */
/* tablet */
@media screen and (min-width: 570px) and (max-width: 960px) {
  .page--mypage h1.logo {
    width: 110px;
    margin-bottom: 5px;
  }
}
.list--menu .list--notes {
  padding-top: 0.5em;
  margin-bottom: 0;
}
.list--menu .list--notes li {
  border: none;
  margin-bottom: 0.5em;
}
.list--menu .list--notes li a {
  display: inline-block;
  text-decoration: underline;
  font-size: 11px;
  padding: 0;
  text-indent: 0;
}
.list--menu .list--notes li a::after {
  display: none;
}

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

/* 非会員 */
#mypage--app section .area--user-status.status--free {
  background: #999;
}

/* 有料会員 */
#mypage--app section .area--user-status.status--member {
  background: #1f100a;
}

@media screen and (min-width: 1px) and (max-width: 768px) {
  header h1 {
    width: 50vw;
    margin: 6px auto 20px auto;
  }
}
.txt--suspended p {
  background: #ccc;
  color: #fff;
  padding: 1em;
  text-align: center;
  margin-bottom: 0.5em;
}

.txt--suspended span {
  display: block;
  margin-bottom: 2em;
  font-size: 0.9em;
}/*# sourceMappingURL=mypage-service.css.map */