/* ========================================== */
/* base */
/* ========================================== */

body {
  font-family:"M PLUS Rounded 1c","メイリオ",Meiryo,"HiraKakuProN-W3","ヒラギノ角ゴ ProN W3",sans-serif;
  line-height:1.8;
  color: var(--default);
  font-size:14px;
  overflow-y: scroll;
}

.container {
    max-width: 1200px;
}

ul {
  padding:0px;
  margin:0;
  list-style:none;
}

ul.indent li {
  text-indent:-1em;
  padding-left:1em;
}

dt {
  font-weight:normal;
}

a {
  text-decoration:none;
  word-wrap:break-word;
  word-break: break-all;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  color: var(--pink);
}

a:hover {
  text-decoration:none;
  color: var(--pink);
  opacity: 0.8;
}
 
a:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input[type="text"],input[type="password"],input[type="email"],textarea,select{ 
  font-family: inherit;
  font-size:1em !important;
  font-weight:inherit;
    -webkit-appearance: none;
}

dl,dd,p {
  margin:0;
  padding:0;
}

/* color-list */
:root {
  --pink: #E74692;
  --blue: #00B7ED;
  --yellow: #FFF000;
  --default: #1A1A1A;
}

.body-bg {
  background:
  repeating-linear-gradient(
    -45deg,
    #fefcfd 0,
    #fefcfd 20px,
    #fdf4f8 20px,
    #fdf4f8 40px
  );
}


/* ========================================== */
/* フォント */
/* ========================================== */

.font-base {
  font-family:"M PLUS Rounded 1c","メイリオ",Meiryo,"HiraKakuProN-W3","ヒラギノ角ゴ ProN W3",sans-serif;
}

.font-accent {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  color: var(--default);
}

.font-xs {
  font-size: 11px;
  line-height: 1.4rem;
}

a {
  -webkit-transition:.3s ease;
  transition:.3s ease;
}

a:hover {
  text-decoration:none;
}

.container p,
.container a,
.container li,
.container dl,
.container span,
.container .row.justify-content-center .col-md-9 {
  transform: rotate(0.03deg);
}

/* ========================================== */
/* ヘッダー */
/* ========================================== */

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

header h1 {
  max-width: 75px;
  margin-bottom: 0;
  line-height: 1;
}

header #header_inner {
  display: flex;
  align-items: center;
  background: #fff;
  margin: 16px 15px;
  padding: 16px 46px;
  border-radius: 50px;
  border: 5px solid var(--pink);
  box-shadow: 0 3px 6px rgba(0,0,0,0.5);
}

header .nav-link {
  padding: 0;
  border: 0;
  transition: none;
}

header a {
  color:var(--default);
  transition:opacity 0.3s;
  transform: rotate(0.03deg);
}

/* ハンバーガーボタン */
.menu-btn {
  display: block;
  top: 25px;
  right: 15px;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  cursor: pointer;
  background: var(--default);
  border: 3px solid #fff;
  border-radius: 8px;
}

.menu-btn.btn_menu {
  position: fixed;
  z-index: 1050;
}

.menu-btn span {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 4px;
  width: 28px;
  background-color: var(--yellow);
  border-radius: 2px;
  display: inline-block;
  box-sizing: border-box;
  transition: transform 1ms ease-out;
}

.menu-btn p {
  position: absolute;
  bottom:0;
}

/***** OPEN *****/
.btn_menu span:nth-of-type(1) {
  top: 15px;
}

.btn_menu span:nth-of-type(2) {
  top: 25px;
}

.btn_menu span:nth-of-type(3) {
  top: 35px;
}

/***** CLOSE *****/
.btn_menu.active span:nth-of-type(1) {
  top: 16px;
  -webkit-transform: translate(0px,8px) rotate(-45deg);
  transform: translate(0px,8px) rotate(-45deg);
  background-color: var(--yellow);
}

.btn_menu.active span:nth-of-type(2) {
  opacity: 0;
  top: 8px;
}

.btn_menu.active span:nth-of-type(3) {
  bottom: 0;
  -webkit-transform: translate(0px,-10px) rotate(45deg);
  transform: translate(0px,-10px) rotate(45deg);
  background-color :var(--yellow);
}



/***** NAVI *****/
header .nav_inner {
  position: fixed;
  top:0;
  right:-100%;
  width:100%;
  max-width:412px;
  height:100vh;
  padding:0 30px;
  box-sizing: border-box;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: right 1300ms ease-out;
}


@media screen and (max-width: 1495px) {
  header {
    background-color: transparent;
    padding: 16px 15px 0;
    width: 100%;
  }

  header #header_inner {
    box-shadow: none;
  }

  header a:hover {
    color: #333333;
  }

  header .nav_inner {
    width:100%;
    max-width: inherit;
    transition: right 600ms ease-in-out;
    padding: 111px 15px 80px;
    background: url(../../images/menu-bg.png) no-repeat;
    background-size: cover;
  }

  header #header_inner {
    background-color: transparent;
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
  }

  header h1 {
    max-width:81px;
    line-height: 0.5;
  }

}


/*nav-pc*/

header .contents_list_pc {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  width: 100%;
}

header .contents_list_pc li:has(> .nav-item.nav-link) {
  position: relative;
  margin: 0 8px;
}
header .contents_list_pc li:has(> .nav-item.nav-link):first-child {
  margin-left: 0;
}

header .contents_list_pc li.not-login a {
  color: #767676;
}

header .contents_list_pc li a {
  position: relative;
  font-size: clamp(1rem, -0.536rem + 1.64vw, 1.375rem);
  font-weight: 900;
  line-height:1;
}

header .contents_list_pc li a .material-symbols-outlined {
  font-size:18px;
  position: relative;
  top: 3px;
  color: #4848D9;
}

header .contents_list_pc li a.nav-link {
  display: inline-block;
  text-decoration: none;
}

@media (hover: hover) {
  header .contents_list_pc li a.nav-link:hover {
    border-bottom: none;
    color: var(--default);
    opacity: 0.8;
  }
}

/*@media screen and (min-width: 1756px){
  header .contents_list_pc li a {
    font-size: 22px;
  }
}*/

@media screen and (min-width: 1496px){
  .menu-btn {
    display: none;
  }

  header .contents_list_pc li.btn-group {
    margin-left: 30px;
    margin-right: 0;
  }
}

header .nav_inner_fanclub .btn {
  background-color: var(--pink);
  margin-bottom: 36px;
  color: #07223C;
  font-weight: bold;
  position: relative;
  max-width: 100%;
  min-width: 150px;
  min-height: 62px;
  padding: 15px 12px;
  text-align: center;
  line-height: 2;
  border: 2px solid var(--default);
  border-radius: 16px;
}

@media screen and (min-width: 1496px) {
  header .nav_inner_fanclub .btn:hover {
    opacity: 0.8;
  }
}

/*nav-sp*/

header .nav_inner.open {
  right:0%;
}

header .nav_inner_header {
  height: 50px;
}

header .nav_sp_inner_wrapper {
  width: 100%;
  margin: 12px auto 0;
  background: #fff;
  padding: 32px 12px;
  border-radius: 16px;
  border: 3px solid var(--default);
  box-shadow: 4px 4px 0 var(--default);
}

header .nav_sp_inner_wrapper .nav_inner_conetnts {
  margin-bottom:24px;
}


@media screen and (max-width: 1495px) {
  header .contents_list_pc {
    display: none;
  }

  /* タブメニュー */
  .tab-menu {
    display: flex;
  }

  .tab-menu > div {
    flex: 1;
    padding: 12px 49px;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: .3s;
    line-height: 1;
    border-radius: 16px 16px 0 0;
    background: rgba(225, 225, 225, 0.8);
    border: 3px solid #483425;
    color: #483425;
  }

  .tab-menu > div span {
    display: block;
    font-size: 10px;
  }

  .tab-menu > div.of-tab.active {
    background: #FFE14A;
    color: var(--default);
    border: 3px solid var(--default);
  }

  .tab-menu > div.fc-tab.active {
    background: var(--blue);
    color: var(--default);
    border: 3px solid var(--default);
  }

  /* 初期状態は全て非表示 */
  .nav_inner_conetnts,
  .nav_inner_fanclub {
    display: none !important;
  }

  /* activeのみ表示 */
  .nav_inner_conetnts.active,
  .nav_inner_fanclub.active {
    display: block !important;
  }

  header .nav_inner_fanclub {
    margin-top:0;
  }

  header .nav_sp_inner_wrapper .nav_inner_fanclub .contents_list_sp {
    /*display: flex;
    flex-wrap: wrap;*/
  }

  header .nav_sp_inner_wrapper .nav_inner_fanclub .contents_list_sp li {
    /*width: 50%;*/
  }

  .contents_list_sp li a {
    padding: 15px 12px 15px 60px;
    display: block;
    font-weight: 900;
    font-size: 22px;
    position: relative;
    background: #FFE14A;
    margin-bottom: 16px;
    border: 2px solid var(--default);
    border-radius: 16px;
    box-shadow: 4px 4px 0px var(--default);
    transform: rotate(-0.5deg) translateZ(0);
  }

  .contents_list_sp li a:before {
    content: "";
    width: 38px;
    height: 38px;
    display: block;
    background: url(../../images/icon/icon-news.svg) no-repeat;
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  header .nav_inner .job-contact.faq {
    transform: rotate(-0.5deg) translateZ(0);
  }

  header .nav_inner .job-contact {
    padding: 15px 12px 15px 60px;
    display: block;
    font-weight: 900;
    font-size: 22px;
    position: relative;
    background: var(--default);
    margin: 26px 12px 26px;
    border: 2px solid #fff;
    border-radius: 16px;
    box-shadow: 4px 4px 0px #fff;
    transform: rotate(0.5deg) translateZ(0);
    color: #fff;
  }

  header .nav_inner .job-contact:before {
    content: "";
    width: 38px;
    height: 38px;
    display: block;
    background: url(../../images/icon/icon-business.svg) no-repeat;
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  header .nav_inner .job-contact.faq:before {
    content: "";
    width: 38px;
    height: 38px;
    display: block;
    background: url(../../images/icon/icon-faq.svg) no-repeat;
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  header .nav_inner .job-contact:after {
    font-family: "Material Symbols Outlined";
    content: "\e5cc";
    position: absolute;
    color: #fff;
    font-size: 20px;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
  }

  header .nav_inner .header-copy {
    font-size: 12px;
    text-align: center;
    color: var(--default);
    display: inline-block;
    width: 100%;
  }

  /* 各項目ごとアイコン */

  .nav_inner_conetnts .contents_list_sp li:nth-child(2) a {
    background: #FF2D8A;
    transform: rotate(0.5deg) translateZ(0);
  }

  .nav_inner_conetnts .contents_list_sp li:nth-child(3) a {
    background: #3FC6F3;
  }

  .nav_inner_conetnts .contents_list_sp li:nth-child(4) a {
    background: #FF8A3F;
    transform: rotate(0.5deg) translateZ(0);
  }

  .nav_inner_conetnts .contents_list_sp li:nth-child(5) a {
    background: #9CFF5A;
  }

  .nav_inner_conetnts .contents_list_sp li:nth-child(6) a {
    background: #7D3FFF;
    color: #fff;
    transform: rotate(0.5deg) translateZ(0);
  }

  .nav_inner_conetnts .contents_list_sp li:nth-child(7) a {
    background: #3FC6F3;
  }

  /* fc menu */
  .nav_inner_fanclub .contents_list_sp li:first-child a {
    background: #FF2D8A;
  }

  /*.nav_inner_fanclub .contents_list_sp li:nth-child(2) a {
    background: #9CFF5A;
    transform: rotate(0.5deg) translateZ(0);
  }*/

  .nav_inner_fanclub .contents_list_sp li:nth-child(2) a {
    background: #FF8A3F;
    transform: rotate(-0.5deg) translateZ(0);
  }

  .nav_inner_fanclub .contents_list_sp li:nth-child(3) a {
    background: #3FC6F3;
    transform: rotate(0.5deg) translateZ(0);
  }

  /* 各項目ごとアイコン */

  .nav_inner_conetnts .contents_list_sp li:first-child a:before {
    top: 8px;
  }

  .nav_inner_conetnts .contents_list_sp li:nth-child(2) a:before {
    background: url(../../images/icon/icon-schedule.svg) no-repeat;
    top: -2px;
  }

  .nav_inner_conetnts .contents_list_sp li:nth-child(3) a:before {
    background: url(../../images/icon/icon-goods.svg) no-repeat;
  }

  .nav_inner_conetnts .contents_list_sp li:nth-child(4) a:before {
    background: url(../../images/icon/icon-profile.svg) no-repeat;
    top: -2px;
  }

  .nav_inner_conetnts .contents_list_sp li:nth-child(5) a:before {
    background: url(../../images/icon/icon-music.svg) no-repeat;
    top: -2px;
  }

  .nav_inner_conetnts .contents_list_sp li:nth-child(6) a:before {
    background: url(../../images/icon/icon-musicvideo.svg) no-repeat;
    top: -3px;
  }

  .nav_inner_conetnts .contents_list_sp li:nth-child(7) a:before {
    background: url(../../images/icon/icon-contact.svg) no-repeat;
    top: 5px;
  }

  /* fc menu */

  .nav_inner_fanclub .contents_list_sp li:first-child a:before {
    background: url(../../images/icon/icon-movie.svg) no-repeat;
  }

  /*.nav_inner_fanclub .contents_list_sp li:nth-child(2) a:before {
    background: url(../../images/icon/icon-ticket.svg) no-repeat;
  }

  .nav_inner_fanclub .contents_list_sp li:nth-child(2) a:before {
    background: url(../../images/icon/icon-download.svg) no-repeat;
  }*/

  .nav_inner_fanclub .contents_list_sp li:nth-child(2) a:before {
    background: url(../../images/icon/icon-special.svg) no-repeat;
  }

  .nav_inner_fanclub .contents_list_sp li:nth-child(3) a:before {
    background: url(../../images/icon/icon-contact.svg) no-repeat;
  }

  /* FC btn */

  .nav_inner_fanclub .header-btn-area {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 16px;
    margin-bottom: 36px;
  }

  .nav_inner_fanclub .header-btn {
    display: inline-block;
    width: 100%;
    height: 62px;
    position: relative;
    border: 2px solid var(--default);
    border-radius: 16px;
    text-align: center;
    padding: 13px 0;
    box-shadow: 4px 4px 0px var(--default);
    background: var(--pink);
    font-size: 18.5px;
    font-weight: 900;
    transform: translateZ(0);
  }

  .nav_inner_fanclub .header-btn:nth-child(2) {
    background: var(--blue);
  }

  .nav_inner_fanclub .header-btn span {
    display: inline-block;
    position: relative;
    padding-left: 38px;
  }

  .nav_inner_fanclub .header-btn span:before {
    position: absolute;
    content: "";
    width: 32px;
    height: 32px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }

  .nav_inner_fanclub .header-btn.join span:before,
  .nav_inner_fanclub .header-btn.mypage span:before {
    background: url(../../images/icon/icon-mypage.svg) no-repeat center/32px;
  }
  
  .nav_inner_fanclub .header-btn.login span:before {
    background: url(../../images/icon/icon-login.svg) no-repeat center/32px;
  }

  .nav_inner_fanclub .header-btn.logout span:before {
    background: url(../../images/icon/icon-logout.svg) no-repeat center/32px;
  }

  .contents_list_sp li a:after {
    font-family: "Material Symbols Outlined";
    content: "\e5cc";
    position: absolute;
    color: var(--default);
    font-size: 20px;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav_inner_conetnts .contents_list_sp li:nth-child(6) a:after {
    color: #fff;
  }

}

@media screen and (max-width: 325px) {
  .tab-menu > div {
    max-width: 145px;
    padding: 12px 16px;
  }

  .contents_list_sp li a {
    font-size: 16px;
  }

  .contents_list_sp li a,
  header .nav_inner .job-contact {
    font-size: 16px;
  }

  .nav_inner_fanclub .header-btn-area {
    margin-bottom: 26px;
  }

  .nav_inner_fanclub .header-btn {
    font-size: 14px;
    padding: 16px 0;
  }

  .nav_inner_fanclub .header-btn span {
    padding-left: 32px;
  }

  .nav_inner_fanclub .header-btn span:before {
    width: 26px;
    height: 26px;
  }

  .nav_inner_fanclub .header-btn.join span:before, 
  .nav_inner_fanclub .header-btn.mypage span:before,
  .nav_inner_fanclub .header-btn.logout span:before {
    background-size: 26px;
  }
}

/* ========================================== */
/* CONTENTS */
/* ========================================== */

.container h2 {
  margin:50px auto;
}


@media screen and (max-width: 767px) {

  .top-main-contents .container h2 {
    height: 60px;
  }

  .container h2 {
    font-size:26px;
    margin: 50px auto 0;
    width: 100%;
    min-width: 290px;
    max-width: 1170px;
    height: 80px;
  }

  .container h2 img {
    height: 100%;
    object-fit: cover;
    object-position: top left;
  }

}


/* ========================================== */
/* フッター */
/* ========================================== */

footer {
  display: block;
  width: 100%;
  padding: 0 0 64px;
  background: linear-gradient(0deg,rgba(43, 3, 22, 1) 0%, rgba(5, 3, 34, 1) 50%, rgba(1, 56, 72, 1) 100%);
}

footer .container {
  padding-top: 45px;
}

footer .sns-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  width: 100%;
}

footer .sns-box:before {
  content: "";
  width: 150px;
  height: 150px;
  display: block;
  background: rgba(231, 70, 146, 0.26);
  position: absolute;
  left: -20%;
  top: -20%;
  z-index: -5;
  border-radius: 999px;
  filter: blur(1.6rem);
}

footer .sns-box:after {
  content: "";
  width: 130px;
  height: 130px;
  display: block;
  background: rgba(0, 183, 237, 0.15);
  position: absolute;
  right: -20%;
  bottom: -10%;
  z-index: -5;
  border-radius: 999px;
  filter: blur(1.6rem);
}

footer .sns-box p:first-child {
  font-size: 26px;
  color: var(--pink);
  font-weight: 800;
}

footer .sns-box p:nth-child(2) {
  font-size: 38px;
  color: var(--blue);
  font-weight: 800;
  text-shadow: #fff 0 0 20px;
}

footer .sns-box .sns-link-list {
  display: flex;
  gap: 26px;
  margin-bottom: 0;
  margin-top: 20px;
}

footer .sns-box .sns-link-list .sns-link-item {
  display: block;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50px;
}

footer .sns-box .sns-link-list .sns-link-item img {
  margin-bottom: 0;
}

footer .sns-box .sns-link-list li {
  margin-right: 0;
}

footer hr {
  border-top: 5px solid var(--pink);
  margin: 40px 0;
}

footer img {
  display: block;
  max-width: 385px;
  margin: 0 auto 40px;
}

footer .ft-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

footer .ft-menu li {
  display: inline-block;
  padding-right: 12px;
  position: relative;
}

footer .ft-menu li:after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  position: absolute;
  background: #fff;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

footer .ft-menu li:last-child:after {
  display: none;
}

footer .ft-menu li a {
  color: #fff;
  font-size: 16px;
  transform: rotate(0.03deg);
}

footer .ft-menu li a:hover {
  color: #fff;
  opacity: 0.8;
}

footer .copy {
  font-size: 14px;
  color: #fff;
  transform: rotate(0.03deg);
  text-align: center;
}

footer .copy br {
  display: none;
}

@media screen and (max-width: 991px) {

  footer li {
    display:inline-block;
    margin-right:18px;
  }

  footer .sns-box:before {
    width: 100px;
    height: 100px;
    left: 0;
    top: -10%;
  }

  footer .sns-box:after {
    width: 100px;
    height: 100px;
    right: 0;
    bottom: 0;
  }

  footer .copy br {
    display: block;
  }

  footer .ft-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  footer .ft-menu li {
    padding-right: 0;
  }

  footer .ft-menu li:after {
    display: none;
  }

  footer .copy {
    text-align: left;
  }
  
}

@media screen and (max-width: 767px) {

footer li {
  display:block;
  margin:0 0 16px;
}
  
}

@media screen and (max-width: 333px) {
  footer .sns-box p:nth-child(2) {
    font-size: 35px;
  }
}

/* ========================================== */
/* 共通カラー */
/* ========================================== */
/* ベースカラー */
/* 背景 */
.bg-base {
  /* サイト全体の背景色 */
  background-color: #fff;
}
.bg-toggle {
  /* サイト全体の背景色 */
  background-color: #333;
}

/* メインカラー */
/* 背景 */
.bg-main {
  /* 主にヘッダの背景色 */
  background-color: #212121;
}
/* サブカラー */
.bg-sub {
  /* 主にフッタの背景色 */
  background-color: #F0F0F0;
}
/* アクセントカラー */
/* 任意でUIパーツの色を増やしたいときに定義を増やす */
.bg-accent-light-gray {
  background-color: #f8f8f8;
}
.bg-accent-light-red {
  background-color: #efdfdf;
}

/* テキスト */
.text-base {
  color: #fff;
}
.text-main {
  color: #333;
}
.text-accent-light-gray {
  color: #c0c0c0;
}
.red {color:#FF0004;}

/* ========================================== */
/* UIパーツ別 */
/* ========================================== */
/* ボタン */
.btn {
  border-radius: 2rem;
}
.btn-main {
  color: #fff !important;
  background-color: var(--default);
  border-color: var(--default);
}
@media screen and (min-width: 768px) {
.btn-main {
  color: var(--default) !important;
  background-color: #fff;
  background-image: none;
  border-color: var(--default);
}
}
.btn-main:hover {
  color: #fff !important;
  background-color: var(--default);
  border-color: var(--default);
}

a.btn {
  text-decoration:none;
}


/* アラート */
.alert-main {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-registration-mail.alert,
.alert-mypage-change-email.alert {
  border: none;
}
.alert-registration-mail.alert .alert-heading,
.alert-mypage-change-email.alert .alert-heading {
  color: #ff0000;
}
.alert-registration-mail.alert .alert-body,
.alert-mypage-change-email.alert .alert-body {
  color: #808080;
}

/* バッジ（ラベル） */
.badge-history-status.badge {
  font-size: 100%;
  font-weight: normal;
  padding: .5em 1em;
}
.badge-history-status.badge-secondary {
  color: #343a40;
  background-color: #e9ecef;
}

/* ========================================== */
/* 画面別 */
/* ========================================== */


/* マイページ履歴 */
@media screen and (min-width: 768px) {
.row-history-left {
  border-right: 1px solid rgba(0,0,0,.1);
}
}


/*--------------------
  MYPAGE
--------------------*/
@media screen and (min-width: 768px) {
.row-history-left {
  border-right: 1px solid rgba(0,0,0,.1);
}
}

.mypage-plan-contract-footer {
    display: none;
}

.uploaded-photo-status-label, .shipping-history-status-label, .ec-history-status-label, .ticket-history-status-label, .ticket-history-ticket-status-label {
    border-radius: 2rem;
  padding: 6px 1em;
}

/*membership-card*/

.membership-card-image .membership-card-image-on-member-number {
right: 3%;
bottom: 3%;
color:#fff;
font-size: 16px;
}

@media screen and (max-width: 575px) {
.membership-card-image .membership-card-image-on-member-number {
font-size: 4vw;
}
}

/*------------------------
 pagination上余白
------------------------*/
ul.pagination {
  margin-top: 80px;
  flex-wrap: wrap;
}

/*--------------------------------
 form 内容確認ページ
--------------------------------*/
form dd{
  margin-bottom:1rem;
}
form dt label{
  font-weight: 700;
}

/*--------------------
  STORE TAG
--------------------*/
#store .store_tag ul{
  text-align: left!important;
  display: inline;
}

#store .store_tag ul li{
  padding: 0!important;
  margin-left: 1em;
}