/* ========================================== */
/* base */
/* ========================================== */

body {
	font-family:"Noto Sans JP","HiraKakuProN-W3","ヒラギノ角ゴ ProN W3",sans-serif;
	line-height:1.8;
	color:#5F6368;
	font-size:14px;
	overflow-y: scroll;
	overflow-x: hidden;
}

.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;
}

a:hover {
	text-decoration:none;
}

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", sans-serif;
}

.font-accent,
.container h2 {
    color: #07223C;
    font-family: "Zen Antique", serif;
    font-weight: 500;
}

.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:92px;
	padding-top: 4px;
	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: #0A61D6;
    background: linear-gradient(180deg,rgba(10, 97, 214, 1) 0%, rgba(11, 163, 233, 1) 60%, rgba(7, 218, 221, 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: #fff;
		position: relative;
		padding-top: 0;
	}

	header .nav_inner {
		width:100%;
		max-width: inherit;
		transition: right 600ms ease-in-out;
		padding: 0 15px;
	}

	header #header_inner {
		height:56px;
		padding: 12px 16px;
		box-shadow: none;
		background-color: transparent;
		width: 100%;
	}
		
	header h1 {
		max-width:80px;
		padding-top: 0;
		margin-top: 5px;
	}

}


/*nav-pc*/
header .contents_list_pc {
	display: flex;
	align-items: center;
	margin-left: 46px;
	width: 100%;
	max-width: 822px;
	justify-content: flex-end;
}

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:15px;
	font-weight: bold;
	line-height:1;
}

header .contents_list_pc li.btn-group a {
	font-size: 14px;
}

header .contents_list_pc li a .material-symbols-outlined {
	font-size:18px;
	position: relative;
	top: 3px;
    color: #0B62D6;
}

header .contents_list_pc li a.dropdown-toggle {
	text-align: center;
	display: inline-block;
	color: #fff;
	padding-top: 5px;
	width:144px;
	height: 40px;
	background: #0A61D6;
    background: linear-gradient(180deg,rgba(10, 97, 214, 1) 0%, rgba(11, 163, 233, 1) 60%, rgba(7, 218, 221, 1) 100%);
	box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.16);
    font-weight: bold;
    font-size: 15px;
}

header .contents_list_pc li a.dropdown-toggle > span {
    font-weight: normal;
    font-size: 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;
	width: 0;
	transition: width 0.3s;
	background-color: #0B62D6;
}

.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;
	margin-top: 4px;
}

@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: #07223C;
	}
}

@media screen and (min-width: 992px){
	header .contents_list_pc li.btn-group {
		/*
		margin-left: auto;
		margin-right: 0;
		*/
		margin-left: 12px;
	}

	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 li {
		position: relative;
	}

	.dropdown-menu>div:not(:last-of-type) .dropdown-item,
	.dropdown-menu .dropdown-item:not(:last-of-type)  {
		border-bottom:solid 1px #E0E0E0;
	}

	.dropdown-item.active,
	.dropdown-item:active {
		color: inherit;
		background-color: initial;
	}

}

@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);
}

.dropdown-menu p {
	font-size: 14px;
    font-family: "Zen Antique", serif;
	text-align: center;
	color: #07223C;
	font-weight: 400;
}

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;
	color: #000;
    font-weight: normal;
}

header .dropdown-menu li span.not-login::before,
.contents_list_sp li span.not-login::before {
	font-family: "Material Symbols Outlined";
	content: "\e898";
	font-size: 18px;
	font-variation-settings:  'FILL' 1;
	color: #D9D0D5;
	display: inline-block;
	transform: translateY(2px);
	margin-right: 2px;
}

header .nav_sp_inner_wrapper .fc-logo {
	background: #0A61D6;
    background: linear-gradient(180deg,rgba(10, 97, 214, 1) 0%, rgba(11, 163, 233, 1) 60%, rgba(7, 218, 221, 1) 100%);
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	padding: 18.6px 0;
    line-height: 13px;
}

header .nav_sp_inner_wrapper .fc-logo > span {
    font-size: 12px;
}

header .nav_inner_fanclub .btn {
	border:1px solid #0B62D6;
	background-color: #FFF;
	margin-bottom: 10px;
	color: #07223C;
	font-size: 14px;
	font-weight: bold;
	position: relative;
	padding: 8px 0;
    border-radius: 0;
}

header .nav_inner_fanclub .btn:after {
	font-family: "Material Symbols Outlined";
	content: "\e5cc";
	position: absolute;
	color: #0B62D6;
	font-size: 18px;
	right: 2px;
	top: 50%;
	transform: translateY(-50%);
}

@media (hover: hover) {
	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 {
	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 30px 30px;
		background-color: #F4F6F7;
	}

	.dropdown-menu p {
		font-family: "Zen Antique", serif;
	}

	.contents_list_sp li {
		position: relative;
	}

	.nav_inner_fanclub .contents_list_sp li {
		padding-left: 6px;
	}

	.contents_list_sp li a {
		font-size: 20px;
		padding-top: 4.5px;
		padding-bottom: 6.5px;
		padding-left: 6px;
		display: block;
		border-bottom: 1px solid rgba(7, 34, 60, 0.3);
		font-weight: 300;
		color: #07223C;
	}

	.nav_inner_fanclub p {
		font-size: 20px;
		color: #333333;
		font-weight: 400;
		line-height: 1;
        margin-bottom: 20px;
		text-align: center;
	}

	.nav_inner_fanclub .contents_list_sp li a {
		font-size: 16px;
        color: #333;
        line-height: 15px;
		font-weight: 300;
		border-bottom: 1px solid #333;
	}

	.contents_list_sp li a .material-symbols-outlined {
		position: relative;
		top: 3px;
		font-size: 20px;
        color: #0B62D6;
	}
}

@media (hover: hover) {
	.contents_list_sp li a:hover {
		color: #000;
		text-decoration: none;
	}
}


/* ========================================== */
/* CONTENTS */
/* ========================================== */

.container h2 {
	margin: 80px auto 32px;
}


@media screen and (max-width: 767px) {

.container h2 {
	font-size:36px;
	text-align: center;
	margin: 0;
}

}


/* ========================================== */
/* フッター */
/* ========================================== */

footer {
    position: relative;
    overflow: hidden;
}

footer:before {
    content: "";
    position: absolute;
    background-image: url("../../images/map.png");
    background-size: cover;
    background-position: center top -100px;
    width: 100%;
    height: 525px;
    top: 0;
    background-color: navajowhite;
    background-blend-mode: luminosity;
    opacity: 0.3;
    z-index: -1;
}

footer:after {
    content: "";
    position: absolute;
    background: #3C5F71;
    background: linear-gradient(180deg,rgba(60, 95, 113, 1) 0%, rgba(219, 219, 219, 1) 50%, rgba(255, 255, 255, 1) 100%);
    width: 100%;
    height: 525px;
    top: 0;
    opacity: 0.3;
    z-index: -1;
}

footer div.container {
	padding: 50px 15px 20px;
}

footer .footer-shadow {
	position: relative;
}

footer .footer-shadow:before {
	content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    top: -4px;
    background-color: transparent;
    box-shadow: 0 3px 4px rgba(2, 19, 36, 0.20);
    z-index: 1;
}

footer .compus {
    position: absolute;
    background-image: url("../../images/compus.png");
    bottom: -27px;
    right: -21px;
    background-size: 250px;
    background-repeat: no-repeat;
    width: 250px;
    height: 250px;
    opacity: 0.1;
}

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;
    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%;
}

footer .footer-about .sns li img {
    width:100%;
    height:100%;
} 

footer .footer-about .logo {
    max-width:100px;
}


footer .footer-navigation ul {
	margin-bottom:32px;
}

footer .footer-navigation p {
    font-size:22px;
    font-weight:normal;
    color: #07223C;
    margin-bottom:12px;
    letter-spacing: 2px;
    font-family: "Zen Antique", serif;
}

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: #0B62D6;
}

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: 15px;
}

footer hr {
    max-width: 1200px;
    margin: auto;
    border-color: #07223C;
	opacity: 0.19;
}


footer .copy {
    font-size: 14px;
    text-align: center;
    color: #07223C;
	margin-bottom: 25px;
}

@media screen and (max-width: 767px) {

    footer:before,
    footer:after {
        height: 1490px;
    }

    footer:before {
        background-image: url("../../images/map_sp.png");
		background-position: right;
    }

    footer .footer-about .logo {
        max-width:105px;
    }

    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;
		line-height: 1;
    }

    footer hr {
        margin: 0 15px;
    }

    footer ul.infolink {
        flex-direction: column;
    }

    footer .copy {
        font-size: 12px;
		margin-bottom: 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 {
	position: relative;
    font-size: 14px;
    height: 44px;
    margin:auto;
    padding: 10px 0;
    background: #0A61D6;
	border: none;
    color: #fff!important;
    font-weight: 700;
    border-radius: 0;
	-webkit-transition: .3s ease;
    transition: .3s ease;
}

a.btn-main:hover {
	background: #0A61D6;
	opacity: 0.7;
	border: none;
}
@media screen and (min-width: 768px) {
	.btn-main {
		position: relative;
		font-size: 14px;
		height: 44px;
		margin:auto;
		padding: 10px 0;
		background: #0A61D6;
		border: none;
		color: #fff!important;
		font-weight: 700;
		border-radius: 0;
	}

	#store .border form .col-md-1 > input {
		width: 60px;
	}
}
.btn-main:hover {
	opacity: 0.7;
	border: solid 2px #fff;
}

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;
	background: #333;
    padding: 0 5px;
}

@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;
}