@charset "utf-8";
/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通ベースラインCSS
===================================================================== */

/* =====================================================================
*    共通・大枠
* =================================================================== */
html {
	font-family: "Mplus 1p", "メイリオ", "ＭＳ Ｐゴシック", "小塚ゴシック Pro R", "ヒラギノ角ゴ Pro W3", "Meiryo", "MS PGothic", "KozGoPro-Regular", "Hiragino Kaku Gothic Pro", "MS UI Gothic", Osaka, sans-serif;
	font-size: 10px;
	font-size: 3.125vw;
	line-height: 1.4;
}

.wrapper {
	position: relative;
	z-index: 10;
	padding-top: 20.3125%;
	padding-bottom: 19.625%;
}

img {
	width: 100%;
	height: auto;
	display: block;
}

@media screen and (min-width:640px){
	html {
		font-size: 20px;
	}
}

@media screen and (min-width:700px){
	html {
		font-size: 0.78125vw;
	}

	.wrapper {
		padding-top: 7.8125%;
		padding-bottom: 0;
	}
}

@media screen and (min-width:1280px){
	html {
		font-size: 10px;
	}

	.wrapper {
		padding-top: 100px;
	}
}

@media screen and (max-width:640px){
	.pc {
		display: none !important;
	}
}

@media screen and (min-width:700px){
	.sp {
		display: none !important;
	}
}

/* =====================================================================
*    #bgMovie
* =================================================================== */
.bgMovie {
	width: 100%;
	height: 100%;
	position: fixed;
}

.bgMovie::before {
	content:"";
	width:100%;
	height:100vh;
	display:block;
	background: url(../images/bg_cover.png) repeat center top;
	background-size: 2px auto;
	position:fixed;
	top:0;
	left:0;
	z-index: 1;
}

.bgMovie::after {
	content:"";
	width:100%;
	height:700vh;
	display:block;
	background: url(../images/bg_gradation.png) repeat-x center top;
	background-size: auto 100%;
	position:fixed;
	bottom: 0;
	left:0;
	z-index:2;
	animation: bg_gradation 30s infinite normal linear;
}

@keyframes bg_gradation {
	0% {bottom: 0;}
	100% {bottom: -600%;}
}

.bgMovie .bgMovie__list {
  position: fixed;
  z-index: -1;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.bgMovie .bgMovie__list.showBgMovie {
	opacity: 1;
}

/* =====================================================================
*    #header
* =================================================================== */
.header {
	width: 100%;
	background-color: #e5117c;
	position: absolute;
	top: 0;
	z-index: 10000;
}

.header__logo {
	width: 53.125%;
	padding-top: 3.75%;
	padding-bottom: 3.75%;
	margin: auto;
}

@media screen and (min-width:640px){
	.header__logo {
		width: 340px;
		padding-top: 24px;
		padding-bottom: 24px;
	}
}

@media screen and (min-width:700px){
	.header {
		position: fixed;
		top: 0;
	}

	.header__logo {
		width: 16.5625%;
		padding-top: 1.875%;
		padding-bottom: 1.875%;
		position: relative;
		left: 50%;
		margin-left: -39.609375%;
	}
}

@media screen and (min-width:1280px){
	.header__logo {
		width: 212px;
		padding-top: 24px;
		padding-bottom: 24px;
		margin-left: -506px;
	}
}

/* #header__nav */
.header__nav {
	width: 100%;
	position: fixed;
	bottom: 0;
	transition: all 0.5s ease;
}

.header__nav.hideNav {
	bottom: -20px;
	opacity: 0;
}

.header__nav__ul {
	letter-spacing: -.40em;
	text-align: center;
	background-color: #e5117c;
}

.header__nav__ul li {
	width: 23.4375%;
	display: inline-block;
	vertical-align: top;
	position: relative;
}

.header__nav__ul li:not(:last-child) {
	margin-right: 1.5625%;
}

.header__nav__ul li:not(:last-child)::after {
	content: "";
	width: 0;
	height: 55%;
	display: block;
	border-right: 1px dotted #ffea38;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: -2.6667%;
	margin: auto;
}

.header__nav__ul li a {
	display: block;
	padding-top: 22%;
	padding-bottom: 22%;
}

@media screen and (min-width:640px){
	.header__nav__ul li {
		width: 150px;
	}

	.header__nav__ul li:not(:last-child) {
		margin-right: 10px;
	}

	.header__nav__ul li:not(:last-child)::after {
		border-right: 2px dotted #ffea38;
	}
}

@media screen and (min-width:700px){
	.header__nav {
		width: 50%;
		position: absolute;
		left: 50%;
		margin-left: -7.03125%;
	}

	.header__nav.hideNav {
		bottom: 0;
		opacity: 1;
	}

	.header__nav__ul {
		padding-top: 3.125%;
		padding-bottom: 1.125%;
	}

	.header__nav__ul li {
		width: 23.4375%;
		padding-top: 2.03125%;
		padding-bottom: 2.03125%;
	}

	.header__nav__ul li a {
		padding-top: 0;
		padding-bottom: 0;
		transition: opacity 0.1s ease;
	}

	.header__nav__ul li a:hover {
		opacity: 0.6;
	}
}

@media screen and (min-width:1280px){
	.header__nav {
		width: 640px;
		margin-left: -90px;
	}

	.header__nav__ul li {
		width: 150px;
	}
}

/* =====================================================================
*    #main
* =================================================================== */
.main {
	position: relative;
	display:block;
}

.main__mainTitle {
	font-size: 3.0rem;
	line-height: 1em;
	font-weight: 600;
	color: #FFF;
	text-align: center;
	position: relative;
	opacity: 0;
	top: 20px;
	padding-top: 19.6875%;
	transition: all 0.5s ease;
}

.main__mainTitle.show {
	opacity: 1;
	top: 0;
}


.main__mainTitle::before {
	content: "";
	width: 15.625%;
	height: 0;
	padding-top: 15.625%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.main__subTitle {
	font-size: 1.8rem;
	line-height: 1.6em;
	font-weight: 600;
	transform: rotate(0.028deg);
	color: #FFF;
	text-align: center;
	position: relative;
	padding-top: 7.5%;
	padding-bottom: 7.5%;
}

.main__subTitle::before {
	content: "";
	width: 0.3125%;
	height: 0;
	padding-top: 4.6875%;
	display: block;
	background-color: #ffea38;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.main__subTitle::after {
	content: "";
	width: 0.3125%;
	height: 0;
	padding-top: 4.6875%;
	display: block;
	background-color: #ffea38;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.main__btnBase {
	width: 87.5%;
	margin: auto;
}

.main__btnBase a {
	width: 100%;
	font-size: 1.4rem;
	line-height: 1.2858em;
	text-align: center;
	font-weight: 600;
	color: #FFF;
	text-decoration: none;
	display: block;
	background-color: #e5117c;
	transform: rotate(0.028deg);
	border-radius: 300px;
  box-shadow: 0px 7px 8px 0px rgba(0, 0, 0, 0.15);
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	padding: 6.1539% 10.7143%;
	margin-bottom: 15px;
	transition: background-color 0.3s ease;
}

.main__btnBase a:hover {
	background-color: #00d2e5;
}

.main__btnBase a::after {
	content: "";
	width: 2.8572%;
	height: 0;
	padding-top: 4.6429%;
	display: block;
	background: url(../images/bg_btnBase_arrow.png) no-repeat center top;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto 5.3572% auto auto;
}

@media screen and (min-width:700px){
	.main__mainTitle {
		width: 100%;
		max-width: 1280px;
		font-size: 5.4rem;
		line-height: 1.1112em;
		padding-top: 8.59375%;
		margin: auto;
	}

	.main__mainTitle::before {
		width: 7.03125%;
		padding-top: 7.03125%;
	}

	.main__subTitle {
		width: 100%;
		max-width: 1280px;
		font-size: 3.2rem;
		line-height: 1.25em;
		padding-top: 3.125%;
		padding-bottom: 3.125%;
		margin: auto;
	}

	.main__subTitle::before {
		width: 0.15625%;
		padding-top: 2.34375%;
	}

	.main__subTitle::after {
		width: 0.15625%;
		padding-top: 2.34375%;
	}

	.main__btnBase {
		width: 28.90625%;
		max-width: 370px;
	}

	.main__btnBase a {
		font-size: 1.8rem;
		line-height: 1.1112em;
	  box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.15);
		padding: 6.7568% 13.5136%;
		margin-bottom: 30px;
	}
}

@media screen and (min-width:1280px){
	.main__mainTitle {
		padding-top: 110px;
	}

	.main__subTitle {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

/* #MusicList
---------------------------------------------------------- */
.MusicList {
	padding-top: 9.375%;
}

@media screen and (min-width:700px){
	.MusicList {
		padding-top: 7.8125%;
	}
}

@media screen and (min-width:1280px){
	.MusicList {
		padding-top: 100px;
	}
}

/* #MusicList .titleList */
.MusicList .titleList {
	width: 87.5%;
	text-align: center;
	position: relative;
	margin: auto;
}

.MusicList .titleList li {
	width: 100%;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.5s linear;
}

.MusicList .titleList li:first-child {
	position: relative;
}
.MusicList .titleList li.showTitle {
	z-index: 10;
	opacity: 1;
}

.MusicList .titleList .songTitle strong {
	font-size: 2.4rem;
	line-height: 1.2em;
	letter-spacing: 0.075em;
	font-weight: 600;
}

.MusicList .titleList .songSinger {
	font-size: 1.2rem;
	line-height: 1em;
	transform: rotate(0.028deg);
	margin-top: 5.3572%;
}

.MusicList .titleList .btn_playMovie {
	width: 43.5715%;
	margin: 5.3572% auto auto;
}

@media screen and (min-width:700px){
	.MusicList .titleList {
		width: 100%;
		max-width: 1280px
	}

	.MusicList .titleList .songTitle strong {
		font-size: 3.8rem;
		line-height: 1em;
		letter-spacing: 0.075em;
	}

	.MusicList .titleList .songSinger {
		font-size: 1.9rem;
		line-height: 1em;
		margin-top: 2.34375%;
	}

	.MusicList .titleList .btn_playMovie {
		width: 15.625%;
		margin: 1.953125% auto auto;
	}

	.MusicList .titleList .btn_playMovie a {
		width: 100%;
		height: auto;
		display: block;
		position: relative;
		overflow: hidden;
	}

	.MusicList .titleList .btn_playMovie a::before {
		content: "";
		width: 100%;
		height: 0;
		padding-top: 20%;
		display: block;
		background: url(../images/btn_playMovie_pc.png) no-repeat center top;
		background-size: 100% auto;
		position: relative;
		transition: opacity 0.1s ease;
	}

	.MusicList .titleList .btn_playMovie a:hover::before {
		opacity: 0.6;
	}

	.MusicList .titleList .btn_playMovie a img {
		display: none;
	}
}

/* #MusicList .thumbnailList */
.MusicList .thumbnailList_wrap {
	margin-top: 9.375%;
	overflow: hidden;
	padding-bottom: 15px;
}

.MusicList .thumbnailList {
	letter-spacing: -.40em;
	position: absolute;
	top: 0;
}

.MusicList .thumbnailList li {
	display: inline-block;
	vertical-align: top;
	position: relative;
  box-shadow: 0px 7px 8px 0px rgba(0, 0, 0, 0.15);
}

.MusicList .thumbnailList li::after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, 0.6);
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.2s ease;
}

.MusicList .thumbnailList li.noMask::after {
	opacity: 0;
}

@media screen and (min-width:700px){
	.MusicList .thumbnailList {
		width: 100%;
		max-width: 1280px;
		text-align:  center;
		position: relative;
		margin: auto;
		padding-bottom: 30px;
	}

	.MusicList .thumbnailList li {
		width: 25%;
		box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.15);
		margin: 2.34375% 2.34375% auto;
	}

	.MusicList .thumbnailList li:not(.noMask)::after {
		display: none;
	}

	.MusicList .thumbnailList li a {
		display: block;
		position: relative;
		transition: opacity 0.1s ease;
	}

	.MusicList .thumbnailList li a:hover {
		opacity: 0.6;
	}

	.MusicList .thumbnailList li:not(.noMask) a::after {
		content: "";
		width: 100%;
		height: 100%;
		display: block;
/*		background-color: rgba(0, 0, 0, 0.6); */
		position: absolute;
		top: 0;
		left: 0;
	}
}

/* .archives */
.archives_wrap {
	margin-top: 9.375%;
	overflow: hidden;
	padding-bottom: 15px;
}

.archives {
	letter-spacing: -.40em;
	top: 0;
	text-align: center;
	margin-bottom: 15%;
}

.archives li {
	width: 60%;
	margin: 2% 0;
	display: inline-block;
	vertical-align: top;
	position: relative;
  box-shadow: 0px 7px 8px 0px rgba(0, 0, 0, 0.15);
}

.archives li::after {
		opacity: 0;
}

.archives li.noMask::after {

}

@media screen and (min-width:700px){
	.archives {
		width: 100%;
		max-width: 1280px;
		text-align:  center;
		position: relative;
		margin: auto;
		padding-bottom: 30px;
	}

	.archives li {
		width: 25%;
		box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.15);
		margin: 2.34375% 2.34375% auto;
	}

	.archives li:not(.noMask)::after {
		display: none;
	}

	.archives li a {
		display: block;
		position: relative;
		transition: opacity 0.1s ease;
	}

	.archives li a:hover {
		opacity: 0.6;
	}

	.archives li:not(.noMask) a::after {
		content: "";
		width: 100%;
		height: 100%;
		display: block;
/*		background-color: rgba(0, 0, 0, 0.6); */
		position: absolute;
		top: 0;
		left: 0;
	}
}

/* #shareWrap
---------------------------------------------------------- */
.shareWrap {
	position: relative;
	margin-top: 3.125%;
	padding-bottom: 17.5%;
}

.shareWrap::after {
	content: "";
	width: 1.25%;
	height: 0;
	padding-top: 5%;
	display: block;
	background: url(../images/icon_scrollArrow.png) no-repeat center top;
	background-size: 100% auto;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto auto 3.125%;
}

.shareWrap .title {
	width: 8.4375%;
	margin: auto;
}

.shareWrap .shareList {
	letter-spacing: -.40em;
	text-align: center;
	margin-top: 2.5%;
}

.shareWrap .shareList li {
	width: 14.0625%;
	display: inline-block;
	margin: auto 3.90625%;
}

@media screen and (min-width:700px){
	.shareWrap {
		width: 100%;
		max-width: 1280px;
		margin: 0 auto auto;
		padding-bottom: 0;
	}

	.shareWrap::after {
		width: 0.625%;
		padding-top: 2.5%;
		margin: auto auto 1.5625%;
	}

	.shareWrap .title {
		width: 4.21875%;
		margin-top: 0.78125%;
	}

	.shareWrap .shareList {
		margin-top: 1.171875%;
		padding-bottom: 7.03125%;
	}

	.shareWrap .shareList li {
		width: 3.515625%;
		margin: auto 1.171875%;
	}

	.shareWrap .shareList li a {
		display: block;
		transition: opacity 0.1s ease;
	}

	.shareWrap .shareList li a:hover {
		opacity: 0.6;
	}
}

/* #bannerWrap
---------------------------------------------------------- */
.bannerWrap {
	background-color: #00d2e5;
	padding-bottom: 7.8125%;
}

.bannerWrap li {
	width: 87.5%;
	margin: auto;
	padding-top: 7.8125%;
}

.bannerWrap li a {
	display: block;
	position: relative;
	opacity: 0;
	top: 20px;
	transition: all 0.5s ease;
}

.bannerWrap li a.show {
	opacity: 1;
	top: 0;
}

@media screen and (min-width:700px){
	.bannerWrap {
		width: 100%;
		padding-bottom: 2.34375%;
	}

	.bannerWrap__ul {
		width: 100%;
		max-width: 1280px;
		text-align: center;
		margin: auto;
	}

	.bannerWrap li {
		width: 32.8125%;
		display: inline-block;
		margin: auto 2.34375%;
		padding-top: 2.34375%;
	}

	.bannerWrap li a img {
		transition: all 0.2s ease;
	}

	.bannerWrap li a:hover img {
    transform: scale(1.1,1.1);
	}
}

@media screen and (min-width:1280px){
	.bannerWrap {
		padding-bottom: 30px;
	}
}

/* #intro
---------------------------------------------------------- */
.intro {
	padding-top: 15.625%;
	padding-bottom: 10.9375%;
}

.intro .main__mainTitle::before {
	background: url(../images/icon_intro__mainTitle.png) no-repeat center top;
	background-size: 100% auto;
}

.intro .intro__text {
	width: 87.5%;
	font-size: 1.4rem;
	line-height: 1.7em;
	color: #FFF;
	transform: rotate(0.028deg);
	padding-top: 7.8125%;
	margin: auto;
}

@media screen and (min-width:700px){
	.intro {
		padding-top: 7.8125%;
		padding-bottom: 5.46875%;
	}

	.intro .intro__text {
		width: 79.6875%;
		max-width: 1020px;
		font-size: 2.0rem;
		line-height: 2.0em;
		text-align: center;
		padding-top: 3.125%;
	}
}

@media screen and (min-width:1280px){
	.intro {
		padding-top: 100px;
		padding-bottom: 70px;
	}

	.intro .intro__text {
		padding-top: 40px;
	}
}

/* .subTitle01 */
.intro .main__subTitle.subTitle01 {
	margin-top: 7.8125%;
}

@media screen and (min-width:700px){
	.intro .main__subTitle.subTitle01 {
		margin-top: 3.515625%;
	}
}

@media screen and (min-width:1280px){
	.intro .main__subTitle.subTitle01 {
		margin-top: 45px;
	}
}

/* .subTitle02 */
.intro .main__subTitle.subTitle02 {
	margin-top: 15.625%;
}

.intro .image01 {
	width: 62.5%;
	overflow: hidden;
	position: relative;
	margin: 6.25% auto auto;
}

.intro .image01 .rotate {
    position: relative;
    -webkit-transform: perspective(800px) rotateY(90deg);
    -ms-transform: perspective(800px) rotateY(90deg);
    -o-transform: perspective(800px) rotateY(90deg);
    transform: perspective(800px) rotateY(90deg);

    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;

    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

.intro .image01.show .rotate {
    -webkit-transform: perspective(800px) rotateY(1080deg);
    -ms-transform: perspective(800px) rotateY(1080deg);
    -o-transform: perspective(800px) rotateY(1080deg);
    transform: perspective(800px) rotateY(1080deg);

		transition: all 1s ease-out;
}

@media screen and (min-width:700px){
	.intro .main__subTitle.subTitle02 {
		margin-top: 7.03125%;
	}

	.intro .image01 {
		width: 25%;
		margin-top: 3.515625%;
	}
}

@media screen and (min-width:1280px){
	.intro .main__subTitle.subTitle02 {
		margin-top: 80px;
	}

	.intro .image01 {
		width: 320px;
		margin-top: 45px;
	}
}

/* .subTitle03 */
.intro .main__subTitle.subTitle03 {
	margin-top: 15.625%;
}

.intro .intro__songList {
	margin-top: 7.8125%;
}

.intro .intro__songList li {
	width: 81.25%;
	position: relative;
	margin: auto auto 6.25%;
}

.intro .intro__songList li p {
	font-size: 1.4rem;
	line-height: 1.7858em;
	transform: rotate(0.028deg);
	color: #FFF;
}

.intro .intro__songList li .btn_more {
	width: 9.6154%;
	position: absolute;
	top: 0;
	right: 0;
}

.intro .image02 {
	width: 87.5%;
	position: relative;
	opacity: 0;
	top: 20px;
	margin: auto;
	transition: all 0.5s ease;
}

.intro .image02.show {
	opacity: 1;
	top: 0;
}

@media screen and (min-width:700px){
	.intro .main__subTitle.subTitle03 {
		margin-top: 7.8125%;
	}

	.intro .intro__songList {
		width: 100%;
		max-width: 1280px;
		text-align: center;
		letter-spacing: -.40em;
		margin: 3.90625% auto auto;
	}

	.intro .intro__songList li {
		width: 25%;
		display: inline-block;
		letter-spacing: normal;
		margin: auto 1.171875%;
	}

	.intro .intro__songList li p {
		font-size: 2.0rem;
		line-height: 1.2em;
		padding-bottom: 3.125%;
	}

	.intro .intro__songList li .btn_more {
		width: 10.625%;
		left: 0;
		position: relative;
		padding-bottom: 3.125%;
		margin: auto;
	}

	.intro .intro__songList li a {
		display: block;
		transition: opacity 0.1s ease;
	}

	.intro .intro__songList li a:hover {
		opacity: 0.6;
	}
}

@media screen and (min-width:1280px){
	.intro .main__subTitle.subTitle03 {
		margin-top: 100px;
	}

	.intro .intro__songList {
		margin-top: 50px;
	}
}

/* .subTitle04 */
.invite .main__subTitle.subTitle04 {
	margin-top: 4.8125%;
	line-height: 1.2;
}

.subTitle04 span {
	display: block;
	padding-top: 0.4%;
	font-size: 1.6rem;
}

.invite .intro__koeList {
	position: relative;
	padding-top: 1px;
	margin-top: 6.25%;
}

.invite .intro__koeList::before {
	content: "";
	width: 87.5%;
	height: 0;
	border-top: 1px dotted #FFF;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.invite .intro__koeList .intro__koeList__li {
	width: 87.5%;
	background-color: #FFF;
	box-sizing: border-box;
	border-radius: 30px;
	position: relative;
	top: 20px;
	opacity: 0;
	padding: 7.8125% 3.125% 6.25%;
	margin: 7.8125% auto auto;
	transition: all 0.5s ease;
}

.invite .intro__koeList .intro__koeList__li.show {
	top: 0;
	opacity: 1;
}

.invite .intro__koeList .intro__koeList__li::before {
	content: "";
	width: 6.0715%;
	height: 0;
	padding-top: 6.0715%;
	display: block;
	background: url(../images/bg_intro__twitter.png) no-repeat left top;
	background-size: 100% auto;
	position: absolute;
	bottom: 0;
	left: 0;
	margin-left: -5.7143%;
	margin-bottom: 9.6429%;
}

.invite .intro__koeList .intro__koeList__li:nth-child(2n)::before {
	transform: rotateY(180deg);
	position: absolute;
	left: auto;
	right: 0;
	margin-left: auto;
	margin-right: -5.7143%;
}

.invite .intro__koeList .intro__koeList__li .twitterIcon {
	width: 14.2858%;
	border-radius: 80px;
	overflow: hidden;
	position: absolute;
}

.invite .intro__koeList .intro__koeList__li .tweetDetail {
	font-size: 1.1rem;
	line-height: 1.2em;
	transform: rotate(0.028deg);
	color: #bbbbbb;
	padding-left: 19.2308%;
}

.invite .intro__koeList .intro__koeList__li .tweetDetail .name {
	font-weight: 600;
	color: #222222;
}

.invite .intro__koeList .intro__koeList__li .tweetComment {
	font-size: 1.1rem;
	line-height: 1.4546em;
	transform: rotate(0.028deg);
	word-break: break-all;
	padding: 3.8462% 3.8462% 0 19.2308%;
}

.invite .intro__koeList .intro__koeList__li .tweetComment a {
	color: #e5117c;
}
.invite .intro__koeList .intro__koeList__li .btnList {
	letter-spacing: -.40em;
	padding-top: 1.9231%;
	padding-left: 19.2308%;
}

.invite .intro__koeList .intro__koeList__li .btnList li {
	width: 9.5239%;
	display: inline-block;
	margin-right: 4.762%;
}

.invite .intro__btnOnnanouta {
	margin-top: 18.75%;
}

@media screen and (min-width:700px){
	.invite .main__subTitle.subTitle04 {
		margin-top: 7.8125%;
	}

	.invite .intro__koeList {
		width: 79.6875%;
		max-width: 1020px;
		text-align: center;
		margin: 3.125% auto auto;
		padding-top: 1.5625%;
	}

	.invite .intro__koeList::before {
		width: 100%;
	}

	.invite .intro__koeList .intro__koeList__li {
		width: 36.2746%;
		display: inline-block;
		vertical-align: top;
		text-align: left;
		border-radius: 40px;
		padding: 3.4314% 2.451% 2.451% 1.4706%;
		margin: 2.9412% 2.9412% auto;
	}

	.invite .intro__koeList .intro__koeList__li::before {
		width: 5.946%;
		padding-top: 6.4865%;
		margin-left: -5.4055%;
		margin-bottom: 9.1892%;
	}

	.invite .intro__koeList .intro__koeList__li:nth-child(2n)::before {
		margin-left: auto;
		margin-right: -5.4055%;
	}

	.invite .intro__koeList .intro__koeList__li .twitterIcon {
		width: 14.0541%;
	}

	.invite .intro__koeList .intro__koeList__li .tweetDetail {
		font-size: 1.4rem;
		line-height: 1.2em;
		padding-left: 19.697%;
	}

	.invite .intro__koeList .intro__koeList__li .tweetComment {
		font-size: 1.4rem;
		line-height: 1.5em;
		padding: 4.5455% 0 0 19.697%;
	}

	.invite .intro__koeList .intro__koeList__li .btnList {
		padding-top: 3.0304%;
		padding-left: 19.697%;
	}

	.invite .intro__koeList .intro__koeList__li .btnList li {
		width: 10.5661%;
		margin-right: 3.7736%;
	}

	.invite .intro__btnOnnanouta {
		width: 28.90625%;
		max-width: 370px;
		margin-top: 7.8125%;
	}
}

@media screen and (min-width:1280px){
	.invite .main__subTitle.subTitle04 {
		margin-top: 100px;
	}

	.invite .intro__koeList {
		margin-top: 40px;
		padding-top: 20px;
	}

	.invite .intro__btnOnnanouta {
		margin-top: 100px;
	}
}

/* #uta
---------------------------------------------------------- */
.uta {
	background-color: rgba(255, 255, 255, 0.6);
	padding-top: 15.625%;
	padding-bottom: 10.9375%;
}

.uta .main__mainTitle {
	color: #e5117c;
}

.uta .main__mainTitle::before {
	background: url(../images/icon_uta__mainTitle.png) no-repeat center top;
	background-size: 100% auto;
}

@media screen and (min-width:700px){
	.uta {
		padding-top: 7.8125%;
		padding-bottom: 1.5625%;
	}
}

@media screen and (min-width:1280px){
	.uta {
		padding-top: 100px;
		padding-bottom: 20px;
	}
}

/* .uta__utaList */
.uta__utaList {
	position: relative;
	margin-top: 10.9375%;
	padding-bottom: 12.5%;
}

.uta__utaList:not(:last-child)::after {
	content: "";
	width: 15.625%;
	height: 0;
	padding-top: 0.3125%;
	display: block;
	background-color: #e5117c;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.uta .uta__utaList .songTitle {
	font-size: 1.6rem;
	line-height: 1.5625em;
	font-weight: 600;
	text-align: center;
	transform: rotate(0.028deg);
	color: #222222;
}

.uta .uta__utaList .songTitle span {
	font-size: 1.2rem;
	font-weight: 600;
	display: block;
}

.uta .uta__utaList .songVideo {
	width: 87.5%;
	padding-top:49.21875%;
	position: relative;
	margin: 6.25% auto auto;
}

.uta .uta__utaList .songVideo iframe{
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
}

.uta .uta__utaList .songDetail {
	width: 81.25%;
	font-size: 1.4rem;
	line-height: 1.75em;
	color: #222222;
	transform: rotate(0.028deg);
	margin: 6.25% auto auto;
}

.uta .uta__utaList .songDataWrap {
	width: 87.5%;
	margin: 6.25% auto auto;
}

.uta .uta__utaList .songDataWrap .btn {
	width: 100%;
	display: block;
	font-size: 1.4rem;
	line-height: 1.4286em;
	color: #FFF;
	font-weight: 600;
	text-decoration: none;
	transform: rotate(0.028deg);
	text-align: center;
	background-color: #e5117c;
	position: relative;
	padding-top: 5.3572%;
	padding-bottom: 5.3572%;
}

.uta .uta__utaList .songDataWrap .btn::before {
	content: "";
	width: 5.3572%;
	height: 0;
	padding-top: 0.7143%;
	display: block;
	background-color: #ffea38;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto 5.3572% auto auto;
}

.uta .uta__utaList .songDataWrap:not(.open) .btn::after {
	content: "";
	width: 0.7143%;
	height: 0;
	padding-top: 5.3572%;
	display: block;
	background-color: #ffea38;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto 7.6786% auto auto;
}

.uta .uta__utaList .songDataWrap .songData {
	font-size: 1.2rem;
	line-height: 1.5em;
	color: #222222;
	background-color: #FFF;
	padding-top: 5.3572%;
	padding-bottom: 12.5%;

	display: none;
}

.uta .uta__utaList .songDataWrap .songData .data {
	font-size: 1.0rem;
	line-height: 1.8em;
	color: #333333;
	overflow: hidden;
	padding-left: 53.5715%;
	padding-right: 3.5715%;
}

.uta .uta__utaList .songDataWrap .songData .data dt {
	float: left;
}

.uta .uta__utaList .songDataWrap .songData .data dt::after {
	content: "：";
}

.uta .uta__utaList .songDataWrap .songData .data dd {
	padding-left: 3em;
}

.uta .uta__utaList .songDataWrap .songData .lyrics {
	width: 85.7143%;
	transform: rotate(0.028deg);
	margin: 7.1429% auto auto;
}

.uta .uta__utaList .songDataWrap .songData .artist {
	width: 85.7143%;
	transform: rotate(0.028deg);
	margin: 7.1429% auto auto;
	border-top: 1px dotted #000;
	padding-top: 7.1429%;
}

.uta .uta__utaList .songDataWrap .songData .artist .artistTitle {
	font-size: 1.8rem;
	line-height: 1.5518em;
	font-weight: 600;
	text-align: center;
	transform: rotate(0.028deg);
	color: #222222;
}

.uta .uta__utaList .songDataWrap .songData .artist .artistTitle span {
	font-size: 1.6rem;
	font-weight: 600;
	display: block;
}

.uta .uta__utaList .songDataWrap .songData .artist p {
	line-height: 1.5em;
	margin: 6.25% auto auto;
}

.uta .uta__utaList .songDataWrap .songData .artist p strong {
	font-weight: bold;
}

.uta .uta__utaList .songDataWrap .songData .artist a {
	color: #e5117c;
	display: block;
	margin: 6.25% 0 0;
}

.uta .uta__utaList .songDataWrap .songData .artist img {
	width: 80%;
	margin: 6.25% auto;
}

@media screen and (min-width:700px){
	.uta__utaList {
		width: 50%;
		max-width: 640px;
		margin: 5.46875% auto auto;
		padding-bottom: 6.25%;
	}

	.uta .uta__utaList .songTitle {
		font-size: 2.9rem;
		line-height: 1.5518em;
	}

	.uta .uta__utaList .songTitle span {
		font-size: 2.2rem;
	}

	.uta .uta__utaList .songDetail {
		font-size: 2.0rem;
		line-height: 1.9em;
	}

	.uta .uta__utaList .songDataWrap .btn {
		font-size: 2.4rem;
		line-height: 1.25em;
	}

	.uta .uta__utaList .songDataWrap .songData {
		font-size: 2.0rem;
		line-height: 1.5em;
	}

	.uta .uta__utaList .songDataWrap .songData .data {
		font-size: 1.6rem;
		line-height: 1.625em;
	}

	.uta__utaList {
		margin-top: 70px;
		padding-bottom: 80px;
	}

	.uta .uta__utaList .songDataWrap .songData .artist .artistTitle {
		font-size: 2.6rem;
		line-height: 1.4em;
	}

	.uta .uta__utaList .songDataWrap .songData .artist .artistTitle span {
		font-size: 1.8rem;
	}
}


/* #info
---------------------------------------------------------- */
.info {
	padding-top: 15.625%;
	padding-bottom: 10.9375%;
}

.info .main__mainTitle::before {
	background: url(../images/icon_info__mainTitle.png) no-repeat center top;
	background-size: 100% auto;
}

@media screen and (min-width:700px){
	.info {
		width: 79.6875%;
		max-width: 1020px;
		overflow: hidden;
		padding-top: 7.8125%;
		padding-bottom: 0;
		margin: auto;
	}
	.info .main__mainTitle::before {
	width: 8.8242%;
	padding-top: 8.8242%;
	}
}

@media screen and (min-width:1280px){
	.info {
		padding-top: 100px;
	}
 .info .main__mainTitle {
    padding-top: 110px;
	}
}

/* .info__infoList */
.info .info__infoList {
	width: 87.5%;
	margin: 14.0625% auto auto;
	background-color: rgba(255, 255, 255, 0.6);
}

.info .info__infoList li {
	font-size: 1.2rem;
	line-height: 1.5em;
	color: #000;
	transform: rotate(0.028deg);
	position: relative;
	padding: 7.1429% 5%;
}

.info .info__infoList li::before {
	content: "";
	width: 100%;
	height: 0;
	display: block;
	border-top: 1px dotted #FFF;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: -1px;
}

.info .info__infoList li:last-child {
	border-bottom: 1px dotted #FFF;
}

.info .info__infoList li .date {
	display: block;
}

@media screen and (min-width:700px){
	.info .info__infoList {
		width: 50%;
		float: left;
		margin-top: 6.8628%;
	}

	.info .info__infoList li {
		font-size: 1.8rem;
		line-height: 1.65em;
		padding: 7.8432% 5%;
	}

	.info .info__infoList li::before {
		border-top: 2px dotted #FFF;
		margin-top: -2px;
	}

	.info .info__infoList li:last-child {
		border-bottom: 2px dotted #FFF;
	}
}

.info .info__infoList li a {
	color: #e5117c;
	}

/* .info__followMeWrap */
.info .info__followMeWrap {
	margin-top: 15.625%;
}

.info .info__followMeWrap .image01 {
	width: 59.375%;
	margin: auto;
}

.info .info__followMeWrap .image02 {
	width: 31.25%;
	margin: -2.8125% auto auto;
}

.info .info__followMeWrap .image02 .rotate {
    position: relative;
    -webkit-transform: perspective(800px) rotateY(90deg);
    -ms-transform: perspective(800px) rotateY(90deg);
    -o-transform: perspective(800px) rotateY(90deg);
    transform: perspective(800px) rotateY(90deg);

    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;

    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

.info .info__followMeWrap .image02.show .rotate {
    -webkit-transform: perspective(800px) rotateY(1080deg);
    -ms-transform: perspective(800px) rotateY(1080deg);
    -o-transform: perspective(800px) rotateY(1080deg);
    transform: perspective(800px) rotateY(1080deg);

		transition: all 1s ease-out;
}

.info .info__followMeWrap .image03 {
	width: 53.75%;
	margin: 7.8125% auto auto;
}

.info .info__followMeWrap .info__btnFollowMe {
	margin-top: 14.0625%;
}

@media screen and (min-width:700px){
	.info .info__followMeWrap {
		width: 50%;
		float: left;
		margin-top: 6.8628%;
	}

	.info .info__followMeWrap .image01 {
		width: 60.7844%;
	}

	.info .info__followMeWrap .image02 {
		width: 31.3726%;
		margin: -2.9412% auto auto;
	}

	.info .info__followMeWrap .image03 {
		width: 53.9216%;
		margin: 7.8432% auto auto;
	}

	.info .info__followMeWrap .info__btnFollowMe {
		width: 72.5491%;
		margin-top: 15.6863%;
	}
}

/* #download
---------------------------------------------------------- */
.download {
	padding: 7.8125% 0 15.625%;
}

.download .main__mainTitle::before {
	background: url(../images/icon_uta__mainTitle.png) no-repeat center top;
	background-size: 100% auto;
}

.download .download__text {
	width: 87.5%;
	font-size: 1.4rem;
	line-height: 1.7em;
	color: #000;
	transform: rotate(0.028deg);
	padding-top: 5%;
	margin: auto;
}

.download h2 {
	margin-top: 3%;
	color: #e5117c;
}
.download ul {
	width: 87.5%;
}
.download li::before {
	content: "● ";
}
.download li a {
	color: #e5117c;
}

@media screen and (min-width:700px){
	.download {
		padding-top: 5.46875%;
		padding-bottom: 5.46875%;
	}
	.download .download__text {
		width: 79.6875%;
		max-width: 1020px;
		font-size: 2.0rem;
		line-height: 2.0em;
		text-align: center;
		padding-top: 3.125%;
	}
	.download li::before {
		content: "";
	}
}

/* #media
---------------------------------------------------------- */
.media {
	padding: 7.8125% 0 15.625%;
}

.media .main__mainTitle::before {
	background: url(../images/icon_info__mainTitle.png) no-repeat center top;
	background-size: 100% auto;
}

.media .media__text {
	width: 87.5%;
	font-size: 1.4rem;
	line-height: 1.7em;
	color: #FFF;
	transform: rotate(0.028deg);
	padding-top: 5%;
	margin: auto;
}

.media ul {
	width: 87.5%;
}
.media li::before {
	content: "● ";
}
.media li a {
	color: #fff;
}

@media screen and (min-width:700px){
	.media {
		padding-top: 9.46875%;
		padding-bottom: 5.46875%;
	}
	.media .media__text {
		width: 79.6875%;
		max-width: 1020px;
		font-size: 2.0rem;
		line-height: 2.0em;
		text-align: center;
		padding-top: 3.125%;
	}
	.media li::before {
		content: "";
	}
}

/* #invite
---------------------------------------------------------- */
.invite {
	position: relative;
	padding-top: 15.625%;
	padding-bottom: 10.9375%;
}

.invite .invite__text {
	width: 87.5%;
	font-size: 1.4rem;
	line-height: 1.7em;
	color: #FFF;
	transform: rotate(0.028deg);
	padding-top: 7.8125%;
	margin: auto;
}

.invite::before {
	content: "";
	width: 87.5%;
	height: 0;
	padding-top: 0.3125%;
	display: block;
	background-color: #ffea38;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.invite .main__mainTitle::before {
	background: url(../images/icon_invite__mainTitle.png) no-repeat center top;
	background-size: 100% auto;
}

.invite .invite__comment {
	width: 87.5%;
	font-size: 1.2rem;
	line-height: 1.5em;
	color: #FFF;
	transform: rotate(0.028deg);
	border-top: 1px dotted #FFF;
	margin: 15.625% auto auto;
	padding-top: 7.8125%;
}

.invite .invite__btn {
	margin-top: 14.0625%;
}

.invite .image01 {
	width: 62.5%;
	overflow: hidden;
	position: relative;
	margin: 6.25% auto auto;
}

.invite .image01 .rotate {
    position: relative;
    -webkit-transform: perspective(800px) rotateY(90deg);
    -ms-transform: perspective(800px) rotateY(90deg);
    -o-transform: perspective(800px) rotateY(90deg);
    transform: perspective(800px) rotateY(90deg);

    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;

    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

.invite .image01.show .rotate {
    -webkit-transform: perspective(800px) rotateY(1080deg);
    -ms-transform: perspective(800px) rotateY(1080deg);
    -o-transform: perspective(800px) rotateY(1080deg);
    transform: perspective(800px) rotateY(1080deg);

		transition: all 1s ease-out;
}

@media screen and (min-width:700px){
	.invite {
		padding-top: 5.46875%;
		padding-bottom: 5.46875%;
	}

	.invite .invite__text {
		width: 79.6875%;
		max-width: 1020px;
		font-size: 2.0rem;
		line-height: 2.0em;
		text-align: center;
		padding-top: 3.125%;
	}

	.invite .image01 {
		width: 25%;
		margin-top: 3.515625%;
	}

	.invite::before {
		display: none;
	}

	.invite .invite__comment {
		width: 43.75%;
		max-width: 560px;
		font-size: 1.8rem;
		line-height: 1.65em;
		border-top: 2px dotted #FFF;
		margin: 5.46875% auto auto;
		padding-top: 3.125%;
	}

	.invite .invite__btn {
		margin-top: 7.8125%;
	}
}

@media screen and (min-width:1280px){
	.invite {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.invite .invite__text {
		padding-top: 40px;
	}

	.invite .image01 {
		width: 320px;
		margin-top: 45px;
	}

	.invite .invite__comment {
		margin-top: 70px;
		padding-top: 40px;
	}

	.invite .invite__btn {
		margin-top: 100px;
	}
}

/* =====================================================================
*    aside#pagetop
* =================================================================== */
.pagetop {
	position: relative;
	z-index: 1;
	padding-top: 7.8125%;
	padding-bottom: 7.8125%;
}

.pagetop a {
	width: 25%;
	display: block;
	margin: auto;
}

.pagetop a .arrow {
	width: 45%;
	margin: auto;
}

.pagetop a .ufo {
	width: 100%;
	position: relative;
	margin-top: 25%;
}

.pagetop a .ufo img {
	position: relative;
	top: 0;
	animation: ufo_animation 1s infinite alternate linear;
}

@keyframes ufo_animation {
	0% {top: 0;}
	100% {top: -10px;}
}

@media screen and (min-width:700px){
	.pagetop {
		position: relative;
		padding-top: 16.40625%;
		padding-bottom: 0;
	}

	.pagetop a {
		width: 10.15625%;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: 3.90625% auto auto;
	}

	.pagetop a .arrow {
		width: 44.6154%;
	}

	.pagetop a .ufo {
		margin-top: 23.077%;
	}
}

@media screen and (min-width:1280px){
	.pagetop {
		padding-top: 210px;
		padding-bottom: 0;
	}

	.pagetop a {
		width: 130px;
		margin-top: 50px;
	}
}

/* =====================================================================
*    #footer
* =================================================================== */
.footer {
	font-size: 1.2rem;
	line-height: 1em;
	text-align: center;
	background-color: #ffea38;
	position: relative;
	padding-top: 7.5%;
	padding-bottom: 7.5%;
}

@media screen and (min-width:700px){
	.footer {
		font-size: 1.6rem;
		line-height: 1.25em;
		padding-top: 7.03125%;
		padding-bottom: 2.34375%;
	}
}

@media screen and (min-width:1280px){
	.footer {
		padding-top: 90px;
		padding-bottom: 30px;
	}
}

/* =====================================================================
*    #popupWrap
* =================================================================== */
.popupWrap {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 100000;
}

.popupWrap .popupClose {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.popupWrap .movie {
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

/* .popupWrap .movie::before {
	content: "";
	width: 11.5625%;
	height: 0;
	padding-top: 11.5625%;
	display: block;
	background: url(../images/btn_close.png) no-repeat center top;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	right: 0;
	margin-top: -15.625%;
	margin-right: 6.25%;
} */
.popupClose_btn {
	width: 11.5625%;
	height: 0;
	padding-top: 11.5625%;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	margin-top: -25.625%;
	margin-right: 1.25%;
}

.popupWrap .movie iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

@media screen and (min-width:640px){
	.popupWrap .movie::before {
		width: 74px;
		padding-top: 74px;
		margin-top: -100px;
		margin-right: 40px;
	}
}

@media screen and (min-width:700px){
	.popupWrap .movie {
		width: 54.6875%;
		padding-top: 30.7618%;
	}

	.popupWrap .movie::before {
		width: 10.5715%;
		padding-top: 10.5715%;
		margin-top: -14.2858%;
		margin-right: 2.8572%;
	}
}

@media screen and (min-width:1280px){
	.popupWrap .movie {
		width: 700px;
		padding-top: 394px;
	}
}

/* =====================================================================
*    #instagram_info　
* =================================================================== */
#instagram_info {
	padding: 5.46875% 0 16.9375%;
}
#instagram {
	width: 87.5%;
	margin: 0 auto;
}
.instagram_li {
	width: calc((100% - 12px) / 3);
	display: inline-block;
	margin: 2px;
}
.instagram_li .name,.instagram_li .date {
	display: none;
}

@media screen and (min-width:640px){
	#instagram_info {
		padding: 5.46875% 0 7.8125%;
	}
}

@media screen and (min-width:700px){
	#instagram_info {
		padding: 5.46875% 0 7.8125%;
	}
}

@media screen and (min-width:1280px){
	#instagram_info {
		padding: 5.46875% 0 7.8125%;
	}
}

/* #campaign
---------------------------------------------------------- */
.campaign {
	background-color: rgba(255, 255, 255, 0.6);
	padding-top: 7.8125%;
	padding-bottom: 1.5625%;
}

.campaign .main__mainTitle {
	color: #e5117c;
	line-height: 1.2em;
	opacity: 1;
	padding-bottom: 3.5%;
}
.campaign .main__mainTitle span {
	font-weight: 800;
	font-size: 2rem;
	line-height: 1.6;
}
.campaign .main__mainTitle::before {
	background: url(../images/icon_campaign.png) no-repeat center top;
	background-size: 100% auto;
}
.campaign__details {
	position: relative;
	margin: 7.8125% 0 7.8125%;
	transform: rotate(0.028deg);
}
.campaign__details .campaign__details__txt {
	width: 87.5%;
	font-size: 1.4rem;
	line-height: 1.75em;
	color: #222222;
	transform: rotate(0.028deg);
	margin: 7.8125% auto 3%;
}
.campaign__details .campaign__details__stxt {
	width: 87.5%;
	margin: 6.25% auto 0 auto;
	padding: 0 0 12.5%;
}
.campaign__details .campaign__details__stxt li {
	font-size: 1rem;
	line-height: 1.8;
	margin: 6.25% auto auto;
	text-indent: -1.2em;
	padding-left: 1.2em;
}
.campaign__details .campaign__details__stxt li::before {
	content: "※ ";
}
.campaign__details .campaign__details__sns {
	position: relative;
	width: 87.5%;
	margin: 0 auto 12.5%;
	padding: 12.5% 0 0.1%;
}
.campaign__details .campaign__details__sns::before {
	content: "";
	width: 15.625%;
	height: 0;
	padding-top: 0.3125%;
	display: block;
	background-color: #e5117c;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.campaign__details .campaign__details__sns::after {
	content: "";
	width: 15.625%;
	height: 0;
	padding-top: 0.3125%;
	display: block;
	background-color: #e5117c;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.campaign__details .campaign__details__sns a {
	margin: 0;
	padding: 0;
}
.campaign__details .campaign__details__sns dt {
	font-size: 1.6rem;
	line-height: 1.5625em;
	font-weight: 600;
	text-align: center;
	color: #e5117c;
}
.campaign__details .campaign__details__sns dd {
	font-size: 1.4rem;
	line-height: 1.5;
}
.campaign__details .campaign__details__sns dd .header__nav__ul {
	background-color: transparent;
	margin: 4% 0 12.5%;
}
.campaign__details .campaign__details__sns dd .header__nav__ul li {
	width: 17.3%;
	margin: auto 3.90625%;
}
.campaign__details .campaign__details__sns dd .header__nav__ul li:not(:last-child)::after {
	display: none;
}
.campaign__details .songDataWrap {
	width: 87.5%;
	margin: 0 auto;
}

.campaign__details .songDataWrap .btn {
	width: 100%;
	display: block;
	font-size: 1.4rem;
	line-height: 1.4286em;
	color: #FFF;
	font-weight: 600;
	text-decoration: none;
	transform: rotate(0.028deg);
	text-align: center;
	background-color: #e5117c;
	position: relative;
	padding-top: 5.3572%;
	padding-bottom: 5.3572%;
}

.campaign__details .songDataWrap .btn::before {
	content: "";
	width: 5.3572%;
	height: 0;
	padding-top: 0.7143%;
	display: block;
	background-color: #ffea38;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto 5.3572% auto auto;
}
.campaign__details .songDataWrap .agreement {
	font-size: 1.2rem;
	line-height: 1.5em;
	color: #222222;
	background-color: #FFF;
	padding: 12.5% 0;
	display: none;
}
.campaign__details .songDataWrap .agreement p {
	width: 85.7143%;
	margin: 0 auto;
	font-size: 1.2rem;
	line-height: 1.5;
}
.campaign__details .songDataWrap .agreement ul {
	width: 85.7143%;
	margin: 7.1429% auto auto;
	font-size: 1.15rem;
	line-height: 1.8;
	list-style: disc;
}
.campaign__details .songDataWrap .agreement ul li {
	margin: 0 0 2%;
	list-style: none;
	text-indent: -1.2em;
	padding-left: 1.2em;
}
.campaign__details .songDataWrap .agreement ul li::before {
	content: "● ";
	color: #e5117c;
}
.campaign__details .songDataWrap .agreement h4 {
	width: 85.7143%;
	margin: 15% auto auto;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}

@media screen and (min-width:700px){
	.campaign .main__mainTitle span {
		font-size: 3rem;
	}
	.tankabu_photo {
		max-width: 700px;
		margin: 0 auto;
	}
	.campaign__details {
		max-width: 560px;
		position: relative;
		margin: 2% auto 7.8125%;
	}
	.campaign__details .campaign__details__txt {
		width: 100%;
		font-size: 2.0rem;
		line-height: 1.75em;
		color: #222222;
		transform: rotate(0.028deg);
		margin: 7.8125% auto 3%;
	}
	.campaign__details .campaign__details__stxt {
		width: 100%;
	}
	.campaign__details .campaign__details__stxt li {
		font-size: 1.6rem;
		line-height: 1.65em;
		margin: 2% auto auto;
	}
	.campaign__details .campaign__details__sns {
		width: 100%;
	}
	.campaign__details .campaign__details__sns dt {
		font-size: 3.2rem;
		line-height: 1.5625em;
		font-weight: 600;
		text-align: center;
		transform: rotate(0.028deg);
		color: #e5117c;
	}
	.campaign__details .campaign__details__sns dd {
		font-size: 2rem;
		line-height: 1.5;
		padding-top: 3%;
	}
	.campaign__details .campaign__details__sns dd .header__nav__ul {
		margin-top: 1%;
		padding-top: 0;
	}
	.campaign__details .campaign__details__sns dd .header__nav__ul li {
		width: 12%;
		margin: auto 3.90625%;
		padding-top: 2%;
	}
	.campaign__details .songDataWrap {
		width: 100%;
		margin: 0 auto auto;
	}
	.campaign__details .songDataWrap .btn {
		font-size: 2.4rem;
		line-height: 1.25em;
	}
  .campaign__details .songDataWrap .agreement {
		padding: 8% 0;
	}
	.campaign__details .songDataWrap .agreement p {
		width: 90%;
		margin: 0 auto;
		font-size: 1.6rem;
	}
	.campaign__details .songDataWrap .agreement ul {
		width: 90%;
		margin: 7.1429% auto;
		font-size: 1.6rem;
		line-height: 1.5;
	}
	.campaign__details .songDataWrap .agreement ul li {
		margin: 0 0 2%;
	}
	.campaign__details .songDataWrap .agreement h4 {
		margin: 2% auto;
		font-size: 2rem;
		font-weight: bold;
		line-height: 1.5;
		text-align: center;
	}
}

@media screen and (min-width:1280px){
	.uta {
		padding-top: 100px;
		padding-bottom: 20px;
	}
}

/* =====================================================================
*    追加
* =================================================================== */

/* 2020-02-12 4曲目追加 */

.part {
	position: relative;
	width: 76%;
}

.img_part {
	position: absolute;
	width: 25%;
	top: 0;
	left: 8%;
}

.lyrics_part {
	padding-left: 39%;
}
