@charset "utf-8";

html {
	font-size: 62.5%;
	overflow-y: scroll;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
	color: #333;
}
*, *::before, *::after {
	box-sizing: border-box;
}
.clearfix::after {
	content: '';
	display: block;
	clear: both;
}
img {
	vertical-align: top;
}
a {
	transition: 0.2s;
}
a:link, a:visited, a:hover, a:active {
	text-decoration: none;
}

.inner {
	max-width: 1040px;
	width: 100%;
	margin: 0 auto;
	padding: 130px 20px 80px;
}

.smallFont {
	font-size: 1.2rem !important;
}

.pc {
	display: block;
}
.sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.inner {
		padding: 70px 10px 40px;
	}
}



/* -- ヘッダー -- */
header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 80px;
	background: #000;
	padding: 10px 0;
}
header .headerInner {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}
header h1 {
	float: left;
	height: 60px;
}
header h1 a {
	display: block;
}
header h1 a:hover {
	opacity: 0.8;
}
header h1 img {
	height: 60px;
	width: auto;
}
header nav {
	float: right;
	height: 60px;
}
header nav ul {
	font-size: 0;
	height: 60px;
	padding: 10px 0;
}
header nav ul li {
	display: inline-block;
	font-size: 1.8rem;
	height: 40px;
	line-height: 40px;
}
header nav ul li a {
	color: #fff;
	display: block;
	width: 100%;
	padding: 0 5px;
}
header nav ul li a::after {
	content: '';
	display: block;
	width: 0;
	margin: 0 auto;
	border-bottom: solid 2px #fff;
	transition: width 0.2s;
}
header nav ul li a:hover::after {
	width: 90%;
}


@media screen and (min-width: 769px) and (max-width: 800px) {
	header nav ul li {
		font-size: 1.6rem;
	}	
}

/* -- ヘッダー(sp) -- */
@media screen and (max-width: 768px) {
	header {
		height: 50px;
		padding: 5px 0;
	}
	header .headerInner {
		padding: 0 10px;
		height: 40px;
	}
	header h1 {
		height: 40px;
	}
	header h1 img {
		height: 40px;
		width: auto;
	}
	header nav p {
		font-size: 2.5rem;
		text-align: center;
		width: 40px;
		margin: 0 auto;
		position: absolute;
		top: 7px;
		right: 10px;
		color: #fff;
	}
	header nav p span {
		display: block;
		font-size: 1rem;
		font-weight: bold;
		margin: 0;
	}
	header nav ul {
		position: absolute;
		top: 50px;
		right: 0px;
		width: 100%;
		height: auto;
		padding: 0;
		display: none;
	}
	header nav ul li {
		width: 100%;
		padding: 0;
		height: 50px;
		line-height: 50px;
		text-align: center;
		background: rgba(0, 0, 0, 0.8);
		border-bottom: solid 1px #fff;
	}
	header nav ul li a:hover::after {
		width: 0;
	}
}

@media screen and (min-width: 769px) {
	header ul {
		display: block!important;
	}
}


/* -- トップに戻る -- */
.toTop {
	position: fixed;
	bottom: 40px;
	right: 3%;
	text-align: center;
	width: 70px;
	height: 70px;
	padding-top: 7px;
	border: 2px solid #333;
	border-radius: 50%;
	display: none;
	transition: 0.2s;
	cursor: pointer;
}
.toTop p {
	font-size: 2rem;
}
.toTop i {
	font-size: 3rem;
}
.toTop:hover {
	color: #fff;
	background: #333;
}


@media screen and (max-width: 768px) {
	.toTop {
		right: 10px;
		bottom: 20px;
		width: 50px;
		height: 50px;
		padding-top: 5px;
		background: rgba(255, 255, 255, 0.3);
	}
	.toTop p {
		font-size: 1.5rem;
	}
	.toTop i {
		font-size: 2rem;
	}
	.toTop:hover {
		color: #333;
		background: rgba(255, 255, 255, 0.3);
	}
}




/* -- 背景スライダー -- */
.slider {
	position: relative;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	background-position: center top;
	background-repeat: no-repeat;
	text-align: center;
	background-image: url(../img/2017-02.04.jpg);
	background-size: cover;
}
.slider {
	background-position: center top\9;
	background-repeat: repeat-x\9;
}
* + html .slider {
	background-position: center top;
	background-repeat: repeat-x;
}
.slider div {
	position: absolute;
	bottom: 40px;
	left: 0;
	right: 0;
	margin: 0 auto;
	color: #fff;
}
.slider div p {
	font-size: 2rem;
	display: inline-block;
	padding: 5px;
	border: 2px solid #fff;
	border-radius: 4px;
}
.slider div i {
	font-size: 7rem;
	display: block;
	margin-top: -10px;
}

@media screen and (max-width: 768px) {
	.slider {
		margin-top: 50px;
		height: auto;
		padding-top: 66.6666%;
		background-size: 100%;
	}
	.slider div {
		display: none!important;
		bottom: 15px;
	}
}

/* -- thanksパーツ -- */
.slider::before {
	position: absolute;
	content: '';
	display: block;
	background: black;
	opacity: 0.5;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}
.slider::after {
	position: absolute;
	content: '';
	background: url(../img/thanks02.png) no-repeat center top;
	background-size: contain;
	top: 55%;
	left: 0;
	right: 0;
	border-top: 0;
	margin: auto;
	width: 100%;
	height: 260px;
}
.slider div {
	opacity: 0.6;
}

@media screen and (max-width: 769px) {
	.slider::before {
		padding-top: 66.6666%;
		height: auto;
	}
	.slider::after {
		top: 45%;
		height: auto;
		width: 80%;
		padding-top: 30%;
	}
}
/*
.thankswp {
	position: absolute;
	z-index: 100;
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	margin-top: -20px;
	width: 100%;
	height: 40px;
}
.thanks {
	color: rgba(255, 255, 255, 1);
	font-size: 8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.7;
}
*/




/* -- メイン -- */
.main {
	float: left;
	width: 65%;
}
.sidebar {
	float: right;
	width: 30%;
}
.title {
	border-bottom: 4px solid #333;
	padding-bottom: 10px;
}
.title h2 {
	float: left;
	font-size: 2.5rem;
	letter-spacing: -1px;
}
.title p {
	float: right;
	font-size: 1.2rem;
	margin-top: 7px;
	transition: 0.2s;

	/* ちらつき防止 */
	-webkit-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
	-webkit-transform: translateZ(0);
}
.title p a {
	padding: 5px 10px;
	color: #fff;
	background: red;
}
.title p a i {
	margin-right: 3px;
}
.title p:hover {
	opacity: 0.7;
}

@media screen and (max-width: 768px) {
	.title p:hover {
		opacity: 1;
	}
}


/* -- トップ -- */
#top .wrapper {
	margin-top: 0;
}
#top .inner {
	padding-top: 50px;
}

#top .topVideo {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	margin-bottom: 30px;
}
#top .topVideo iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


#top .eyechatch {
	margin-top: 20px;
	margin-bottom: 60px;
}
#top .eyechatch a {
	display: block;
}
#top .eyechatch img {
	width: 100%;
}


.main dl {
	margin: 20px 0 60px;
	font-size: 1.4rem;
	border-bottom: 2px dotted #ccc;
}
.main dt {
	padding: 20px 10px 0px;
	color: #ccc;
	font-size: 1.2rem;
}
.main dt:first-of-type {
	border-top: 2px dotted transparent;
}
.main dt:not(:first-of-type) {
	border-top: 2px dotted #ccc;
}
.main dd {
	padding: 5px 10px 15px;
}
.main dd a {
	display: block;
	text-decoration: underline;
	color: #333;
	padding-right: 10px;
	line-height: 1.5;
}
.main dd a:hover {
	text-decoration: none;
}


.main ul.topLive {
	margin: 0;
	list-style: none;
	margin: 20px 0 60px;
	font-size: 1.4rem;
}
.main ul.topLive li {
	padding: 20px 10px;
	border-bottom: 2px dotted #ccc;
}
.main ul.topLive li a {
	color: #333;
	text-decoration: underline;
	display: block;
	line-height: 1.5
}
.main ul.topLive li a:hover {
	text-decoration: none;
}



@media screen and (max-width: 768px) {
	#top .inner {
		padding-top: 30px;
	}
	.inner {
		padding-bottom: 10px;
	}
	.main {
		width: 100%;
	}
	.main dl {
		margin-top: 0;
	}
	.main dt {
		text-align: left;
		width: 100%;
		padding: 20px 10px 0px 0;
	}
	.main dd {
		padding-left: 0px;
		padding-right: 0;
	}
	.main dd a:hover {
		text-decoration: underline;
	}
	.main ul.topLive li {
		padding: 15px 0;
	}
}


.sidebar h3 {
	font-size: 2rem;
	letter-spacing: -1px;
	margin-bottom: 10px;
}
.sidebar .sideContents {
	margin-bottom: 45px;
}
.sidebar .sideVideo {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.sidebar .sideVideo iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.sidebar span {
	font-size: 1.4rem;
}
.sidebar .nextLive a {
	color: #333;
	font-size: 1.4rem;
	text-decoration: underline;
	line-height: 1.5;
}
.sidebar .nextLive a:hover {
	text-decoration: none;
}
.sidebar .membersLink {
	margin-bottom: 10px;
}
.sidebar .membersLink span {
	margin-right: 10px;
}
.sidebar .membersLink a {
	color: #808080;
	font-size: 1.3rem;
	margin-right: 8px;
}
.sidebar .membersLink a:hover {
	color: #333;
}
.sidebar .magazine a,
.sidebar .webShop a,
.sidebar .download a {
	display: block;
	padding: 15px;
	color: #fff;
	font-size: 2rem;
}
.sidebar .magazine a:hover,
.sidebar .webShop a:hover,
.sidebar .download a:hover {
	background: #fff;
	color: #333;
}
.sidebar .magazine,
.sidebar .webShop,
.sidebar .download {
	text-align: center;
	border: 3px solid #808080;
	margin-bottom: 10px;
}
.sidebar .magazine a {
	background: #09102c;
}
.sidebar .webShop a {
	background: purple;
}
.sidebar .download a {
	background: #000;
}


/* -- メイン(SP) -- */
@media screen and (max-width: 768px) {
	.sidebar {
		width: 100%;
	}
	.sidebar .nextLive a:hover {
		text-decoration: underline;
	}
	.sidebar .membersLink a:hover {
		color: #808080;
	}
	.sidebar .download {
		margin-bottom: 50px;
	}
	.sidebar .magazine a:hover,
	.sidebar .webShop a:hover,
	.sidebar .download a:hover {
		color: #fff;
	}
	.sidebar .magazine a:hover {
		background: #09102c;
	}
	.sidebar .webShop a:hover {
		background: purple;
	}
	.sidebar .download a:hover {
		background: #000;
	}
}

/* -- ムービーモーダル -- */
.videoModal {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.9);
	width: 100%;
	text-align: center;
	display: none;
	z-index: 100;
}
.videoModal div {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 640px;
	height: 360px;
}
.videoModal iframe {
	width: 100%;
	height: 100%;
}
.videoModal i {
	position: absolute;
	top: -15px;
	right: -15px;
	color: #fff;
	margin: auto;
	height: 30px;
	width: 30px;
	line-height: 26px;
	font-size: 1.8rem;
	cursor: pointer;
	border: 2px solid #fff;
	border-radius: 50%;
	transition: 0.2s;
}
.videoModal i:hover {
	background: #fff;
	color: #333;
}

@media screen and (max-width: 768px) {
	.videoModal iframe {
		width: 100%;
		height: auto;
	}
}


/* -- sns -- */
.sns {
	text-align: center;
}
.sns ul {
	font-size: 0;
}
.sns ul li {
	display: inline-block;
	margin: 0 50px;
}
.sns ul li a {
	color: #fff;
	background: #333;
	font-size: 3rem;
	border: 2px solid #333;
	border-radius: 50%;
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 46px;
}
.sns li:last-child a {
}
.sns li a:hover {
	background: #fff;
	color: #333;
}

@media screen and (max-width: 768px) {
	.sns ul li {
		margin: 0 10px;
	}
	.sns li a:hover {
		background: #333;
		color: #fff;
	}
}


/* -- フッター -- */
footer {
	padding: 80px 0;
	text-align: center;
}

@media screen and (max-width: 768px) {
	footer {
		padding: 40px 0;
	}
}



/* -- トピックス -- */
#topics .main dt {
	padding: 20px 10px 0px;
}
#topics .main dd {
	padding-bottom: 0;
}
#topics .main dd p.detailsBtn {
	padding: 5px 0;
	color: #333;
	cursor: pointer;
	margin-bottom: 15px;
	padding-right: 20px;
	position: relative;
	font-size: 1.6rem;
	line-height: 1.5;
}
#topics .main dd p.detailsBtn span {
	font-weight: bold;
	text-decoration: underline;
}
#topics .main dd p.detailsBtn span:hover {
	text-decoration: none;
}
#topics .main dd p.detailsBtn::after {
	content: '\f150';
	font-family: FontAwesome;
	position: absolute;
	top: 3px;
	right: 0;
	transition: 0.5s;
	font-size: 1.4rem;
	font-weight: normal;
}
#topics .main dd p.detailsBtn.active::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
#topics .main dd .details {
	display: none;
	padding-bottom: 35px;
}
#topics .main dd .details p {
	line-height: 1.5;
}
#topics .main dd .details p.secondLine {
	margin-left: 1em;
	line-height: 1.5;
}
#topics .main dd .details img {
	width: 70%;
	display: block;
	margin: 20px auto;
}
#topics .main dd .details a {
	display: inline;
	padding: 0;
}
#topics .main dd .details .infoText {
	margin-top: 20px;
	font-size: 1.2rem;
}
#topics .main dd .details .infoText a i {
	font-size: 1rem;
	color: #808080;
	margin: 0 2px;
}

#topics .infoVideo {
	position: relative;
	width: 70%;
	padding-top: 39.375%;
	margin: 30px auto;
}
#topics .infoVideo iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#topics .goodsWp {
	font-size: 0;
	margin-top: 30px;
}
#topics .goodsList {
	font-size: 1.4rem;
	display: inline-block;
	width: 50%;
	margin-bottom: 30px;
}
#topics .main .details .goodsList img {
	margin: 20px 0 0;
}
#topics .goodsList:last-of-type {
	width: 100%;
}
#topics .main .details .goodsList:last-of-type img {
	float: left;
	width: 48%;
}
#topics .main .details .goodsList:last-of-type img:nth-of-type(2) {
	float: right;
}
#topics .main dd .details img.photobook {
	border: 3px solid #ccc;
}
#hyakka {
	font-size: 1.6rem;
}
/* -- アフターコメント用パーツ -- */
#topics .main dd .details img.ph_lastlive01 {
	width: 90%;
}
@media screen and (max-width: 768px) {
	#topics .main dd .details img.ph_lastlive01 {
		width: 100%;
	}
}
/* -- ラストメッセージ用パーツ -- */
#topics .main dd:first-of-type .details {
	display: block;
/*	text-align: center; */
}
#topics .sign {
	text-align: right; 
}



@media screen and (max-width: 768px) {
	#topics .main dt {
		padding: 20px 0 0px;
	}
	#topics .main dd p.detailsBtn {
		font-size: 1.4rem;
		font-weight: bold;
	}
	#topics .main dd p.detailsBtn span:hover {
		text-decoration: underline;
	}
	#topics .infoVideo {
		width: 100%;
		padding-top: 56.25%;
	}
	#topics .goodsList {
		width: 100%;
	}
	#topics .main .details .goodsList img {
		margin: 20px auto 0;
	}
	#topics .main .details .goodsList:last-of-type img {
		float: none;
		width: 70%;
	}
	#topics .main .details .goodsList:last-of-type img:nth-of-type(2) {
		float: none;
	}
}



/* -- ライブ -- */
#live dt {
	width: 100%;
	text-align: left;
	padding: 24px 0px 0;
	color: #333;
	font-size: 1.6rem;
	border-top: none;
	font-weight: bold;
}
#live dt span {
	font-size: 1.2rem;
	font-weight: normal;
	margin-left: 10px;
}
#live dd {
	padding: 14px 10px 14px 0px;
}
#live dt:first-of-type {
	border-top: 2px dotted transparent;
}
#live dt:not(:first-of-type) {
	border-top: 2px dotted #ccc;
}
#live dd h3 {
	font-size: 1.6rem;
	margin-bottom: 10px;
	font-weight: normal;
}
#live dd h4 {
	font-size: 1.8rem;
	font-weight: normal;
	margin: 10px 0;
	line-height: 1.5;
}
#live dd p {
	line-height: 1.5;
}
#live dd .liveInfo {
	margin-top: 20px;
}
#live dd img {
	width: 30%;
}
#live dd .ticketInfo {
	margin-top: 20px;
	font-size: 1.2rem;
}
#live dd .ticketInfo a {
	display: inline;
	padding: 0;
}
#live dd .ticketInfo a:nth-of-type(1) {
	margin-right: 10px;
}
#live .ticket {
	margin: 20px 0;
	display: inline-block;
}
#live .ticket a {
	padding: 0;
	margin-bottom: 0;
}
#live .oneman_625 {
	width: 100%;
}
@media screen and (max-width: 768px) {
	#live dl {
		margin-top: 20px;
	}
}



/* -- バイオ -- */
#about {
	text-align: center;
}
#about .title {
	position: relative;
	margin-bottom: 50px;
}
#about .aboutNav {
	position: absolute;
	top: 0;
	right: 0;
}
#about .aboutNav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0;
}
#about .aboutNav li {
	display: inline-block;
	margin-left: 10px;
	border: 2px solid #333;
	border-radius: 5px;
}
#about .aboutNav a {
	padding: 5px 10px;
	display: block;
	color: #333;
	font-size: 1.4rem;
	font-weight: bold;
}
#about .aboutNav a:hover {
	background: #333;
	color: #fff;
}
#about img.topPic {
	width: 60%;
}

@media screen and (max-width: 768px) {
	#about .title {
		margin-bottom: 65px;
	}
	#about .aboutNav {
		position: absolute;
		top: 50px;
		right: 0;
		left: 0;
	}
	#about .aboutNav a:hover {
		background: #fff;
		color: #333;
	}
	#about img.topPic {
		width: 100%;
	}
}


#abWasabi {
	margin: 80px 0;
}
#abWasabi h3 {
	margin: 50px 0;
	width: 150px;
	margin: 0 auto;
}
#abWasabi h3 img {
	width: 100%;
}
#abWasabi p {
	margin: 50px 0 0;
	font-size: 1.5rem;
	line-height: 2;
}



#abMember ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0;
}
#abMember li {
	display: inline-block;
	width: 33.3333%;
	padding: 30px;
}
#abMember li.sp {
	display: none;
}
#abMember h3 {
	font-size: 3rem;
	margin-bottom: 20px;
}
#abMember img {
	width: 100%;
	margin-bottom: 15px;
}
#abMember h4 {
	font-size: 1.5rem;
	margin-bottom: 15px;
}
#abMember p {
	font-size: 1.3rem;
	margin-bottom: 15px;
}
#abMember a {
	font-size: 2rem;
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 31px;
	border: 2px solid #333;
	border-radius: 50%;
	background: #333;
	color: #fff;
	margin: 0 7px;
}
#abMember a + a {
	padding-left: 2px
}
#abMember a:hover {
	background: #fff;
	color: #333;
}

@media screen and (max-width: 768px) {
	#abMember li {
		width: 49%;
		padding: 0;
		vertical-align: middle;
		margin-bottom: 20px;
	}
	#abMember li.sp {
		display: inline-block;
	}
	#abMember li:nth-child(odd) {
		margin-right: 1%;
	}
	#abMember li:nth-child(even) {
		margin-left: 1%;
	}
	#abMember a:hover {
		background: #333;
		color: #fff;
	}
}

#abBio {
	margin: 50px 0;
}
#abBio h3 {
	font-size: 3rem;
	margin-bottom: 50px;
}
#abBio h4 {
	font-size: 1.8rem;
	margin-bottom: 20px;
}
#abBio h4:not(:first-of-type) {
	margin-top: 40px;
}
#abBio p {
	font-size: 1.3rem;
	line-height: 2;
	margin-bottom: 20px;
}



/* -- ディスク(インデックス) -- */
#disco .discoWp {
	padding-top: 20px;
}
#disco .main ul {
	margin: 10px 0 50px;
	padding: 0;
	list-style: none;
	font-size: 0;
}
#disco .main li {
	display: inline-block;
	width: 33.3333%;
	padding: 10px 10px 20px;
	margin-bottom: 20px;
	vertical-align: top;
}
#disco .main li.category {
	color: #333;
	font-size: 3rem;
	text-align: center;
	padding-top: 25%;
}
#disco .main li a {
	color: #333;
	display: block;
}
#disco .main li:first-child a {
	width: 100%;
	height: 250px;
}
#disco .main li img {
	width: 100%;
	margin-bottom: 10px;
	transition: 0.2s;
	backface-visibility: hidden;
}
#disco .main li a:hover img {
	opacity: 0.8;
}
#disco .main li p {
	line-height: 1.5;
}
#disco .main li .release {
	font-size: 1.2rem;
	color: #808080;
}
#disco .main li .cdTitle {
	font-size: 1.8rem;
	text-decoration: underline;
}
#disco .main li:hover .cdTitle {
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	#disco .main ul {
		margin-top: 0px;
	}
	#disco .main li {
		width: 50%;
		padding: 0px 10px 20px;
		margin-bottom: 20px;
		vertical-align: top;
	}
	#disco .main li a:hover img {
		opacity: 1;
	}
	#disco .main li:hover .cdTitle {
		text-decoration: underline;
	}
}


/* -- ディスク(詳細) -- */
#disc .discWrap {
	margin-top: 50px;
	margin-bottom: 20px;
	font-size: 0;
}
#disc .discLeft {
	display: inline-block;
	width: 45%;
	vertical-align: top;
	text-align: center;
}
#disc .discRight {
	display: inline-block;
	width: 55%;
	padding: 10px 20px;
}
#disc .discLeft img {
	width: 100%;
	margin-bottom: 20px;
}
#disc .discLeft a {
	display: inline-block;
	font-size: 1.2rem;
	padding: 5px 15px;
	border-radius: 3px;
	background: red;
	color: #fff;
}
#disc .discLeft a:hover {
	opacity: 0.7;
}
#disc .discRight .release {
	font-size: 1.2rem;
	color: #808080;
	margin-bottom: 10px;
}
#disc .discRight .discTitle {
	font-size: 1.6rem;
	margin-bottom: 20px;
	font-weight: bold;
}
#disc .discRight .price {
	font-size: 1.2rem;
}
#disc .discRight ul {
	margin: 30px 0;
	padding: 0;
	list-style: none;
	font-size: 1.4rem;
}
#disc .discRight ul li {
	margin-bottom: 15px;
}
#disc .discRight span.musicList {
	margin-right: 5px;
}
#disc .discRight span.musicTitle {
	margin-right: 15px;
}
#disc .discRight a {
	color: #333;
	margin-right: 5px;
}
#disc .discBack a {
	font-size: 1.2rem;
	color: #333;
	text-decoration: underline;
}
#disc .discBack a:hover {
	text-decoration: none;
}
#disc .discBack a i {
	font-size: 1.4rem;
	margin-right: 5px;
}

@media screen and (max-width: 768px) {
	#disc .discWrap {
		margin-top: 20px;
	}
	#disc .discLeft {
		width: 100%;
		text-align: center;
		margin-bottom: 40px;
	}
	#disc .discRight {
		display: inline-block;
		width: 100%;
		padding: 0;
	}
	#disc .discLeft a:hover {
		opacity: 1;
	}
	#disc .discBack {
		margin-bottom: 50px;	
	}
	#disc .discBack a:hover {
		text-decoration: underline;
	}
}



/* -- ビデオ -- */
#video .videowp ul {
	margin: 20px 0 0;
	padding: 20px 0 0;
	list-style: none;
	font-size: 0;
}
#video .videowp li {
	display: inline-block;
	width: 50%;
	padding: 0 20px;
	margin-bottom: 50px;
}
#video .videowp div {
	margin: 0 auto 20px;
}
#video .videowp img {
	width: 100%;
	cursor: pointer;
	backface-visibility: hidden;
	transition: 0.2s;
}
#video .videowp img:hover {
	opacity: 0.8;
}
#video .videowp .vRelease {
	font-size: 1.2rem;
	color: #808080;
	margin-bottom: 10px;
}
#video .videowp .vTitle {
	font-size: 2rem;
}

@media screen and (max-width: 768px) {
	#video .videowp ul {
		margin: 0 0 30px;
	}
	#video .videowp li {
		width: 100%;
		padding: 0 5px;
		margin-bottom: 50px;
	}
	#video .videowp div {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
		margin-bottom: 10px;
	}
	#video .videowp iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}



/* -- フォーム関連 -- */
#formWrap {
	width: 100%;
	margin: 20px auto 50px;
	color: #333;
	line-height: 1;
	font-size: 1.2rem;
}
#formWrap select.mailHead,
#formWrap input[type="text"],
#formWrap textarea {
	width: 100%;
	font-size: 1.6rem;
}
#formWrap select.sheet {
	font-size: 1.6rem;
}
#formWrap .formTable {
	width: 100%;
	margin: 0 auto 15px;
	border-collapse: collapse;
}
#formWrap td,
#formWrap th {
	border: 1px solid #ccc;
	padding: 10px;
}
#formWrap th{
	width:30%;
	text-align:left;
  vertical-align: top;
}
#formWrap .mailComp {
	font-size: 1.4rem;
	line-height: 1.5;
}