@charset "UTF-8";

/* 追加&修正CSS */
*, *:before, *:after { box-sizing: border-box; }
a { color: #222222; }
a:hover { color: #222222; }

h5 {
	margin-bottom: 30px;
	color: #454545;
	font-weight: bold;
}
h5 span { 
	color: #222222;
	font-weight: normal;
	display: inline-block;
}
section:before, section:after {
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	z-index: 0;
}
section:after {
	left: 0;
	background: url(../img/bgPattern.png);
}
section#logo:after, section#special:after {
	background: url(../img/bgPattern_poly.png), url(../img/bgPattern.png);
}
section#event:after {
	background: url(../img/bgPattern.png);
}

.inner { text-align: center; position: relative; z-index: 1; }

.page-title .maskText:after {
	content:"";
	display: block;
	position: absolute;
	z-index: 10;
	top: 0;
	left: -10%;
	width: 120%;
	height: 100%;
	background: -moz-linear-gradient(90deg, rgba(164, 218,255,1) 0%, rgba(14,106,169,1) 25%, rgba(164, 218,255,1) 45%, rgba(14,106,169,1) 55%, rgba(164, 218,255,1) 70%, rgba(2,78,130,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(164, 218,255,1) 0%, rgba(14,106,169,1) 25%, rgba(164, 218,255,1) 45%, rgba(14,106,169,1) 55%, rgba(164, 218,255,1) 70%, rgba(2,78,130,1) 100%);
	background: linear-gradient(90deg, rgba(164, 218,255,1) 0%, rgba(14,106,169,1) 25%, rgba(164, 218,255,1) 45%, rgba(14,106,169,1) 55%, rgba(164, 218,255,1) 70%, rgba(2,78,130,1) 100%);
	mix-blend-mode: normal;
	animation: changeTitlecolor 12s ease infinite;
	-webkit-animation: changeTitlecolor 12s ease infinite;
}
@-webkit-keyframes changeTitlecolor {
	from, 0% { left: -10%; width: 120%; }
	40% { left: -70%; width: 180%; }
	80% { left: 0%; width: 150%; }
	to, 100% { left: -10%; width: 120%; }
}
@keyframes changeTitlecolor {
	from, 0% { left: -10%; width: 120%; }
	40% { left: -70%; width: 180%; }
	80% { left: 0%; width: 150%; }
	to, 100% { left: -10%; width: 120%; }
}

.itemInner {
	position: relative;
	width: 100%;
	margin: 0 auto;
	box-shadow: none;
	-webkit-box-shadow: none;
}
.itemInner:after { display: none; }
.itemInner .item_hover {
	position: relative;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 10px rgba(128, 128, 128, 0.3);
	-webkit-box-shadow: 0 0 10px rgba(128, 128, 128, 0.3);
	-moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
}
.itemInner .item_hover:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: -moz-linear-gradient(90deg, rgba(164, 218,255,1) 0%, rgba(14,106,169,1) 25%, rgba(164, 218,255,1) 45%, rgba(14,106,169,1) 55%, rgba(164, 218,255,1) 70%, rgba(2,78,130,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(164, 218,255,1) 0%, rgba(14,106,169,1) 25%, rgba(164, 218,255,1) 45%, rgba(14,106,169,1) 55%, rgba(164, 218,255,1) 70%, rgba(2,78,130,1) 100%);
	background: linear-gradient(90deg, rgba(164, 218,255,1) 0%, rgba(14,106,169,1) 25%, rgba(164, 218,255,1) 45%, rgba(14,106,169,1) 55%, rgba(164, 218,255,1) 70%, rgba(2,78,130,1) 100%);
	animation: changeBARcolor 8s linear infinite;
	-webkit-animation: changeBARcolor 8s linear infinite;
	z-index: 2;
}
@-webkit-keyframes changeBARcolor {
	from, 0% { -webkit-background-size: 100% auto; background-position: 0% center; }
	50% { -webkit-background-size: 150% auto; background-position: 100% center; }
	to, 100% { -webkit-background-size: 100% auto; background-position: 0% center; }
}
@keyframes changeBARcolor {
	from, 0% { background-size: 100% auto; background-position: 0% center;}
	50% { background-size: 150% auto; background-position: 100% center; }
	to, 100% { background-size: 100% auto; background-position: 0% center; }
}
.itemInner .item_hover:hover {
	-webkit-transform: translateY(-11px);
    -moz-transform: translateY(-11px);
    -ms-transform: translateY(-11px);
    transform: translateY(-11px);
}
.tagBar {
	padding: 1px 15px;
    color: #ffffff;
    font-size: 90%;
    font-weight: bolder;
    width: 130px;
    display: inline-block;
    text-align: center;
    margin-bottom: 5px;
}
.tagBar.renew { background-color: #ca4e4e; }
.tagBar.theSpecial { background-color: #0099cc; }
/*.tagBar.theNew { background-color: #ca4e4e; }
.tagBar.theSpecial { background-color: #2c4b72; }*/

.break { display: inline-block; }
.noDisplay { display: none; }


/*** EFFECT ***/
.effect {
	opacity: 0;
	transition: all 1s linear;
	-moz-transition: all 1s linear;
	-webkit-transition: all 1s linear;
	-ms-transition: all 1s linear;
}
.effect.active { opacity: 1; }
.effect2 {
	opacity: 0;
	transition: all 1s 0.3s linear;
	-moz-transition: all 1s 0.3s linear;
	-webkit-transition: all 1s 0.3s linear;
	-ms-transition: all 1s 0.3s linear;
}
.effect2.active { opacity: 1; }
.effect3 {
	opacity: 0;
	transition: all 1s 0.5s linear;
	-moz-transition: all 1s 0.5s linear;
	-webkit-transition: all 1s 0.5s linear;
	-ms-transition: all 1s 0.5s linear;
}
.effect3.active { opacity: 1; }
.effect4 {
	opacity: 0;
	transition: all 1s 0.7s linear;
	-moz-transition: all 1s 0.7s linear;
	-webkit-transition: all 1s 0.7s linear;
	-ms-transition: all 1s 0.7s linear;
}
.effect4.active { opacity: 1; }
.slideUp {
	-moz-transform: translate3d(0,15%,0) rotate(0);
	-webkit-transform: translate3d(0,15%,0) rotate(0);
	-ms-transform: translate3d(0,15%,0) rotate(0);
	transform: translate3d(0,15%,0) rotate(0);
}
.slideUp.active {
	-moz-transform: translate3d(0,0,0) rotate(0);
	-webkit-transform: translate3d(0,0,0) rotate(0);
	-ms-transform: translate3d(0,0,0) rotate(0);
	transform: translate3d(0,0,0) rotate(0);
}
.slideLeft {
	-moz-transform: translate3d(30%,0,0) rotate(0);
	-webkit-transform: translate3d(30%,0,0) rotate(0);
	-ms-transform: translate3d(30%,0,0) rotate(0);
	transform: translate3d(30%,0,0) rotate(0);
}
.slideLeft.active {
	-moz-transform: translate3d(0,0,0) rotate(0);
	-webkit-transform: translate3d(0,0,0) rotate(0);
	-ms-transform: translate3d(0,0,0) rotate(0);
	transform: translate3d(0,0,0) rotate(0);
}
/*** EFFECT END ***/

/*////////// rewrite hana's part /////////*/

/*** FIRSTVIEW ***/
#showloading {
	-ms-overflow-style: none;
    scrollbar-width: none;
}
#showloading::-webkit-scrollbar {
	display:none;
}
#showloading .area {
	box-sizing: border-box;
	width: 100%;
	max-width: 800px;
	height: auto;
	min-height: 90vh;
	padding: 0!important;
	margin: 0 auto!important;

	flex-flow: wrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#showloading .area .logo_area { margin: 0!important; }
#showloading .area .logo_area .logo.new { margin-bottom: 30px; }
#showloading .area .logo_area .logo.new img,
#showloading .area .logo_area .anniversary_txt .shadow img { width: auto; margin: 0; }
#showloading .area .logo_area .anniversary_txt { margin-bottom: 50px; }
#showloading .area .txt { position: relative; padding: 50px 0; width: 100%!important; }
#showloading .area .txt img { max-width: 100%; width: auto;}
#showloading .area span { width: 100%!important; }
/*#showloading .area span.border-top { margin-bottom: 60px; }
#showloading .area span.border-bottom { margin-top: 60px; }*/
#showloading .area .txt02 .height { padding: 60px 0 0!important; }
#showloading .area .txt02 { width: 100%!important; }

#showloading .area .logo_area .anniversary_txt .light {
	left: 0!important;
	top: 0!important;
	width: 100%;
	background-size: 100% auto;
	background-position: center;
    transform-origin: 45% center;
}
@media screen and (max-width: 2400px) {
	#showloading .area { width: 55vmin; }
	#showloading .area .logo_area .logo.new { margin: 6vmin 0 1.5vmin; }
	#showloading .area .logo_area .anniversary_txt { margin-bottom: 4vmin; }
	#showloading .area .txt { padding: 4vmin 0; }
	#showloading .area .txt02 .height { padding: 4vmin 0 4vmin!important; }
}
@media screen and (max-width: 1400px) {
	#showloading .area .txt02 .height p { line-height: 0; margin: 0 0 2vmin; }
	#showloading .area .txt02 .height p.line03 { margin: 0 0 4vmin; }
}
@media screen and (max-width: 870px) {
	#showloading .area .logo_area { padding: 0 10px; }
}
@media screen and (max-height: 700px) and (max-width: 3000px) and (min-width: 800px) {
	#showloading .area { width: 50vmin; }
	#showloading .area .txt02 .height p.line03 { margin: 0 0 2vmin; }
	#showloading .area .txt02 .height p { line-height: 1; }
}
@media screen and (max-width: 767px) {}
@media screen and (max-width: 640px) {
	#showloading .area { width: 70vmin; }
	#showloading .area .logo_area .logo.new { margin: 2vmin 0 2.5vmin; }
	#showloading .area .logo_area .anniversary_txt { margin-bottom: 5vmin; }
	#showloading .area .txt { padding: 5vmin 0; }
	#showloading .area .txt02 .height { padding: 5vmin 0 10vmin!important; }
	#showloading .area .txt02 .height p { line-height: 0; margin: 0 0 3vmin; }
	#showloading .area .txt02 .height p.line03 { margin: 0 0 5vmin; }
}

/*** IE対応 ***/
/* IE10以降 */
@media screen and (max-width: 1800px){
	@media all and (-ms-high-contrast: none) {
		#showloading .area { display: block; }
		#showloading .area .txt02 .height {
			display: block;
			width: 100%;
		}
	}
}
@media screen and (max-width: 1800px){
	@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
		#showloading .area { display: block; }
		#showloading .area .txt02 .height {
			display: block;
			width: 100%;
		}
	}
}
/* IE11対応 */
@media screen and (max-width: 2000px){
	_:-ms-lang(x)::-ms-backdrop, #showloading .area { display: block; }
	_:-ms-lang(x)::-ms-backdrop, #showloading .area .txt02 .height {
		display: block;
		width: 100%;
	}
}
/*** IE対応 *** END ***/

/*** LAYOUT ***/
.site-header {
	padding: 0;
    height: auto;
    line-height: 120px;
    display: inline-block;
    vertical-align: middle;
}
.site-header .site-branding.inner { text-align: left; }
.site-header .site-branding .inner {
	text-align: inherit;
	position: relative;
}
.site-header .site-branding h1 {
	float: none;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}
.site-header .site-branding nav.main-navigation {
	display: inline-block;
    line-height: 120px;
    vertical-align: middle;
    position: absolute;
    right: 0;
    top: 15px;
}
.site-header .site-branding ul.menu {
	position: relative;
	top: 0;
	padding-right: 10px;
	margin: 0!important;
}
.site-header .site-branding h1 img { width: 200px; }
#gloval-nav { line-height: 1.75; }


#history .slider li .box .left { background: none; }

@media screen and (max-width: 1680px) {
	.site-header { height: auto; line-height: 110px; }
	.site-header .site-branding nav.main-navigation  { line-height: 110px; }
	.site-header .site-branding ul.menu {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 1380px) {
	.site-header .site-branding nav.main-navigation { top: 0; }
	#nav-toggle {
		display: inline-block;
	    vertical-align: middle;
	    position: relative;
	    top: 0;
	    line-height: 1;
	    right: 2vw;
	}
}

@media screen and (max-width: 800px) {
	#history .slider li .box .right .txtarea {
	    top: auto;
	    bottom: 10px;
	}
}
@media screen and (max-width: 767px) {
	.site-header { height: auto; line-height: 90px; }
	.site-header .site-branding nav.main-navigation  { line-height: 90px; }
	#nav-toggle { top: 0; }
	#history .slider li .box .left { background: #ffffff; }
	#logo .box { padding: 50px; }
	#logo .box .title { margin: 30px; }
	#logo .box img { width: 100%; }
	#logo .box p { width: 100%; }
}
@media screen and (max-width: 640px) {
	#logo .box { padding: 10vw 5vw; }
}
/*////////// rewrite hana's part end /////////*/

#songs {
	background-color: #dddbd4;
	animation: changeBGcolor_song 8s ease infinite;
	-webkit-animation: changeBGcolor_song 8s ease infinite;
}
.songs_image:before {
	content: "";
	position: absolute;
	top: -25px;
	left: -55px;
	width: 30%;
	height: 100%;
	background-size: auto;
	background-repeat: no-repeat;
	background-position: left top;
	z-index: 2;
}
.songs_image .hover { overflow: hidden; }
.songs_image .hover img {
	-moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
}
.songs_image .hover img:hover  {
	-webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

#special {
	background-color: #ffffff;
	animation: changeBGcolor_special 8s 0.3s ease infinite;
	-webkit-animation: changeBGcolor_special 8s 0.3s ease infinite;
}
#special .itemInner { background-color: transparent; }
#special .itemInner .item_hover { background-color: #ffffff; }

#special .tagBar { width: auto; }
#special .item_top {
	position: relative;
	width: 100%;
	padding: 50px;
}
#special .item_top .special_item {
	position: relative;
	float: left;
}
#special .item_top .item_image {
	margin-left: 30px;
	width: auto;
	float: right;
}
#special .item_top .itemTitle {
	text-align: left;
    width: calc(100% - 250px);
}
#special .item_text {
	clear: both;
	padding: 0 50px 50px;
}

#new {
	background-color: #f4f2e8;
	animation: changeBGcolor_new 8s 0.2s ease infinite;
	-webkit-animation: changeBGcolor_new 8s 0.2s ease infinite;
}
h3.subTitle { margin-bottom: 50px; }
#new .item_container {
	/*max-width: 840px;*/
	max-width: 1040px;
	margin: 0 auto;
	text-align: center;
}
#new .item_row {
    min-height: 100%;
	display: flex;
	display: -webkit-flex;
    margin-bottom: 50px;
}
#new .itemInner {
    width: 50%;
    /*max-width: 400px;*/
    max-width: 500px;
    float: left;
    margin: 0 10px;
    background-color: transparent;
}
#new .itemInner .item_hover { background-color: #ebeae6; }
#new .itemInner:nth-child(2n) { background-color: transparent; }
#new .itemInner:nth-child(2n) .item_hover { background-color: #f7f7f7; }
#new a { text-decoration: none; }
#new a:hover { font-weight: inherit; }

#new .itemInner.num2 .item_hover:after { animation: changeBARcolor 8s 0.5s linear infinite; -webkit-animation: changeBARcolor 8s 0.5s linear infinite; }
#new .itemInner.num3 .item_hover:after { animation: changeBARcolor 8.5s 0.1s linear infinite; -webkit-animation: changeBARcolor 8.5s 0.1s linear infinite; }
#new .itemInner.num4 .item_hover:after { animation: changeBARcolor 8s 0.3s linear infinite; -webkit-animation: changeBARcolor 8s 0.3s linear infinite; }
/*#new .item_text { padding: 50px 20px; }*/
#new .moreBtn {
	line-height: 1;
	background-color: #454545;
	position: relative;
	font-weight: bold;
	display: inline-block;
	border-right: 1px solid rgba(164,218,255,1);
	border-left: 1px solid rgba(164,218,255,1);
	box-shadow: 0 2px 10px rgba(128, 128, 128, 0.7);
	-webkit-box-shadow: 0 2px 10px rgba(128, 128, 128, 0.7);
}
#new .moreBtn:after, #new .moreBtn:before {
	content: "";
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: -moz-linear-gradient(90deg, rgba(164, 218,255,1) 0%, rgba(14,106,169,1) 25%, rgba(164, 218,255,1) 45%, rgba(14,106,169,1) 55%, rgba(164, 218,255,1) 70%, rgba(2,78,130,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(164, 218,255,1) 0%, rgba(14,106,169,1) 25%, rgba(164, 218,255,1) 45%, rgba(14,106,169,1) 55%, rgba(164, 218,255,1) 70%, rgba(2,78,130,1) 100%);
	background: linear-gradient(90deg, rgba(164, 218,255,1) 0%, rgba(14,106,169,1) 25%, rgba(164, 218,255,1) 45%, rgba(14,106,169,1) 55%, rgba(164, 218,255,1) 70%, rgba(2,78,130,1) 100%);
	z-index: 2;
}
#new .moreBtn:hover {
	opacity: 0.7;
    /*top: 2px;
    box-shadow: 0 0 5px rgba(128, 128, 128, 0.5);
	-webkit-box-shadow: 0 0 5px rgba(128, 128, 128, 0.5);*/
}
#new .moreBtn p { padding: 15px 30px; margin: 0; font-size: 90%; color: #ffffff; }


#event {
	background: url(../img/bgImage_event.png) #f5f5f5;
	background-repeat: no-repeat, repeat;
	background-position: center;
	background-size: cover, auto;
	/*animation: changeBGcolor_event 8s 0.1s ease infinite;
	-webkit-animation: changeBGcolor_event 8s 0.1s ease infinite;*/
	animation: none;
	-webkit-animation: none;
}
#event .itemInner { background-color: transparent; }
#event .itemInner .item_hover { background-color: #ffffff; }
#event .bgDot {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.8;
}
#event .bgDot:before, #event .bgDot:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url(../img/bgPattern_dot.png) no-repeat;
	background-size: auto;
}
#event .bgDot:before { background-position: calc(100% + 450px) calc(0% - 450px); }
#event .bgDot:after { background-position: calc(0% - 450px) calc(100% + 450px); }


.site-footer .rollingBG:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	z-index: 0;
	background: url(../img/bgPattern.png);
}
.site-footer .rollingBG {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 40vw;
	max-height: 505px;
	background: url(../img/footer_bg.png);
	background-repeat: repeat;
	background-position: 0 0;
	background-size: auto 100%;
	animation: rollingBackground 500s linear infinite;
	-webkit-animation: rollingBackground 500s linear infinite;
}
@-webkit-keyframes rollingBackground {
	from { -webkit-transform: translate3d(0,0,0); background-position: 0 0; }
	to { -webkit-transform: translate3d(0,0,0); background-position: -19200px 0; }
}
@keyframes rollingBackground {
	from { transform: translate3d(0,0,0); background-position: 0 0; }
	to { transform: translate3d(0,0,0); background-position: -19200px 0; }
}
@-webkit-keyframes rollingBackground_sp {
	from { -webkit-transform: translate3d(0,0,0); background-position: 0 0; }
	to { -webkit-transform: translate3d(0,0,0); background-position: -9600px 0; }
}
@keyframes rollingBackground_sp {
	from { transform: translate3d(0,0,0); background-position: 0 0; }
	to { transform: translate3d(0,0,0); background-position: -9600px 0; }
}

/*** IE対応 ***/

/* IE10以降 */
@media all and (-ms-high-contrast: none) { 
	/* ハイコントラストモードが「オフ」の場合 */
	.page-title .maskText { display: none; }
	#mainimage video {
		min-width: 100%;
		min-height: 100%;
		width: auto;
		height: auto;
		background-size: cover;
	}
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) { 
	/* ハイコントラストモードの状態に関わらず、ハイコントラストモードが「オン」の場合のみにEdgeにもスタイルが適用 */
	.page-title .maskText { display: none; }
	/*#showloading .area { width: 100%;}*/
	#mainimage video {
		min-width: 100%;
		min-height: 100%;
		width: auto;
		height: auto;
		background-size: cover;
	}
	@media screen and (min-height: 700px) and (max-width: 3000px) and (min-width: 800px) {
		#showloading .area { width: 55vw;}
	}
	/*@media screen and (min-height: 700px) {
		#showloading .area { max-width: 450px; }
	}*/
	
}
/* IE11対応 */
_:-ms-lang(x)::-ms-backdrop, .page-title .maskText { display: none; }
_:-ms-lang(x)::-ms-backdrop, #mainimage video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	background-size: cover;
}

/***-- RESPONSIVE / MOBILE --***/

@media screen and (max-width: 767px) {
	#pageTop a { width: 60px; height: 60px; }
}



/*-- ANIMATION --*/
/** effect **/
@media screen and (max-width: 767px) {
	.effect1 {
		opacity: 0;
		transition: all 1s 0s linear;
		-moz-transition: all 1s 0s linear;
		-webkit-transition: all 1s 0s linear;
		-ms-transition: all 1s 0s linear;
	}
	.effect1.active { opacity: 1; }
	.effect2 {
		opacity: 0;
		transition: all 1s 0s linear;
		-moz-transition: all 1s 0s linear;
		-webkit-transition: all 1s 0s linear;
		-ms-transition: all 1s 0s linear;
	}
	.effect2.active { opacity: 1; }
	.effect3 {
		opacity: 0;
		transition: all 1s 0s linear;
		-moz-transition: all 1s 0s linear;
		-webkit-transition: all 1s 0s linear;
		-ms-transition: all 1s 0s linear;
	}
	.effect3.active { opacity: 1; }
	.effect4 {
		opacity: 0;
		transition: all 1s 0s linear;
		-moz-transition: all 1s 0s linear;
		-webkit-transition: all 1s 0s linear;
		-ms-transition: all 1s 0s linear;
	}
	.effect4.active { opacity: 1; }
	.slideLeft {
		-moz-transform: translate3d(30%,0,0) rotate(0);
		-webkit-transform: translate3d(30%,0,0) rotate(0);
		-ms-transform: translate3d(30%,0,0) rotate(0);
		transform: translate3d(30%,0,0) rotate(0);
	}
	.slideLeft.active {
		-moz-transform: translate3d(0,0,0) rotate(0);
		-webkit-transform: translate3d(0,0,0) rotate(0);
		-ms-transform: translate3d(0,0,0) rotate(0);
		transform: translate3d(0,0,0) rotate(0);
	}

}
/** keyframes animation **/

/*-- STYLE --*/

/*-- LAYOUT --*/
/** common **/
@media screen and (max-width: 1680px) {
	.inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media screen and (max-width: 767px) {
	.pc { display: none; }
	.sp { display: block; }
	section {
		padding-top: 70px;
		padding-bottom: 130px;
	}
	section#logo:after, section#special:after {
		background: url(../img/bgPattern_poly_sp.png), url(../img/bgPattern.png);
		background-size: auto 50%, auto;
	}
}
@media screen and (max-width: 640px) {
	section {
		padding-top: 10vw;
		padding-bottom: 15vw;
	}
	.page-title {
		padding-left: 10px;
		padding-right: 10px;
	}
	.page-title .maskText {
		width: calc(100% - 20px);
		margin: 0 auto;
		margin-left: 10px;
		-webkit-mask-size: 100% !important;
		mask-size: 100% !important;
	}
	.itemInner {
		width: 100%;
		max-width: auto;
	}
	.item_text { padding: 10vw 5vw; }
}

/** section **/
/*--
ここからアニバーサリーソング
--*/
@media screen and (max-width: 1680px) {
	#songs:before { background-size: 90% auto; }
	.songs_image:before {
		background-size: auto 15%;
		top: -7%;
		left: -12%;
	}
}
@media screen and (max-width: 767px) {
	img { width: 100%; }
	#songs:before {
		background: url(../img/bgText_songs_sp.png) no-repeat right top;
		background-size: 98% auto;
	}
	.songs_item {
		clear: both;
		width: 100%;
		margin-bottom: 50px;
	    padding: 4vw 5vw 0;
	}
	.songs_image:before {
		background-size: auto;
		top: -25px;
		left: -55px;
	}
}
@media screen and (max-width: 640px) {
	.songs_image:before {
		background-size: auto 14%;
		top: -7%;
		left: -11%;
	}
}

/*--
ここからスペシャルプログラム
--*/
@media screen and (max-width: 1680px) {
	#special:before { background-size: 85% auto; }
}
@media screen and (max-width: 767px) {
	#special:before {
		background: url(../img/bgText_special_sp.png) no-repeat left top;
		background-size: 98% auto;
	}
	#special .item_top .special_item {
		float: none;
	}
	#special .item_top { padding: 50px 50px 0; }
	#special .item_top .item_image { margin: 0; }
	#special .item_top .itemTitle { margin-top: 30px; width: 100%; }
	#special .item_text { padding: 0 50px 50px; }
}
@media screen and (max-width: 640px) {
	#special .item_top { padding: 10vw 5vw 0; }
	#special .item_text { padding: 0 5vw 10vw; }
}
@media screen and (max-width: 360px) {
	#special .tagBar { width: 100%; }
}

/*--
ここからニュープログラム
--*/
@media screen and (max-width: 1680px) {
	#new:before { background-size: 85% auto; }
	/*#new .itemInner { margin: 0 5px; }*/
	#new .item_text { padding: 50px 20px; }
}
@media screen and (max-width: 767px) {
	#new:before {
		background: url(../img/bgText_new_sp.png) no-repeat right top;
		background-size: 98% auto;
	}
	#new .item_row { display: block; margin-bottom: 30px; }
	#new .itemInner {
		width: 100%;
		max-width: none;
		margin: 0 0 30px;
	}
	/*#new .itemInner:nth-child(2n) { margin: 0; }*/
	#new .item_text { padding: 50px; }
}
@media screen and (max-width: 640px) {
	#new .item_text { padding: 10vw 5vw; }
}

/*--
ここから50thイベント
--*/
@media screen and (max-width: 1680px) {
	#event:before { background-size: 85% auto; }
}
@media screen and (max-width: 767px) {
	#event:before {
		background: url(../img/bgText_event_sp.png) no-repeat left top;
		background-size: 98% auto;
	}
	#event .bgDot:before, #event .bgDot:after { background-size: 100vw auto; }
	#event .bgDot:before { background-position: calc(100% + 50vw) calc(0% - 50vw); }
	#event .bgDot:after { background-position: calc(0% - 50vw) calc(100% + 50vw); }
}

/*--
ここからフッター
--*/
@media screen and (max-width: 1680px) {
	.site-footer .inner {
		height: 11.3vw;
	}
	.site-info { padding: 1.5vw; }
	.footer_anniversary:after { left: -5%; }
	.footer_anniversary .textFifty { background-size: 100%; }
}
@media screen and (max-width: 767px) {
	.site-footer .rollingBG {
		height: 50vw;
		animation: rollingBackground_sp 500s linear infinite;
		-webkit-animation: rollingBackground_sp 500s linear infinite;
	}
	.site-footer .inner {
		height: 17.5vw;
		-webkit-justify-content: center;
		justify-content: center;
	}
	.footer_anniversary {
		width: 110%;
		left: -5%;
		margin-bottom: 6vw;
	}
	.footer_anniversary .textFifty {
		background: url(../img/footer_50_sp.png) no-repeat center;
		background-size: 70% auto;
		background-position: center -2vw;
	}
}
@media screen and (max-width: 640px) {
	.site-info p { font-size: 2.5vw; }
}
@media screen and (max-width: 460px) {
	.site-footer .inner { height: 23.5vw; }
	.footer_anniversary { margin-bottom: 11vw; }
}
@media screen and (max-width: 360px) {
	.site-footer .inner { height: 26.5vw; }
	.footer_anniversary { margin-bottom: 14vw; }
	.footer_anniversary:after { background-size: 50%; }
}

