/* ========================================== */
/* 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: #4848D9;
}

a:hover {
  text-decoration:none;
  color: #4848D9;
  /*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: "BIZ UDMincho", serif;
}

.font-xs {
  font-size: 11px;
  line-height: 1.4rem;
}

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:135px;
  margin-bottom:0;
  line-height: 1;
}

header #header_inner {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 16px 20px;
  border-bottom: 6px solid #E8E8E8;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  max-width: 1000px;
  width: 98%;
  margin: auto;
}

header .nav-link {
  padding: 0;
  border: 0;
  transition: none;
}

header a {
  color:#07223C;
  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(1deg,rgba(129, 146, 232, 1) 0%, rgba(98, 119, 227, 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: 8px 15px 80px;
  }

  header #header_inner {
    height:56px;
    padding: 12px 16px;
    box-shadow: none;
    background-color: transparent;
    width: 100%;
  }

  header h1 {
    max-width:136px;
    line-height: 0.5;
  }

}


/*nav-pc*/
header .contents_list_pc {
  display: flex;
  align-items: center;
  margin-left: auto;
  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;
  color: #4848D9;
}

header .contents_list_pc li a.dropdown-toggle {
  text-align: center;
  display: inline-block;
  color: #fff;
  padding-top: 5px;
  width:144px;
  height: 40px;
  background: linear-gradient(1deg,rgba(129, 146, 232, 1) 0%, rgba(98, 119, 227, 1) 100%);
  font-size: 15px;
  padding-right: 10px;
}


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;
  transition: width 0.3s;
  background-color: #4848D9;
}

.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;
  font-weight: normal;
}

@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: 30px;
    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;
  font-weight: normal;
}

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(1deg,rgba(129, 146, 232, 1) 0%, rgba(98, 119, 227, 1) 100%);
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  padding: 11px 0;
}

header .nav_inner_fanclub .btn {
  border:1px solid #4848D9;
  background-color: #FFF;
  margin-bottom: 10px;
  color: #07223C;
  font-weight: bold;
  border-radius: 0;
  position: relative;
}

header .nav_inner_fanclub .btn:after {
  font-family: "Material Symbols Outlined";
  content: "\e5cc";
  position: absolute;
  color: #4848D9;
  font-size: 20px;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 992px) {
  header .nav_inner_fanclub .btn:hover {
    opacity: 0.8;
  }
}

@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 #B4BCC4;
    font-weight: 500;
    position: relative;
    font-size: 20px;
  }

  .contents_list_sp li a .material-symbols-outlined {
    position: relative;
    top: 3px;
    font-size: 20px;
    color: #4848D9;
  }

  header .nav_inner_fanclub p {
    font-size: 18px;
    padding-bottom: 0.5rem;
  }

  .nav_inner_fanclub .contents_list_sp li a {
    font-size: 16px;
  }
}


/* ========================================== */
/* CONTENTS */
/* ========================================== */

.container h2 {
  margin:60px auto;
}


@media screen and (max-width: 767px) {

.container h2 {
  font-size:26px;
  margin: 30px auto;
}

}


/* ========================================== */
/* フッター */
/* ========================================== */

footer {
  padding: 75px 0 20px;
  position: relative;
}

footer:before {
  content: "";
  position: absolute;
  background: #fff;
  background: url(../../images/top/footer_bg.svg),linear-gradient(1deg,rgba(255, 255, 255, 0.31) 0%, rgba(219, 219, 219, 0.31) 50%, rgba(60, 95, 113, 0.5) 100%);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -99;
}

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 {
  background: rgba(7, 34, 60, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  font-size: 8px;
  text-align: center;
}

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: 237px;
}


footer .footer-navigation ul {
  margin-bottom:32px;
}

footer .footer-navigation p {
  font-size:22px;
  font-weight:500;
  color: #07223C;
  margin-bottom:12px;
  letter-spacing: 2px;
}

footer .footer-navigation li {
  margin-bottom:2px;
  font-size:16px;
}

footer .footer-navigation li .material-symbols-outlined {
  font-size:18px;
  position: relative;
  top: 4px;
  color: #4848D9;
}

footer .footer-navigation li:before {
  content: "- ";
}

footer li a {
  color: #07223C;
}


@media (hover: hover) {
  footer .footer-about .logo a:hover,
  footer li a:hover {
    opacity: 0.6;
    color: #07223C;
  }
}

footer ul.infolink {
  display: flex;
  justify-content: center;
  gap: 30px;
}
footer hr {
  max-width: 1200px;
  margin: auto;
  border-color: #D6D6D6;
}


footer .copy {
  font-size: 14px;
  text-align: center;
  color: #07223C;
}

@media screen and (max-width: 767px) {

  footer .footer-about .logo {
    max-width:278px;
  }

  footer .footer-navigation p {
    font-size:16px;
  }

  footer .footer-navigation p::after {
    font-family: "Material Symbols Outlined";
    content: "\e316";
    position: absolute;
    display: inline;
    transform: rotate(0deg);
    font-size: 16px;
    color: #333;
    margin-left: 6px;
  }

  footer .footer-navigation p.select::after {
    transform: rotate(180deg);
  }

  footer .footer-navigation li {
    margin-bottom:16px;
    font-size:14px;
    margin-left: 15px;
  }

  footer hr {
    margin: 0 15px;
  }

  footer ul.infolink {
    flex-direction: column;
    gap: 20px;
  }

  footer .copy {
    font-size: 12px;
  } 
}

/* ========================================== */
/* 共通カラー */
/* ========================================== */
/* ベースカラー */
/* 背景 */
.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: #07223C !important;
  background-color: #fff;
  border-color: #4848D9;
  border-radius: 0;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (min-width: 768px) {
/*.btn-main {
  color: #333 !important;
  background-color: transparent;
  background-image: none;
  border-color: #333;
}*/
}
.btn-main:hover {
  color: #fff !important;
  background-color: #4848D9;
  border-color: #4848D9;
}

a.btn {
  text-decoration:none;
  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:#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;
}

/*--------------------------------
 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;
}