/*---------------------------------------------
  HEADER
---------------------------------------------*/

header.top_header {
	box-shadow: 0 3px 6px rgba(0,0,0,0);
}





/*---------------------------------------------
  MAIN
---------------------------------------------*/

.top-key-visual {
	height: 100svh;
	position: relative;
}

.top-key-visual .kv-inner {
	height: 100svh;
	position: relative;
	margin: auto ;
	overflow: hidden;
}

.top-key-visual .kv-inner img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: contain;
	margin-top: 0;
}


.kv-inner:before {
	content: '';
	background-size: cover;
	background-position: center;
	background-image: url('../images/top/main_pc.jpg');
	position: absolute;
	top: -12px;
	bottom: -12px;
	left: -12px;
	right: -12px;
	filter: blur(12px);
	z-index: -1;
}

.kv-inner:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 72svh;
	bottom: 0;
	background: #FFF;
	background: linear-gradient(187deg,rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, .29) 69%, rgba(255, 255, 255, .46) 100%);
}

@media screen and (max-width:991px) {
	.top-key-visual {
		height: calc(100svh - 56px);
	}

	.top-key-visual .kv-inner {
		height: calc(100svh - 56px);
		margin: auto;
	}

	.kv-inner:after {
		height: 72svh;
		bottom: 0;
		background: linear-gradient(187deg,rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, .29) 69%, rgba(255, 255, 255, .46) 100%);
	}

}

@media screen and (orientation: portrait) {
	.top-key-visual .kv-inner img {
		height: calc(100svh - 56px);
		top: 30%;
		width: 100%;
		object-fit: contain;
	}

	.kv-inner:before {
		background-image: url('../images/top/main_sp.jpg');
	}

}


@media screen and (max-width: 767px) {

}

/*---------------------------------------------
  TOPICS
---------------------------------------------*/
#topics {
	position: absolute;
	bottom: 0;
	z-index: 10;
	width:100%;
	max-height: 172px;
	background-color: rgba(7, 34, 60, 0.7);
	padding: 20px 84px;
}

#topics .slick-slider {
	margin-bottom: 0!important;
	margin: auto;
	max-width: 1200px;
	position: relative;
}

#topics .post-item {
	max-width: 1200px;
	width:100%;
	margin: auto;
}


#topics .post-option {
	display: none;
}

#topics .px-4.py-5.post-body {
	padding: 0!important;
}

#topics .post-title {
	font-size: 38px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	font-family: "BIZ UDMincho", serif;
	font-weight: bold;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}
#topics .post-title,
#topics .post-lead {
	color: #fff;
}

#topics .post-lead {
	font-size: 16px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	margin-bottom: 20px;
}

#topics .slick-list {
	padding: 0;
}

/* スライダー矢印 */
.slide-arrow {
	width: 18px;
	height: 18px;
	position: relative;
	background: transparent;
	border: transparent;
	cursor: pointer;
}

.prev-arrow {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: -65px;
	margin: auto;
	border-top: 3px solid #fff;
	border-left: 3px solid #fff;
	transform: rotate(-45deg);
}

.next-arrow {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	right: -65px;
	margin: auto;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(45deg);
}

/* スライダードット */
.slick-bar {
	display:flex;
	justify-content:center;
	position: absolute;
	bottom: 20px;
	right: 0;
	left: 0;
	bottom: 0px;
	margin: 0 auto;
}

.slick-bar li {
	width: 80px;
	height: 5px;
	background-color: rgba(255, 255, 255, 0.4);
	margin: 0 4px;
	cursor: pointer;
}

.slick-bar li.slick-active{
	background-color: #fff;
}

.slick-bar li:last-child {
	margin-bottom: 0;
}

.slick-bar li button {
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	padding: 0;
	border: none;
	background-color: transparent;
}


@media screen and (max-width: 767px) {
	#topics {
		max-height: 260px;
		padding: 26px 15px;
	}

	#topics .slick-slider {
		height: 200px;
	}

	#topics .post-item {
		padding: 0 15px;
	}

	#topics .post-title {
		font-size: 26px;
		-webkit-line-clamp: 3;
	}
	#topics .post-lead {
		-webkit-line-clamp: 3;
		margin-bottom: 0;
	}


	#topics .post-item {
	}

	.prev-arrow {
		left: -10px;
	}

	.next-arrow {
		position: absolute;
		right: -10px;
	}

	.slick-bar {
		bottom: -6px;
	}

	.slick-bar li {
		width: 40px;
	}

}


/*---------------------------------------------
  TOP
---------------------------------------------*/

.top-main-contents {
	overflow: hidden;
	clear: both;
	position: relative;
}

.top-main-contents:before {
    content: "";
    position: absolute;
    top: 0;
    background: linear-gradient(1deg,rgba(255, 255, 255, 0.3) 0%, rgba(219, 219, 219, 0.3) 50%, rgba(60, 95, 113, 0.3) 100%);
    width: 100%;
    height: 350px;
    z-index: -999;
}

.top-main-contents:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	top: 0;
	background-color: #fff;
	box-shadow: 0 3px 4px rgba(2, 19, 36, 0.20);
	z-index: 1;
}

.top-main-contents section {
	position: relative;
	z-index: 5;
}

.container {
	max-width: 1300px;
}

/*---------------------------------------------
  X埋め込み
---------------------------------------------*/

#xtwitter.side-contents {
/*	margin-bottom: 5%;*/
}

#xtwitter.side-contents .side-content-wrapper {
	margin: auto;
	max-width: 550px;
}

/*---------------------------------------------
  Instagram埋め込み
---------------------------------------------*/
#instagram.side-contents .side-content-wrapper {
	margin: auto;
	max-width: 540px;
}

/*---------------------------------------------
  FC案内
---------------------------------------------*/
#fanclub-guide {
	margin: 0 auto 76px;
	box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, .16);
	max-width: 400px;
}


#fanclub-guide .wrapper {
	background: linear-gradient(1deg,rgba(129, 146, 232, 1) 0%, rgba(98, 119, 227, 1) 100%);
	border: solid 4px #fff;
	position: relative;
}

#fanclub-guide .wrapper .inner {
	padding: 26px 20px 16px 20px;
	display: grid;
	grid-template-columns: 84px 1fr;
	grid-template-rows: auto;
	gap: 0px;
	align-items: center;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {
	#fanclub-guide .wrapper:hover:before {
		opacity: 1;
	}
}

#fanclub-guide img.fc-logo {
	width: 84px;
	height: 100px;
}

#fanclub-guide p {
	color: #fff;
}

#fanclub-guide p.ttl {
	font-size: 20px;
	line-height: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
}

@media (min-width:768px) {
	#fanclub-guide p.ttl {
		line-height: 1.32;
	}
}

#fanclub-guide p.ttl span.name {
	font-size: 28px;
}

#fanclub-guide p.lead {
	font-size: 16px;
	font-weight: 700;
	grid-column: span 2 / span 2;
	grid-row-start: 2;
	margin-bottom: 12px;
	text-align: center;
	padding-right: 0;
}
#fanclub-guide p.lead span.price {
	font-size: 28px;
	font-weight: bold;
}

#fanclub-guide ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	grid-column: span 2 / span 2;
	grid-row-start: 3;
	justify-content: center;
}

#fanclub-guide ul li {
	background-color: #fff;
	border-radius: 5px;
	text-align: center;
	color: #333333;
	max-width: 70px;
	width: 23.7%;
	height: 70px;
	padding: 10px 0 6px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#fanclub-guide ul li .material-symbols-outlined {
	font-size: 40px;
	background: linear-gradient(1deg,rgba(129, 146, 232, 1) 0%, rgba(98, 119, 227, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#fanclub-guide ul li .txt {
	font-size: clamp(0.563rem, 0.503rem + 0.26vw, 0.625rem);
	line-height: 1;
}

#fanclub-guide div.btn {
	background-color: #fff;
	color: #4848D9;
	height: 50px;
	width: 50px;
	box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .16);
	padding: 12px 12px 7px;
	display: block;
	margin: auto;
	border-radius: 999px;
	grid-column: span 2 / span 2;
	grid-row-start: 4;
}

@media (min-width: 992px) {
	#fanclub-guide {
		width: 100%;
		max-width: inherit;
	}

	#fanclub-guide .wrapper {
	}

	#fanclub-guide .wrapper .inner {
		padding: 26px 46px 26px 56px;
		grid-template-columns: 84px auto 450px 50px;
		grid-template-rows: auto;
	}

	#fanclub-guide img.fc-logo {
		grid-row: span 2 / span 2;
	}

	#fanclub-guide p.ttl {
		font-size: clamp(1rem, -0.538rem + 7.69vw, 1.625rem);
		text-align: left;
		flex-direction: row;
		align-items: center;
	}

	#fanclub-guide p.ttl span.name {
		/*font-size: 60px;*/
		font-size: clamp(1rem, -0.846rem + 9.23vw, 1.75rem);
	}

	#fanclub-guide p.lead {
		font-size: 18px;
		grid-column-start: 2;
		grid-column-end: 2;
		margin-bottom: 0;
		text-align: start;
		padding-right: 10%;
	}

	#fanclub-guide p.lead span.price {
		font-size: 36px;
	}

	#fanclub-guide div.btn .btn-text {
		display: none;
	}

	#fanclub-guide ul {
		gap: 0 20px;
		grid-row: span 2 / span 2;
		grid-column-start: 3;
		grid-row-start: 1;
		align-items: center;
		justify-content: flex-start;
	}

	#fanclub-guide ul li .material-symbols-outlined {
		font-size: 50px;
	}

	#fanclub-guide ul li {
		width: 88px;
		height: 88px;
		max-width: inherit;
		padding: 9px 0 8px;
		border-radius: 0;
	}

	#fanclub-guide ul li .txt {
		font-size: 12px;
	}

	#fanclub-guide div.btn {
		margin: 0;
		grid-column: 4;
		grid-row: span 2 / span 2;
		grid-row-start: 1;
	}

}

@media (min-width: 992px) and (max-width: 1165px) {

	#fanclub-guide p.ttl {
		font-size: clamp(1rem, -0.538rem + 7.69vw, 1.625rem);
		text-align: left;
		flex-direction: column;
		align-items: flex-start;
		line-height: 0.7;
	}
}

@media screen and (max-width:991px) {
	#fanclub-guide div.btn {
		display: flex;
		width: 100%;
		max-width: 240px;
		height: 40px;
		align-items: center;
		justify-content: center;
		padding: 12px 12px 12px 25px;
		border: 1px solid #4848D9;
	}

	#fanclub-guide div.btn .btn-text {
		display: block;
		color: #4848D9;
		font-weight: 500;
	}

	#fanclub-guide div.btn .material-symbols-outlined {
		padding-top: 2px;
	}
}

/*---------------------------------------------
  TOP CONTENTS
---------------------------------------------*/

.top-main-contents .container {
	padding:10px 15px 64px 15px;
	max-width: 1230px;
}

.top-main-contents .container h2 {
	margin: inherit;
	font-size: 46px;
	color: #07223C;
}

.top-main-contents #fccontents .container h2 {
	color: #4848D9;
}

@media (max-width: 767px) {
	.top-main-contents .container h2 {
		font-size: 36px;
		text-align: center;
		margin-bottom: 10px;
	}
}

a.btn.btn-main {
	position: relative;
	font-size: 14px;
	width: 61.72%;
	max-width: 272px;
	height: 44px;
	margin:auto;
	padding: 10px 0;
	box-shadow: 1px 1px 4px rgba(0,0,0,0.25);
	background: linear-gradient(1deg,rgba(129, 146, 232, 1) 0%, rgba(98, 119, 227, 1) 100%);
	border: solid 2px #fff;
	color: #fff!important;
	font-weight: 700;
	border-radius: 0;
}

a.btn.btn-main::after {
	font-family: "Material Symbols Outlined";
	content: "\e5cc";
	position: absolute;
	color: #fff;
	font-size: 20px;
	right: 2px;
	top: 50%;
	transform: translateY(-50%);
}

@media (hover: hover) {
	a.btn.btn-main:hover {
		background: #8192E8;
	}
}


@media (min-width: 768px) {
	a.btn.btn-main {
		font-size: 16px;
		max-width: 260px;
		padding: 7px 0;
	}
	a.btn.btn-main::after {
		/*font-size: 30px;
		right: 0px;*/
	}

}

/*---------------------------------------------
  TOP CONTENTS-side bar
---------------------------------------------*/

.side-contents {
	margin-bottom: 10%;
}

.side-contents .ttl {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 4px;
}

.side-contents .ttl h2 {
	font-size: 28px;
	color: #404040;
}

.top-main-contents #youtube .side-content-wrapper {
	width:100%;
}
.top-main-contents #youtube .side-content-wrapper iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	box-shadow: 0px 0px 12px 0 rgba(0, 0, 0, 0.16);
}

.side-contents a {
	color: #000;
	font-size: 14px;
	position: relative;
	padding-right: 19px;
}

.side-contents a:hover {
	text-decoration: none;
}

.side-contents a:after {
	position: absolute;
	font-family: "Material Symbols Outlined";
	content: "\e5cc";
	right: -5px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #333;
}

@media (hover: hover) {
	.side-contents a:hover {
		opacity: 0.6;
	}
}

/*-----------------------------
  bnr
-----------------------------*/

#bnr {
	overflow:hidden;
	clear:both;
	margin:0 auto 50px;
}

#bnr .bnr {
	width:100%;
	position:relative;
}

#bnr .bnr a {
	display:block;
}


#bnr .bnr .post-eyecatch {
	overflow: hidden;
	position: relative;
	width:480px;
	padding-top: 75%;
	border-radius: 32px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	z-index:-1;
}

#bnr .bnr .post-eyecatch img {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	object-fit: cover;
	object-position: top;
	max-width: none;
	max-height: none;
	min-width: 100%;
	min-height: 100%;
}

#bnr .bnr .post-eyecatch::after {
	content:"";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	background-color: rgba(255, 255,255, 0);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

#bnr .bnr:hover .post-eyecatch::after {
	background-color: rgba(255, 255,255, .4);
}

#bnr .bnr .post-title {
	width: 100%;
	padding:0px 10px;
	margin:0 !important;
	position:absolute;
	color:#fff;
	text-align:center;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index:999;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	display:none;
	
}

#bnr .bnr:hover .post-title {
	display:block;
}



@media screen and (max-width: 991px) {

	#bnr .bnr .post-eyecatch {
		width:240px;
		border-radius: 4px;
	}

}

/*-----------------------------
  NEWS
-----------------------------*/

#top-main-contents #news .post-item-type_a1 a {
	color:#5F6368;
}

#news .more {
	background: rgba(201, 211, 216, 0.3);
	padding: 24px 0;
	margin-top: 12px;
}

/*-----------------------------
  SCHEDULE
-----------------------------*/

#schedule {
	padding-top: 38px;
}

#schedule h2 {
	position: relative;
	margin-bottom: 10px;
}

#schedule .more {
	background: rgba(201, 211, 216, 0.3);
	padding: 24px 0;
	margin-top: 12px;
}

#schedule .post-item-type_a1 {
	margin-top: 16px;
}

#schedule .post-item-type_a1 a {
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-template-rows: 40px 1fr;
}

#schedule .post-item-type_a1 .post-ticket-status {
	grid-column: span 2 / span 2;
}

#schedule .post-item-type_a1 .ticket-status {
	width:156px;
	border-radius: 999px;
	font-size: 14px;
	color: #404040;
	font-weight: bold;
	margin-right: 0;
	background-color: #fff;
	padding: 1px 0 0px;
	text-align: center;
}

.ticket-status[data-content="チケット発売中"] {
	border: 3px solid #FF4D4D;
}

.ticket-status[data-content="FC先行受付中"] {
	border: 3px solid #EF9E3D;
}

.ticket-status[data-content="受付終了"] {
	border: 3px solid #B4D4FF;
}

.ticket-status[data-content="準備中"],
.ticket-status[data-content="販売終了"] {
	border: 3px solid #83868F;
}

#schedule .post-item-type_a1 .post-option {
	width: 72px;
	padding: 24px 0;
	margin-bottom:16px;
}

#schedule .post-item-type_a1 .post-body {
	width: calc(100% - 32px);
	margin-left: 12px;
	padding: 20px 0!important;
	display: grid;
	align-content: center;
}

#schedule .post-item-type_a1 .post-date {
	line-height: 1.2;
	color: #07223C;
	font-size: 26px;
	font-weight: bold;
	display: inline-block;
	width:70px;
}

#schedule .post-item-type_a1 .post-date-year {
	display: block;
	font-size: 20px;
}

#schedule .post-item-type_a1 .post-location {
	color: #000000;
	font-size: 16px;
}

@media (min-width: 992px) {

	#schedule {
		padding-top: 12px;
	}

	#schedule h2 {
		margin-bottom: 0;
	}

	#schedule .post-item-type_a1 {
		padding-bottom: 16px;
	}

	#schedule .post-item-type_a1 a {
		grid-template-columns: 190px 80px 1fr;
		grid-template-rows: repeat(1, 1fr);
		align-items: center;
	}
	#schedule .post-item-type_a1 .post-ticket-status {
		grid-column: 1;
	}

	#schedule .post-item-type_a1 .ticket-status {
		width:170px;
		font-size: 16px;
		margin-right: 22px;
		padding: 12px 0;
	}

	#schedule .post-item-type_a1 .post-body {
		width: calc(100% - 52px);
	}

}

/*-----------------------------
  FC MEMBERS ONLY
-----------------------------*/
#fccontents .fccontents-wrapper {
	background: rgba(143, 161, 250, 0.3);
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	border: solid 5px #fff;
}

#fccontents .fccontents-wrapper {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 30px 15px;
}

#fccontents .fccontents-wrapper .fccontents-bg .contents-inn a:hover {
	opacity: 0.8;
	color: inherit;
}

.contents-inn {
	overflow: hidden;
	position: relative;
	box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.contents-inn a .post-eyecatch {
	overflow: hidden;
	position: relative;
}

.contents-inn a .post-eyecatch img {
	transition: filter 0.3s ease;
}

.contents-inn.not-login a .post-eyecatch:before {
	transition: opacity 0.3s ease;
	opacity: 0;
	font-family: "Material Symbols Outlined";
	content: "\e898";
	font-size: 30px;
	font-variation-settings:  'FILL' 1;
	color: #FFF;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


@media (hover: hover) {
	.contents-inn.not-login a:hover .post-eyecatch img {
		filter: blur(6px) brightness(0.6);
	}

	.contents-inn a:hover .post-eyecatch img {
		filter: brightness(1.1);
	}

	.contents-inn.not-login a:hover .post-eyecatch:before {
		opacity: 1;
	}

}

#fccontents h3 {
	position: absolute;
	right: 15px;
	z-index: 1;
	font-size: 12px;
	color: #fff;
	background-color: #4848D9;
	padding: 7px 8px;
	margin-top:3px;
	margin-right: 3px;
}

#fccontents .contents-inn .post-body {
	padding: 20px;
}

#fccontents .contents-inn .contents-date {
	color: #868686;
	margin-bottom:10px;
}
#fccontents .contents-inn .contents-ttl {
	font-size:18px;
	font-weight: bold;
}

@media (hover: hover) {
	#fccontents .contents-inn a:hover .contents-ttl {
		color: #333;
	}
}


#fccontents .btn.btn-main {
	margin-top: 28px;
	background-image: none;
	background-color: #fff;
	color: #07223C!important;
	font-weight: bold;
	border: 2px solid #4848D9;
	height: auto;
	transition: scale .3s;
	max-width: 260px;
	margin-top: 40px;
}

#fccontents a.btn.btn-main::after {
	color: #4848D9!important;
	font-weight: 400;
}

@media (hover: hover) {
	#fccontents .btn.btn-main:hover {
		scale: 1.1;
	}
}


@media (min-width: 768px) {
	#fccontents .fccontents-wrapper {
		box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.16);
		margin-left: auto;
		margin-right: auto;
		max-width: 1200px;
		padding: 4rem 2rem 2rem;
	}

	#fccontents .fccontents-wrapper .col-md-4 {
		max-width: 340px;
		width: 33.333333%;
	}
	#fccontents .btn.btn-main {
		max-width: 452px;
		margin-top: 52px;
	}
}

/*-----------------------------
 MEMBERS (PROFILE)
-----------------------------*/

#members {
	position: relative;
	margin: 15px 0 0;
	padding-bottom: 0;
	background: #fff;
	z-index: 99;
}

#members:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	max-height: 402px;
	top: 0;
	left: 0;
	background: url(../images/top/members-bg01.jpg) no-repeat;
	background-repeat: round;
	z-index: -999;
}

#members:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	max-height: 402px;
	bottom: 0;
	left: 0;
	background: url(../images/top/members-bg02.jpg) no-repeat;
	background-repeat: round;
	z-index: -999;
}

.top-main-contents #members .container h2 {
	position: relative;
	display: block;
	max-width: 374px;
	padding-top: 3rem;
}

.top-main-contents #members .container h2:before {
	content: "";
	position: absolute;
	width: 100%;
	max-width: 374px;
	height: 125px;
	background: url(../images/top/member-ttl.png) no-repeat;
	z-index: -99;
	margin: 0 auto;
	display: block;
	top: -4px;
}

#members ul.members {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	/*gap: 4%;*/
	margin-top: 40px;
}

#members ul.members li {
	/*max-width: 360px;*/
	width: 100%;
	padding: 0 10px 20px;
	margin: 0 0 4rem;
	position: relative;
}


#members ul.members li img {
	display: block;
	max-width: 290px;
	margin: 0 auto;
	height: 100%;
	max-height: 360px;
	position: relative;
}

#members ul.members li a {
	font-size: 16px;
	text-align: center;
	position: relative;
	width: 100%;
	display: block;
	max-width: 200px;
	margin: 30px auto 0;
	height: 40px;
	line-height: 2.2;
	border: 1px solid #000;
	color: #000;
	background-color: #fff;
	box-shadow: 1px 1px 4px rgba(0,0,0,0.16);
}

#members ul.members li a:after {
	position: absolute;
	content: "";
	width: 10px;
	height: 10px;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	border-top: 1px #000 solid;
	border-right: 1px #000 solid;
	transform: rotate(45deg);
}


/* ボタン色変更 */
#members ul.members li.shun a {
	border: 1px solid #F7D020;
	color: #F7D020;
}

#members ul.members li.shun a:after {
	border-color: #F7D020;
}

#members ul.members li.oto a {
	border: 1px solid #AB74E2;
	color: #AB74E2;
}

#members ul.members li.oto a:after {
	border-color: #AB74E2;
}

#members ul.members li.kakeru a {
	border: 1px solid #03C8FF;
	color: #03C8FF;
}

#members ul.members li.kakeru a:after {
	border-color: #03C8FF;
}

#members ul.members li.gento a {
	border: 1px solid #F83635;
	color: #F83635;
}

#members ul.members li.gento a:after {
	border-color: #F83635;
}

#members ul.members li.komugi a {
	border: 1px solid #FA55A3;
	color: #FA55A3;
}

#members ul.members li.komugi a:after {
	border-color: #FA55A3;
}

#members ul.members li.shima a {
	border: 1px solid #1480F0;
	color: #1480F0;
}

#members ul.members li.shima a:after {
	border-color: #1480F0;
}

#members ul.members li.tora a {
	border: 1px solid #45C744;
	color: #45C744;
}

#members ul.members li.tora a:after {
	border-color: #45C744;
}

/* members 背景 カラー */
#members ul.members li:after {
	content: "";
	background: #fff;
	max-width: 290px;
	width: 100%;
	height: 361px;
	display: block;
	position: absolute;
	top: -91px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -50;
	transform: rotate(6deg);
}

#members ul.members li.shun:after {
	background: rgba(247, 208, 32, 0.7);
}

#members ul.members li.oto:after {
	background: rgba(171, 116, 226, 0.7);
}

#members ul.members li.kakeru:after {
	background: rgba(3, 200, 255, 0.7);
}

#members ul.members li.gento:after {
	background: rgba(241, 106, 104, 0.7);
}

#members ul.members li.komugi:after {
	background: rgba(250, 85, 163, 0.7);
}

#members ul.members li.shima:after {
	background: rgba(52, 138, 227, 0.7);
}

#members ul.members li.tora:after {
	background: rgba(69, 199, 68, 0.7);
}

/* members 背景 枠 */
#members ul.members li.shun:before {
	content: "";
	background: URL(../images/top/shun-bg.png) no-repeat;
	position: absolute;
	top: -16px;
	width: 100%;
	height: 100%;
	max-height: 390px;
	z-index: 55;
	max-width: 300px;
	background-size: 300px 390px;
	display: block;
	left: 0;
	right: 0;
	margin: 0 auto;
}

#members ul.members li.oto:before {
	content: "";
	background: URL(../images/top/oto-bg.png) no-repeat;
	position: absolute;
	top: -16px;
	width: 100%;
	height: 100%;
	max-height: 390px;
	z-index: 55;
	max-width: 300px;
	background-size: 300px 390px;
	display: block;
	left: 0;
	right: 0;
	margin: 0 auto;
}

#members ul.members li.kakeru:before {
	content: "";
	background: URL(../images/top/kakeru-bg.png) no-repeat;
	position: absolute;
	top: -16px;
	width: 100%;
	height: 100%;
	max-height: 390px;
	z-index: 55;
	max-width: 300px;
	background-size: 300px 390px;
	display: block;
	left: 0;
	right: 0;
	margin: 0 auto;
}

#members ul.members li.gento:before {
	content: "";
	background: URL(../images/top/gento-bg.png) no-repeat;
	position: absolute;
	top: -16px;
	width: 100%;
	height: 100%;
	max-height: 390px;
	z-index: 55;
	max-width: 300px;
	background-size: 300px 390px;
	display: block;
	left: 0;
	right: 0;
	margin: 0 auto;
}

#members ul.members li.komugi:before {
	content: "";
	background: URL(../images/top/komugi-bg.png) no-repeat;
	position: absolute;
	top: -16px;
	width: 100%;
	height: 100%;
	max-height: 390px;
	z-index: 55;
	max-width: 300px;
	background-size: 300px 390px;
	display: block;
	left: 0;
	right: 0;
	margin: 0 auto;
}

#members ul.members li.shima:before {
	content: "";
	background: URL(../images/top/shima-bg.png) no-repeat;
	position: absolute;
	top: -16px;
	width: 100%;
	height: 100%;
	max-height: 390px;
	z-index: 55;
	max-width: 300px;
	background-size: 300px 390px;
	display: block;
	left: 0;
	right: 0;
	margin: 0 auto;
}

#members ul.members li.tora:before {
	content: "";
	background: URL(../images/top/tora-bg.png) no-repeat;
	position: absolute;
	top: -16px;
	width: 100%;
	height: 100%;
	max-height: 390px;
	z-index: 55;
	max-width: 300px;
	background-size: 300px 390px;
	display: block;
	left: 0;
	right: 0;
	margin: 0 auto;
}

@media (min-width: 768px) {
	#members ul.members li {
		margin: 0 30px 4rem;
	}

	#members ul.members li:nth-child(n + 4) {
		margin: 0 8px 4rem;
	}

	#members ul.members li:nth-child(n + 6) {
		margin: 0 8px 60px;
	}
}

@media (min-width: 576px) {
	#members ul.members {
		/*gap: 2%;*/
	}

	#members ul.members li a.name {
		font-size: 20px;
		margin-top: 20px;
	}

}

@media screen and (max-width:767px) {

	#members {
		margin: 80px 0 0;
		padding-bottom: 0;
	}

	.top-main-contents #members .container h2:before {
		background-size: contain;
	}

	#members ul.members {
		margin-bottom: 0;
	}

	#members ul.members li {
		margin: 0 0 3rem;
	}

	#members ul.members li:last-child {
		margin: 0 0 10px;
	}
}

@media (max-width: 575px) {

	#members ul.members li:after {
		background-position: top left 50!important%;
    background-size: 100%!important;
	}

	#members ul.members li a.name {
		margin-top: 30px;
		line-height: 2.3;
	}
}

@media screen and (max-width:991px) {
	#members:before {
		background-size: contain;
		background-repeat: no-repeat;
	}

	#members:after {
		background-size: contain;
		background-repeat: no-repeat;
		background-position: bottom;
	}
}

/*-----------------------------
  TOP-DISCOGRAPHY
-----------------------------*/

#top-discography {
	margin-bottom: 20px;
	position: relative;
}

.top-main-contents #top-discography.container h2 {
	margin: 0;
}

#top-discography .inbox {
	width: 100%;
	background: linear-gradient(1deg,rgba(129, 146, 232, 0.1) 0%, rgba(192, 199, 234, 0.45) 25%, rgba(255, 255, 255, 0.52) 75%, rgba(200, 209, 215, 0.77) 100%);
	padding: 0 295px 70px;
	position: relative;
	z-index: 10;
}

#top-discography .inbox a.btn.btn-main {
  max-width: 311px;
}

#top-discography dl {
	padding-top: 90px;
}

#top-discography dd {
	padding-top: 15px;
}

#top-discography dt {
	width: 100%;
	max-width: 500px;
	display: block;
	margin: 0 auto 30px;
	position: relative;
}

#top-discography dt:before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	max-width: 500px;
	height: 100%;
	background: #fff;
	top: 0;
	left: 0;
	transform: rotate(12deg);
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

#top-discography dt img {
	width: 100%;
	max-width: 500px;
	height: auto;
	position: relative;
	transform: rotate(5deg);
}

#top-discography dd .release {
	text-align: center;
	width: 100%;
	max-width: 228px;
	height: 37px;
	display: block;
	background: #fff;
	font-size: 25px;
	font-weight: bold;
	line-height: 1.7;
	margin: 0 auto;
	color: rgba(7, 34, 60, 0.7);
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}

#top-discography dd .release span {
	font-size: 14px;
	padding-left: 8px;
}

#top-discography dd .category {
	text-align: center;
	padding-top: 25px;
	font-size: 16px;
	font-weight: bold;
	color: #07223C;
}

#top-discography dd .title {
	padding: 0 0 50px;
	text-align: center;
	font-size: 50px;
	font-weight: bold;
	color: #07223C;
}

@media screen and (max-width:991px) {

	#top-discography {
		margin-bottom: 12px;
	}

	#top-discography .inbox {
		padding: 0 15px 52px;
	}

	#top-discography dt {
		width: 90%;
	}

	#top-discography dd .title {
		font-size: 35px;
		padding: 0 0 40px;
	}

	#top-discography .inbox a.btn.btn-main {
    width: 100%;
    max-width: 260px;
	}

}

@media (max-width: 645px) {
	#top-discography .inbox {
		padding: 0 15px 52px;
	}

	#top-discography dl {
		padding-top: 50px;
	}

	#top-discography dt {
		width: 80%;
	}
}

/*-----------------------------
  BIOGRAPHY
-----------------------------*/

#top-main-contents #biography dt {
margin: 0 auto 32px;
/*max-width: 800px;*/
}



/*-----------------------------
  FANCLUB
-----------------------------*/

#top-main-contents #fanclub dt {
	width:50%;
	max-width:450px;
	margin:0px auto 32px;
	text-align:center;
}

@media screen and (max-width: 767px) {
	
#top-main-contents #fanclub dt {
	width:100%;
}

}

/***** plan *****/
#service.service_single .plan {
	width:100%;
	margin:0 auto 32px;
	border-radius: .25rem;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	overflow: hidden;
}


#service.service_single .plan h3 {
	width:80%;
	max-width: 450px;
	margin:32px auto;
	padding: 0 16px;
}

#service.service_single .plan .description {
	padding:16px 16px 32px;
}

#service.service_single .plan .price {
	padding:16px;
	text-align:center;
}

#service.service_single .plan .registration a {
	padding:16px;
	border-top:solid 1px #DADCE0;
	text-align:center;
	display:block;
}

/*-----------------------------
  FANCLUB（複数プラン）
-----------------------------*/
#service.service_multiple .lead {
	font-size: 14px;
	margin-bottom: 64px;
}

/***** plan *****/

#service.service_multiple .plan {
margin-bottom: 0;
}

#service.service_multiple .plan ul {
	clear:both;
	text-align:center;
	padding: 10px 0;
}

#service.service_multiple .plan li {
	padding: 32px 0 0;
	box-sizing: border-box;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	border-radius: 3px;
}

#service.service_multiple .plan li dl  {
	margin:0 16px 32px;
}

#service.service_multiple .plan li dt  {
	margin-bottom:16px;
	font-weight: normal;
}

#service.service_multiple .plan li dt .plan_name {
	font-size:20px;
}

#service.service_multiple .plan li dd {
	text-align:left;
}

#service.service_multiple .plan li .registrations a {
	padding:16px 0;
	border-top: solid 1px #E0E0E0;
	display:block;
}


@media screen and (min-width: 768px) {

#service.service_multiple .plan ul {
	clear:both;
}

#service.service_multiple .plan li {
	display:inline-block;
	margin: 0px 1.5%;
}

#service.service_multiple .plan.plan-2 li {
	width:40%;
}

#service.service_multiple .plan.plan-3 li {
	width:30%;
	float: left;
	display: block;
}
	
}


@media screen and (max-width: 767px) {

#service.service_multiple .plan li {
	margin-bottom:32px;
}

}

/*-----------------------------
  PROFILE
-----------------------------*/

.top-main-contents #profile dt {
margin: 0 auto 32px;
}

/*-----------------------------
  banner
-----------------------------*/

.top-main-contents #link_list ul {
/*text-align: center;*/
overflow: hidden;
clear: both;
}

.top-main-contents #link_list li {
width: 100%;
max-width: 300px;
margin: 0 1.5% 16px;
display: inline-block;
}

.top-main-contents #link_list li a:hover {
opacity: 0.7;
}


@media screen and (max-width: 575px) {

.top-main-contents #link_list li {
max-width: 100%;
margin: 0 auto 16px;
display: inline-block;
}

}


/*-----------------------------
  fadein
-----------------------------*/
.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.fadein.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}