/* ========================================== */
/* base */
/* ========================================== */

body {
  font-family:"Noto Sans JP","メイリオ",Meiryo,"HiraKakuProN-W3","ヒラギノ角ゴ ProN W3",sans-serif;
  line-height:1.8;
  color:#5F6368;
  font-size:14px;
  overflow-y: scroll;
}

.container {
  max-width: 1030px;
}



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: #F198D1;
}

a:hover {
  text-decoration:none;
  color: #FF4D4D;
  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;
}

.container {
  max-width: 1030px;
}

dl,dd,p {
  margin:0;
  padding:0;
}



/* ========================================== */
/* フォント */
/* ========================================== */

.font-base {
  font-family:"Noto Sans JP","メイリオ",Meiryo,"HiraKakuProN-W3","ヒラギノ角ゴ ProN W3",sans-serif;
}

.font-accent {
  font-family: "Changa One", sans-serif;
  letter-spacing: 1px;
}

.font-xs {
  font-size: 11px;
  line-height: 1.4rem;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 200,
  'GRAD' -25,
  'opsz' 24
}

a {
  -webkit-transition:.3s ease;
  transition:.3s ease;
}

a:hover {
  text-decoration:none;
}


/* ========================================== */
/* ヘッダー */
/* ========================================== */
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  padding-top: 16px;
}

header h1 {
  max-width:192px;
  margin-bottom:0;
  line-height: 1;
}

header #header_inner {
  display: flex;
  align-items: center;
  height:64px;
  padding: 16px 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  background-color:#fff;
  max-width: 1000px;
  width: 98%;
  border-radius: 8px;
  margin: auto;
}

header .nav-link {
  padding: 0;
  border: 0;
  transition: none;
}

header a {
  color:#333333;
  transition:opacity 0.3s;
}

/* ハンバーガーボタン */
.menu-btn {
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  cursor:pointer;
  color:#000;
  background: linear-gradient(90deg, rgba(240, 94, 176, 1) 0%, rgba(246, 139, 148, 1) 60%, rgba(248, 152, 139, 1) 100%);
}

.menu-btn.btn_menu {
  position: fixed;
  z-index: 1050;
}

.menu-btn span {
  position: absolute;
  left: 11px;
  height: 4px;
  width: 28px;
  background-color: #fff;
  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: 14px;
}

.btn_menu span:nth-of-type(2) {
  top: 23px;
}

.btn_menu span:nth-of-type(3) {
  top: 32px;
}

/***** CLOSE *****/
.btn_menu.active span:nth-of-type(1) {
  top: 14px;
  width:60%;
  -webkit-transform: translate(0px,8px) rotate(-45deg);
  transform: translate(0px,8px) rotate(-45deg);
  background-color:#fff;
}

.btn_menu.active span:nth-of-type(2) {
  opacity: 0;
  top: 8px;
}

.btn_menu.active span:nth-of-type(3) {
  bottom: 0;
  width:60%;
  -webkit-transform: translate(0px,-10px) rotate(45deg);
  transform: translate(0px,-10px) rotate(45deg);
  background-color:#fff;
}



/***** 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: 991px) {
  header {
    background-color: transparent;
    position: relative;
    padding-top: 0;
  }

  header a:hover {
    color: #333333;
  }

  header .nav_inner {
    width:100%;
    max-width: inherit;
    transition: right 600ms ease-in-out;
    padding: 0 15px 80px;
  }

  header #header_inner {
    height:50px;
    padding: 12px 16px;
    box-shadow: none;
    background-color: transparent;
    width: 100%;
  }

  header h1 {
    width:136px;
  }

}


/*nav-pc*/
header .contents_list_pc {
  display: flex;
  align-items: center;
  margin-left: 46px;
  width: 100%;
  max-width: 722px;
}

header .contents_list_pc li:has(> .nav-item.nav-link) {
  position: relative;
  margin: 0 12px;
}
header .contents_list_pc li:has(> .nav-item.nav-link):first-child {
  margin-left: 0;
}

header .contents_list_pc li a {
  position: relative;
  font-size:16px;
  font-weight: bold;
  line-height:1;
}

header .contents_list_pc li a .material-symbols-outlined {
  font-size:18px;
  position: relative;
  top: 3px;
}

header .contents_list_pc li a.dropdown-toggle {
  text-align: center;
  display: inline-block;
  color: #fff;
  padding-top: 5px;
  width:144px;
  height: 40px;
  border-radius: 8px;
  background: #F05EB0;
  background: linear-gradient(90deg, rgba(240, 94, 176, 1) 0%, rgba(246, 139, 148, 1) 60%, rgba(248, 152, 139, 1) 100%);
}


header .contents_list_pc li a.nav-link {
  display: inline-block;
  text-decoration: none;
}

header .contents_list_pc li a.nav-link:not(.dropdown-toggle)::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: -3px;
  background-image: linear-gradient(to right, #F05EB0, #FCBC74);
}

.dropdown-toggle::after {
  font-family: "Material Symbols Outlined";
  content: "\e313";
  position: absolute;
  font-size: 20px;
  width: auto;
  height: auto;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
}

header .contents_list_pc li a.dropdown-toggle span {
  display: block;
  font-size: 10px;
  line-height: 1.5;
}

@media (hover: hover) {
  header .contents_list_pc li a.dropdown-toggle:hover {
    opacity: 1;
  }
  header .contents_list_pc li a.nav-link:not(.dropdown-toggle):hover::after {
    width: 100%;
  }

  header .contents_list_pc li a.nav-link:hover {
    border-bottom: none;
    color: #000000;
  }
}

@media screen and (min-width: 992px){
  header .contents_list_pc li.btn-group {
    margin-left: auto;
    margin-right: 0;
  }

  header .contents_list_pc li.btn-group:hover .dropdown-menu {
    display: block;
    margin-right: 0;
  }

  .dropdown-menu {
    background-color: #fff;
    right: -20px!important;
  }

  .dropdown-menu>div:not(:last-of-type) .dropdown-item,
  .dropdown-menu .dropdown-item:not(:last-of-type)  {
    border-bottom:solid 1px #E0E0E0;
  }
}

@media screen and (max-width: 991px){
  .dropdown-menu {
    border:none;
    padding:0px 0px 0px 30px;
    background-color:inherit;
  }

  .dropdown-menu a.nav-link.dropdown-item {
    padding-left:20px!important;
    border-top:none;
    font-size:20px;
  }
}

/*dropdown*/
.dropdown-menu {
  margin: 0;
  width: 186px;
  left: auto!important;
  border-radius: 8px;
  border: 0;
  padding: 20px;
  box-shadow: 0px 9px 12px 0 rgba(0, 0, 0, 0.16);
}

header .dropdown-menu .dropdown-item,
.nav_inner_fanclub .contents_list_sp a {
  padding: 0 0 1px 0;
  margin-bottom: 12px;
  display: inline-block;
  width: auto;
  border-bottom: 1px solid #000;
}

header .dropdown-menu li.not-login::before,
.nav_inner_fanclub .contents_list_sp li.not-login::before {
  font-family: "Material Symbols Outlined";
  content: "\e898";
  font-size: 18px;
  font-variation-settings:  'FILL' 1;
  color: #D9D0D5;
  display: inline-block;
}

header .nav_sp_inner_wrapper .fc-logo {
  background: linear-gradient(90deg, rgba(240, 94, 176, 1) 0%, rgba(246, 139, 148, 1) 60%, rgba(248, 152, 139, 1) 100%);
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 11px 0;
}

header .nav_inner_fanclub .btn {
  border:1px solid #8419F0;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.25);
  background-color: #FFF;
  margin-bottom: 10px;
  color: #8419F0;
  font-weight: bold;
}

@media screen and (min-width: 992px) {
  header .nav_inner_fanclub .btn:hover {
    color: #fff;
    border:1px solid #8419F0;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.25);
    background-color: #8419F0;
  }
}

@media screen and (max-width:991px) {

  header .nav_inner_fanclub .btn {
    border:1px solid #F05EB0;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.25);
    background-color: #FFF;
    margin-bottom: 10px;
    color: #F05EB0;
  }

}

/*nav-sp*/

header .nav_inner.open {
  right:0%;
}

header .nav_inner_header {
  height: 50px;
}

header .nav_sp_inner_wrapper {
  max-width:300px;
  width: 76.92%;
  margin:10px auto 0;
}

header .nav_sp_inner_wrapper .nav_inner_conetnts {
  margin-bottom:24px;
}


@media screen and (max-width: 991px) {
  header .nav_inner_fanclub {
    margin-top:0;
    padding: 25px 46px;
    background-color: #F4F6F7;
  }

  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-top: 12px;
    padding-bottom: 12px;
    padding-left: 8px;
    display: block;
    border-bottom: 1px solid #000;
    font-weight: bold;
    position: relative;
  }

  .contents_list_sp li a .material-symbols-outlined {
    position: relative;
    top: 4px;
    font-size: 18px;
  }

  header .nav_inner_fanclub p {
    font-size: 18px;
    padding-bottom: 0.5rem;
  }
}



/* ========================================== */
/* CONTENTS */
/* ========================================== */

.container h2 {
  font-size: 40px;
  margin:80px auto 32px;
  color: #404040;
}


@media screen and (max-width: 991px) {

  .container h2 {
    font-size:30px;
    margin: 0 auto;
  }

}


/* ========================================== */
/* フッター */
/* ========================================== */

footer {
  background: linear-gradient(2deg,rgba(167, 142, 158, 0.15) 0%, rgba(241, 152, 209, 0.45) 100%);
  padding:48px 0;
  position: relative;
}

footer .footer-about li.col-6 {
  padding-left:5px!important;
  padding-right:5px!important;
}

footer .footer-about .sns {
  width: 278px;
  display:flex;
  flex-wrap: wrap;
  margin: auto;
  gap: 12px 24px;
}

footer .footer-about .sns li {
  width: 50px;
}
footer .footer-about .sns li a {
  color: #fff;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 0;
}
footer .footer-about .sns li a span {
  font-size: 6px;
}

footer .footer-about .sns li img {
  width:100%;
  height:100%;
} 

footer .footer-about .logo {
  max-width:300px;
}


footer .footer-navigation ul {
  margin-bottom:32px;
}

footer .footer-navigation p {
  font-size:22px;
  color:#333333;
  margin-bottom:12px;
  font-family: "Changa One", sans-serif;
  letter-spacing: 1px;
}

footer .footer-navigation li {
  margin-bottom:14px;
  font-size:16px;
}

footer .footer-navigation li .material-symbols-outlined {
  font-size:18px;
  position: relative;
  top: 4px;
}

footer .footer-navigation li:before {
  content: "- ";
}

footer li a {
  color:#333333;
}


@media (hover: hover) {
  footer .footer-about .logo a:hover,
  footer li a:hover {
    opacity:0.6;
    color:#000000;
  }
}

footer ul.infolink {
  display: flex;
  justify-content: center;
  gap: 30px;
}
footer hr {
  max-width: 1200px;
  margin: auto;
  border-color: #CBC3C8;
}


footer .copy {
  font-size: 14px;
  text-align: center;
}



@media screen and (min-width: 768px) {

  footer .copy br {
    display: none;
  }
  
}

@media screen and (max-width: 767px) {

  footer .footer-about .logo {
    max-width:278px;
  }

  footer .footer-navigation p {
    font-size:16px;
    position: relative;
  }

  footer .footer-navigation p span {
    position: relative;
  }

  footer .footer-navigation p span:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 4px solid #333333;
    border-right: 4px solid #333333;
    transform: rotate(-45deg);
    position: absolute;
    right: -20px;
    top: 70%;
    margin-top: -5px;
    transition-property: all;
    transition-duration: .3s;
    transition-timing-function: ease-out;
    transition-delay: .1s;
  }

  footer .footer-navigation p.select span:after {
    transform: rotate(135deg);
    top: 50%;
  }

  footer .footer-navigation ul {
    display: block;
  }

  footer .footer-navigation p.select ul {
    display: none;
  }

  footer .footer-navigation li {
    margin-left: 15px;
  }

  footer hr {
    margin: 0 15px;
  }

  footer ul.infolink {
    flex-direction: column;
  }

  footer .copy {
    font-size: 12px;
  } 

  footer .copy br {
    display: block;
  }

}

/* ========================================== */
/* 共通カラー */
/* ========================================== */
/* ベースカラー */
/* 背景 */
.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: 9999px;
}
.btn-main {
  color: #fff !important;
background: #F05EB0;
background: linear-gradient(90deg, rgba(240, 94, 176, 1) 0%, rgba(243, 117, 161, 1) 25%, rgba(247, 146, 143, 1) 75%, rgba(249, 162, 133, 1) 100%);
border-color: transparent;
font-weight: bold;
}
/*
@media screen and (min-width: 768px) {
.btn-main {
  color: #333 !important;
  background-color: transparent;
  background-image: none;
  border-color: #333;
}
}
*/
@media (hover: hover) {
.btn-main:hover {
  color: #fff !important;
background: #F05EB0;
background: linear-gradient(90deg, rgba(240, 94, 176, 1) 0%, rgba(243, 117, 161, 1) 25%, rgba(247, 146, 143, 1) 75%, rgba(249, 162, 133, 1) 100%);
border-color: transparent;
}
}

a.btn {
  text-decoration:none;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}


/* アラート */
.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:#5f6368;
  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;
}

/*--------------------------------
 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;
}