@charset "UTF-8";
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/

/* font */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(http://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);

/* sprite ratina */
*, *:before, *:after {
	box-sizing: border-box;
}

html {
	color: #202020;
}

body {
	-webkit-text-size-adjust: none; /* フォントサイズ自動調整 */
	-webkit-font-smoothing: antialiased; /*フォント細くなるのを解消 safari */
	padding: 0;
	background: #fff;
	font-size: 14px;
	line-height: 1.8;
	font-family: 'Noto Sans JP', Verdana, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	color: #202020;
}
body.second-page {

}
body.second-page:before {
	/*
	z-index: 1;
	content: '';
	position: fixed;
	top:0;
	left:0;
	background-color: rgba(255,255,255,0.9);
	width: 100%;
	height: 100%;
	*/
}
#wrapper {
	z-index: 1000;
}

img {
	line-height: 1;
	vertical-align: top;
}
@media only screen and (max-width: 767px) {
	img {
		/*max-width: 100%;*/
	}
}

a {
	color: #202020;
	text-decoration: underline;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a:hover {
	text-decoration: none; 
	opacity: .7;
}
.ie8 a:hover {
	color: #636363;
}

.clearfix {
	*zoom: 1;
}
.clearfix:after {
	content: '';
	clear: both; 
	display: block;
}

/* =============================================================================
   item-sp-only
   item-pc-only
============================================================================= */
@media only screen and (min-width: 768px) {
	.item-sp-only {
		display: none !important;
	}
}
@media only screen and (max-width: 767px) {
	.item-pc-only {
		display: none !important;
	}
}
.ie8 .item-sp-only {
	display: none !important;
}

/* =============================================================================
   グローバルヘッダー
============================================================================= */
.global-header {
	position: relative;
	margin: 0 auto;
	padding: 0 50px;
	width: 1188px;
	overflow: hidden;
	z-index: 500;
}
.global-header .site-logo {
	margin: 0;
	padding-top: 25px;
	padding-bottom: 48px;
	float: left;
}
.logo-invert {
	-webkit-filter: invert(100%);
	-moz-filter: invert(100%);
	-o-filter: invert(100%);
	-ms-filter: invert(100%);
	filter: invert(100%);
}
.global-header .site-logo img {
	width: 141px;
}
@media only screen and (max-width: 767px) {
	.global-header {
		/*max-width: 100%;*/
	}
	.global-header .site-logo {
		/*padding: 20px 0 0;*/
	}
	.global-header .site-logo img {
		/*width: 92px;*/
	}
}
.lang-area {
	width: 100%;
	min-width: 1188px;
	background-color: #000000;
}

.lang-nav {
	width: 1088px;
	margin: 0 auto;
	padding: 10px 0;
	list-style: none;
	text-align: right;
}
.lang-nav__item {
	display: inline-block;
	margin: 0 0 0 1px;
}
.lang-nav__item a {
	display: block;
	padding: 0 10px;
	font-size: 14px;
	line-height: 20px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	color: #ffffff;
	text-decoration: none;
}
.lang-nav__item a.current, .lang-nav__item a:hover {
	background: #b3b2b2;
	color: #fff; 
	opacity: 1;
}

.global-nav {
	position: relative;
	margin: 0 auto;
	padding-top: 25px;
	max-width: 970px;
	float: right;
}
.global-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.global-nav__item {
	display: inline-block;
	font-size: 20px;
}
.global-nav__item--discography {
	/*padding-right: 16px; tanaka*/
}
.global-nav__item--contact {
	/*padding-right: 16px;*/
}

.global-nav__item--blog {
	/*padding-left: 16px;*/
	/*background: url(../img/common/gnav_line.png) no-repeat 0 center;*/
}
.global-nav__item a {
	display: block;
	padding: 0 6px; /*tanaka*/
	margin: 0 6px;
	line-height: 38px;
	font-family: 'Kelly Slab', sans-serif; 
	text-decoration: none;
	border-bottom: transparent solid 6px;
	padding-bottom: 10px;
}
.global-nav__item a.current, .global-nav__item a:hover {
	/*background: url(../img/common/gnav_bg_on.png) no-repeat center;*/ 
	opacity: 1;
	border-bottom: #ff3a97 solid 6px;
	padding-bottom: 0px;
}
.nav-invert a{
	color:#ffffff !important;
	text-shadow: 1px 1px 2px #666,-1px -1px 2px #666,-1px 1px 2px #666,1px -1px 2px #666;
}

.list-btn-share {
	position: absolute;
	bottom: 3px; 
	margin: 0;
	padding: 0;
	list-style: none;

	right: 0;
	display: none;/*消す*/
}
.list-btn-share li {
	display: inline-block;
	margin-left: 13px;
}

#btn-sidemenu {
	position: absolute;
	top: 20px;
	margin: 0; 

	right: 20px;
}

/* =============================================================================
   固定ヘッダー PC
============================================================================= */

.header-box-fixed {
	position: fixed;
	top: 0;
	left: 0;
	/*z-index: 1000;*/
	/*background-color: #000000;*/
}
.header-box-fixed nav ul li a {
	color: #ffffff;
}

/* =============================================================================
   固定ヘッダー
============================================================================= */
#fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 500;
	padding-top: 20px;
	padding-bottom: 6px;
	width: 100%;
	background: #fff;
	background: rgba(255, 255, 255, 0.9);
	text-align: center;
}
#fixed-header .site-logo {
	margin: 0;
}
#fixed-header .site-logo img {
	width: 64px;
}
.ie8 #fixed-header {
	display: none;
}

#btn-sidemenu2 {
	position: absolute;
	top: 20px;
	margin: 0; 

	right: 20px;
}

/* =============================================================================
   メインビジュアル
============================================================================= */
.main-visual {
	position: relative;
	margin: 0px auto 0;
	max-width: 100%;
	min-width: 1188px;
	text-align: center;
}
.main-visual.main-visual__top{
	margin: -169px auto 0;
	/*padding-bottom: 58px;*/
}

@media only screen and (max-width: 767px) {
	/*
	.main-visual {
		max-width: 85%;
		background: none;
	}
	.main-visual img {
		max-width: 100%;
	}
	*/
}
.main-visual__inner {
	position: relative;
	margin: 0 auto;
	width: 1088px;
}
.main-visual__top .main-visual__inner {
	padding-top: 790px;
}

ul.small-banner-area {
	position: relative;
	z-index: 250;
	width:1188px;
	margin: -97px auto 0;
	padding: 0 50px;
	list-style: none;
	overflow: hidden;	
}
ul.footer-small-banner {
	margin: 150px auto 120px;
	padding: 0;
}
ul.small-banner-area li {
	float: left;
	margin: 0 60px 0 0;
	background-color: #fff;
}
ul.small-banner-area li:last-child {
	margin: 0 0 0 0;
}

ul.small-banner-area li img{
	padding:0;
	margin: 0;
}
ul.small-banner-area li a:hover{
	display: inline-block;/*safari対策*/
}
ul.mid-banner-area {
	position: relative;
	width:1188px;
	margin: 60px auto 0;
	padding: 0 50px;
	list-style: none;
}
ul.mid-banner-area li {
	margin: 0 0 30px 0;
	background-color: #fff;
}
ul.mid-banner-area li:last-child {
	margin: 0;
}
.area-news {
	position: absolute;
	top: 216px;
	right: 0px;
	width: 248px;
	height: 248px;
}
.area-news a {
	display: block;
	width: 100%;
	height: 100%;
}
.area-news a img {
	/*transition-duration: .3s; 
	transition-property: -webkit-transform;
	transition-property:         transform;*/
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.area-news a img {
  -webkit-animation: A 8s ease-in-out 1s infinite;
  animation: A 8s ease-in-out 1s infinite;
}
@-webkit-keyframes A {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(15deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
  }
  75% {
    -webkit-transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes A {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.area-news a:after {
	content: '';
	display: inline-block;
	width: 1px;
	height: 320px;
	vertical-align: middle;
}
.area-news a:hover {
	opacity: 1;
}
.area-news a:hover .txt-news {
	opacity: .7;
}
.ie8 .area-news a:hover .txt-news {
	color: #636363;
}
.area-news a:hover img {
	opacity: .9;
	filter: alpha(opacity=90);
	/*-webkit-transform: rotate(10deg);
	    -ms-transform: rotate(10deg);
	        transform: rotate(10deg);*/
}
.area-news a:hover .bg-news01 img {
	-webkit-transform: rotate(10deg);
	    -ms-transform: rotate(10deg);
	        transform: rotate(10deg);
}
.area-news a:hover .bg-news02 img {
	-webkit-transform: rotate(-10deg);
	    -ms-transform: rotate(-10deg);
	        transform: rotate(-10deg);
}
.area-news .bg-news01, .area-news .bg-news02 {
	position: absolute;
	top: 0;
	left: 0;
}
.area-news .txt-news {
	position: relative;
	top: 0;
	left: 0;
	z-index: 10;
	display: inline-block;
	margin: 0 54px 0 55px;
	padding: 0 0 20px 0;
	width: 171px;
	background: url(../img/top/icon_arrow_news.png) no-repeat right bottom;
	vertical-align: middle; 
	text-align: left;
}

/* =============================================================================
   パンくず
============================================================================= */
.breadthumb {
	margin: .5em auto -2.3em;
	padding: 0 50px;
	width: 1188px;
	color: #202020;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
}
.breadthumb a {
	color: #050505; 
	text-decoration: none;
}
.breadthumb a:hover {
	text-decoration: underline;
}
.breadthumb a:first-child span {
	margin-left: 0;
}
.breadthumb span {
	margin: 0 .5em;
}
.crumb-current {
	color: #636363; 
}
@media only screen and (max-width: 767px) {
	/*
	.breadthumb {
		max-width: 85%;
		font-size: 12px;
	}
	*/
}

/* =============================================================================
   コンテンツエリア
   .area-content
============================================================================= */
.area-content {
	margin: 60px auto 0;
	padding: 0 50px;
	width: 1188px;
}
@media only screen and (max-width: 767px) {
	/*
	.area-content {
		max-width: 85%;
	}
	*/
}
.area-content img {
	max-width: 100%;
}

/* ----------------------------------------------
   メインコンテンツエリア
   .area-main
---------------------------------------------- */
.area-main {
	/*float: left;*/
	width: 1088px;
}
@media only screen and (max-width: 767px) {
	/*
	.area-main {
		float: none;
		max-width: 100%;
	}
	*/
}

.content-section--main {
	margin-top: 40px;
}
.content-col2 .content-section--main, .content-section--main:first-child {
	margin-top: 0;
}
@media only screen and (max-width: 767px) {
	/*
	.content-section--main {
		margin-top: 30px;
	}
	.content-section--main:first-child {
		margin-top: 30px;
	}
	*/
}

.content-section--sub {
	margin-top: 0;
}
.content-section--sub.sub-first {
	margin-top: 0;
}

@media only screen and (max-width: 767px) {
	/*
	.content-section--sub {
		margin-top: 30px;
	}
	.content-section--sub:first-child {
		margin-top: 30px;
	}
	*/
}

.content-col2 .content-col2__item--video {
	float: right;
	width: 704px;
}

@media only screen and (max-width: 747px) {
	/*
	.content-col2 .content-col2__item--video {
		float: none;
		width: 100%;
	}
	*/
}

.content-col2 .content-col2__item--discography {
	float: left;
	width: 320px;
}
.content-col2 .content-col2__item--discography .column-information__body--nodot {
	margin: 0 auto;
	width: 320px;
}
.content-col2 .content-col2__item--discography a {
	display: block;
}
@media only screen and (max-width: 747px) {
	/*
	.content-col2 .content-col2__item--discography {
		float: none;
		margin-top: 30px;
		width: 100%;
	}
	*/
}
.content-col3__item {
	width: 320px;
	float: left;
	margin-right: 64px;
}
.content-col3__item__media {
	margin-right: 0;
}


/* ----------------------------------------------
   サブコンテンツエリア
   .area-sub
---------------------------------------------- */
.area-sns {
	background: url(../img/top/bg_top.svg) no-repeat #e9e9e9;
	background-size: 2000px;
	background-position: 0 0;
	padding-bottom: 100px;
	width: 100%;
	min-width: 1188px;
}

.area-sub {
	/*
	float: right;
	width: 320px;
	background-color: #c4cbd1;
	text-align: center;
	padding: 20px 10px;
	*/
	width: 1188px;
	margin: 0 auto;
	padding: 0 50px;
	padding-top: 80px;
	margin-top: 40px;
	overflow: hidden;
}
.area-sub iframe {
	vertical-align: top;
}
@media only screen and (max-width: 767px) {
	/*
	.area-sub {
		float: none;
		width: 100%;
	}
	*/
}
.area-sns2 {
	width: 1188px;
	margin: 0 auto;
	padding: 0 50px;
	padding-top: 40px;
	overflow: hidden;
}
.second-page .area-sns2 {
	padding: 0;
}

.content-col__item--sns1 {
	float: left;
	width: 320px;
	margin-right: 64px;
}
.content-col__item--sns1:nth-child(3) {
	margin-right: 0;
}
.content-col__item--sns2 {
	position: relative;
	float: left;
	width: 512px;
	margin-right: 64px;
	padding-top: 58px;
}
.content-col__item--sns2:nth-child(2) {
	float: left;
	width: 512px;
	margin-right: 0;
}

.content-sns__title {
	position: absolute;
	top: 0;
	left: 160px;
	margin: 0;
	z-index: 100;
}


.area-sub-list-sns {
	padding: 12px 1em;
	border-radius: 5px;
	background-color: #808080;
	color: #fff; 
	text-align: center;
}
.area-sub-list-sns__p, .area-sub-list-sns__list, .area-sub-list-sns__item {
	display: inline-block;
	vertical-align: top;
}

.area-sub-list-sns__p {
	margin: 0 52px 0 0;
	font-weight: 300;
	font-style: italic;
	font-size: 14px; 
	font-family: 'Roboto', sans-serif;
}

.area-sub-list-sns__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.area-sub-list-sns__item {
	display: inline-block;
	margin-right: 24px;
	line-height: 1; 
	vertical-align: middle;
}
.area-sub-list-sns__item img {
	font-size: 1; 
	line-height: 1;
}
.area-sub-list-sns__item--instagram {
	margin-right: 0;
}

.content-section__tweet {
	width: 320px;
	margin: 0;
}
.content-section__facebook {
	margin-top: 20px;
	max-width: 100%; 
	/*border: 1px solid #ededed;*/
}
.content-section__line {
	background-color: #ffffff;
	padding: 30px 30px 50px;
	margin-bottom: 25px;
}
.content-section__line p {
	margin: 0 0 20px;
}

.content-section__linklist {
	margin: 0;
	padding: 0;
	padding: 10px 0 0 20px; 
	list-style: none;
}
.content-section__linklist .content-section__linklist--item {
	display: inline-block;
	margin-right: 0;
	margin-bottom: 0;
	vertical-align: middle;
}
.content-section__linklist .content-section__linklist--item--youtube {
	margin-right: 46px;
}
.content-section__linklist .content-section__linklist--item--lastrum {
	margin-right: 100px;
}
.content-section__linklist .content-section__linklist--item--facebook {
	margin-right: 60px;
}
.line-qr {
	margin: 0 auto;
	text-align: center;
}
.line-qr img{
	width:150px;
	height:150px;
}
.line-friend {
	margin: 0 auto;
	text-align: center;
}
.line-friend img {
	height:30px;
}
.line-bnr {
	margin: 0 auto;
	text-align: center;
}
.line-bnr img{
	width: 320px;
}
.line-bnr a:hover {
	display: inline-block;/*safari対策*/
}
@media only screen and (max-width: 767px) {
	/*
	.line-qr {
		display: none;
	}
	.line-friend img {
		height:36px;
	}
	*/
}

ul#instafeed {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
ul#instafeed li{
	float: left;
}
ul#instafeed li img{
	width: 128px;
}


.btn-pagetop {
	position: fixed;
  	bottom: 40px;
  	right: 60px;
  	z-index: 980;
  	font-size: 48px;
  	padding-left: 1px;
  	margin: 0;
}
.btn-pagetop a {
	position: relative;
	padding-left: 1px;
}
.btn-pagetop a:hover {
	padding-left: 1px;
	top: -5px;
}
@media only screen and (max-width: 767px) {
	/*
	.btn-pagetop {
		width: 100%;
		text-align: center;
	}
	.btn-pagetop a {
		display: block;
	}
	*/
}

/* =============================================================================
   フッター上のリンクリスト（SPのみ）
============================================================================= */
.content-related-link__linklist {
	margin: 0;
	padding: 0;
	padding: 15px 0 12px;
	border-top: 1px solid #b5b5b5;
	text-align: center; 
	list-style: none;
}
.content-related-link__linklist li {
	display: inline-block;
	padding: 0 15px;
	vertical-align: middle;
}
.content-related-link__linklist li:first-child {
	padding-left: 0;
}
.content-related-link__linklist li:last-child {
	padding-right: 0;
}

/* =============================================================================
   global sns area
============================================================================= */

.global-sns-area {
	position: relative;
	background-image: url(../img/common/followus_bg.png);
	width: 100%;
	min-width: 1188px;
	padding: 45px 0;
	text-align: center;
}
.global-sns-area:after {
	content: "";
	position: absolute;
	top: -30px;
	left: 50%;
	margin-left: -450px;
	width: 183px;
	height: 76px;
	background: url(../img/common/follow_us_tl.png) 0 0 no-repeat;
}
.global-sns-area .global-sns-area__officilal,
.global-sns-area .global-sns-area__itsuka,
.global-sns-area .global-sns-area__gonchi {
	display: inline-block;
	margin: 0 30px;
}
.global-sns-area .global-sns-area__officilal {

}
.global-sns-area p{
	margin: 0 0 0px 0;
}
.global-sns-area ul {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.global-sns-area ul li {
	display: inline-block;
	font-size: 30px;
	margin: 0 0 0 0;
	padding: 0;
}
.global-sns-area ul li a:hover {
	opacity: 1;
	color: #555555;
}

.global-sns-area .global-sns-area__officilal ul li {
	margin: 0 15px;
}


.global-link-area {
	padding: 60px 0;
	text-align: center;
	background-color: #ffffff;
	width: 100%;
	min-width: 1188px;
}
.global-link-area ul{
	display: inline-block;
}

/* =============================================================================
   global footer
============================================================================= */
.global-footer {
	padding: 30px 0;
	background: #868686;
	font-weight: 500; 
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	color: #fff;
	width: 100%;
	min-width: 1188px;
}
.global-footer a {
	color: #fff;
	text-decoration: none;
}
.global-footer a:hover {
	color: #ddd; 
	opacity: 1;
}
.global-footer__inner {
	margin: 0 auto;
	max-width: 970px;
}
.global-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.global-footer ul li {
	display: inline-block;
}
.global-footer .nav-footer {
	float: left;
}
.global-footer .nav-footer li {
	margin-left: 1.5em;
}
.global-footer .nav-footer li:first-child {
	margin-left: 0;
}
.global-footer .footer-area-sns {
	float: right;
}
.global-footer .footer-area-sns a:hover {
	opacity: 0.7;/*tanaka*/
}
.global-footer .footer-area-sns p {
	display: inline;
}
.global-footer .footer-area-sns__list {
	display: inline; 
	margin: 0;
	padding: 0;
	width: 100%;
	list-style: none;
}
.global-footer .footer-area-sns__list li {
	display: inline-block;
	margin-left: 1.5em;
	padding-top: 1px;
}
.global-footer .footer-area-sns__list li a {
	display: block;
	line-height: 21px;
}

.global-footer .footer-area-sns__item--twitter a {
	/*
	padding-left: 25px;
	background: url(../img/common/icon_twitter.png) no-repeat 0 0;
	tanaka*/
}

.global-footer .footer-area-sns__item--facebook a {
	/*
	padding-left: 17px;
	background: url(../img/common/icon_facebook.png) no-repeat 0 0;
	tanaka*/
}

.global-footer .footer-area-sns__item--instagram a {
	/*
	padding-left: 25px;
	background: url(../img/common/icon_instagram.png) no-repeat 0 0;
	tanaka*/
}
@media only screen and (max-width: 767px) {
	/*
	.global-footer .footer-area-sns {
		float: none;
		border-bottom: 1px solid #b5b5b5;
	}
	.global-footer .footer-area-sns li {
		margin-left: 0;
		padding: 0;
		width: 33%;
		background-size: 21px; 
		text-align: center;
		text-indent: -10000px;
	}
	.global-footer .footer-area-sns li a {
		display: block;
		padding: 12px 0;
		border-left: 1px solid #b5b5b5;
	}
	.global-footer .footer-area-sns li:first-child a {
		border-left: none;
	}
	.global-footer .footer-area-sns__list li a {
		background-size: 21px;
	}

	.global-footer .footer-area-sns__item--twitter a {
		background: url(../img/common/ratina_icon_footer_twitter.png) no-repeat center;
	}

	.global-footer .footer-area-sns__item--facebook a {
		background: url(../img/common/ratina_icon_footer_facebook.png) no-repeat center;
	}

	.global-footer .footer-area-sns__item--instagram a {
		background: url(../img/common/ratina_icon_footer_instagram.png) no-repeat center;
	}
	*/
}
.global-footer .copyright {
	clear: both;
	margin: 0;
	padding-top: 0px;
	text-align: center;
}
.global-footer .copyright small {
	font-size: 14px;
}
@media only screen and (max-width: 767px) {
	/*
	.global-footer {
		padding-top: 0;
		padding-bottom: 35px;
	}
	.global-footer .copyright {
		padding-top: 35px;
	}
	*/
}

/* =============================================================================
   サイドメニュー
   #side-menu
============================================================================= */
#side-menu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	display: none;
	overflow-x: hidden;
	overflow-y: auto;
	padding-bottom: 90px;
	width: 100%;
	height: 100%;
	background: #999;
	color: #fff;

	-webkit-overflow-scrolling: touch;
	        overflow-scrolling: touch;
}

.side-menu__list {
	margin: 0;
	margin-top: 56px;
	padding: 0;
	border-top: 1px solid #b5b5b5;
	font-family: 'Questrial', sans-serif; 
	list-style: none;
}

.side-menu__item {
	border-bottom: 1px solid #b5b5b5;
}
.side-menu__item a {
	display: block;
	padding: 10px 25px;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
}

.side-menu-sns {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #b5b5b5; 
	list-style: none;
}
.side-menu-sns li {
	display: inline-block;
	width: 33%;
	border-left: 1px solid #b5b5b5; 
	background-size: 21px;
	text-align: center;
	text-indent: -10000px;
}
.side-menu-sns li:first-child {
	border-left: none;
}
.side-menu-sns li a {
	display: block;
	padding: 14px 0;
	width: 100%;
}
.side-menu-sns__item--twitter {
	background: url(../img/common/ratina_icon_footer_twitter.png) no-repeat center;
}

.side-menu-sns__item--facebook {
	background: url(../img/common/ratina_icon_footer_facebook.png) no-repeat center;
}

.side-menu-sns__item--instagram {
	background: url(../img/common/ratina_icon_footer_instagram.png) no-repeat center;
}

.side-lang-nav {
	margin: 0;
	padding: 0;
	padding-top: 30px;
	text-align: center;
	list-style: none;
}
.side-lang-nav__item {
	display: inline-block;
	margin-left: 10px;
}
.side-lang-nav__item:first-child {
	margin-left: 0;
}
.side-lang-nav__item a {
	display: block;
	padding: .8em 0;
	width: 48px;
	background: #fff;
	font-family: 'Questrial', sans-serif; 
	color: #7a7a7a;
	text-align: center;
	text-decoration: none;
}
.side-lang-nav__item a.current {
	background: #b3b2b2;
	color: #fff;
}

#btn-menu-close {
	position: absolute;
	top: 0;
	margin: 0;
	padding-top: 20px;
	padding-right: 20px; 

	right: 0;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.alignleft {
	float: left;
	display: block;
	margin-right: 1em;
}

.alignright {
	float: right;
	display: block;
	margin-left: 1em;
}

/* ###=============================================================================
## テキストとアイコン

```
<p class="btn-more"><a href=""><span class="text--withicon">more</span><i class="icon btn-more__icon"></i></a></p>
```
###============================================================================= */
.icon, .text--withicon {
	display: inline-block;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	color: #2998c0;
}

/* ###=============================================================================
## タイトル

```
<h1 class="content-section__title content-section__title--holetop">Music video</h1>
```
###============================================================================= */
.content-section__title {
	font-weight: 400;
	font-size: 26px;
	line-height: 50px;
	font-family: 'Kelly Slab', sans-serif;
	vertical-align: middle;
	text-align: center;
	letter-spacing: -.5px;
}
.content-section__title--line {
	border-top: solid 2px #000;
	border-bottom: solid 2px #000;
	/*
	background-image: url(../img/common/line1.png) ,url(../img/common/line2.png);
	background-repeat: repeat-x;
	background-position: top,bottom;
	*/
}

/*
.content-section__title:before {
	content: '';
	display: inline-block;
	margin-right: -1.4em;
	width: 72px;
	height: 70px;
	line-height: 70px;
	vertical-align: top;
}*/
.content-section__title--holetop:before {
	width: 72px;
	height: 70px; 
	background: url(../img/common/bg_title_top.png) no-repeat 0 0;
	background-image: url(../img/sprite.png);
	background-position: -72px 0;
}

.content-section__title--holebottom:before {
	width: 72px;
	height: 70px; 
	background-image: url(../img/sprite.png);
	background-position: 0 0;
}
.area-main .content-section__title, .area-sub .content-section__title {
	margin: 0 0 36px;
}
.content-item__title {
	font-family: 'Kelly Slab', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #ffffff;
	background: #df0254;
	text-align: center;
	margin: 0 0 18px;
}

@media only screen and (max-width: 767px) {
	/*
	.content-section__title {
		font-size: 22px; 
		line-height: 49px;
	}
	.content-section__title:before {
		margin-right: -1.2em;
		width: 50px;
		height: 49px;
		line-height: 49px;
	}
	.content-section__title--holetop:before {
		width: 49.5px;
		height: 48.5px;
		background-image: url(../img/ratinasprite.png);
		background-position: -49.5px 0;
		background-size: 99px 62.5px;
	}

	.content-section__title--holebottom:before {
		width: 49.5px;
		height: 48.5px;
		background-image: url(../img/ratinasprite.png);
		background-position: 0 0;
		background-size: 99px 62.5px;
	}
	*/
}

.title-plane {
	margin: 1.5em 0 1em;
	font-weight: bold;
	font-size: 16px;
}

/* ###=============================================================================
## インフォメーションボックス
.column-information
```
<article class="column-information">
	<span class="column-information__date">Dec. 14. 2014</span>
	<div class="column-information__body">
		<a href="#">【Charisma.com出演】2014.11.29(土) 夜の本気ダンス presents &#8220;O-BAN-DOSS&#8221; at 梅田 Shangri-la　チケットSold Out</a>
	</div>
<!-- /article.column-information --></article>
```
###============================================================================= */

.column-information {
	margin-bottom: 14px;
	padding: 0 0 14px;
	background: url(../img/common/dot.gif) repeat-x 0 bottom;
	word-break: break-all;
}
.main--archive .column-information {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}
@media only screen and (max-width: 767px) {
	/*
	.column-information {
		margin-bottom: 14px;
		padding: 0 0 14px;
		background: url(../img/common/dot.gif) repeat-x 0 bottom;
		word-break: break-all;
	}
	*/
}
.column-information__media {
	padding-left: 30px;
}
.content-section__title + .column-information {
	margin-top: -7px;
}

.column-information a {
	color: #202020; 
	opacity: 1;
}
.column-information a:hover {
	background-color: #fffc00;
	text-decoration: none;
}
.column-information__date {
	display: block;
	margin-bottom: 18px;
	font-weight: 400;
	font-style: italic;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	color: #000000;
}
.main--archive .column-information__date {
	margin-bottom: 10px;
	font-size: 16px;
}
.column-information__media .column-information__date {
	margin-bottom: 18px;
}

.newmark {
	margin-left: 10px;
	padding: 2px 0px;
	color: #ff3a97;
	font-weight: 600;
	font-style: italic;
	font-family: 'Roboto', sans-serif;
}

.column-information__date_live {
	display: block;
	padding-top: 6px;
	margin-bottom: 4px;
	font-weight: 400;
	font-style: italic;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	color: #000000;
}
.column-information__date_live_archive {
	display: block;
	margin-bottom: 0px;
	font-weight: 400;
	font-style: italic;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	color: #000000;
}
.column-information__place {
	display: inline-block;
	margin-bottom: 6px;
	font-weight: 400;
	font-size: 14px;
	color: #000000;
}
.column-information__place_archive {
	display: inline-block;
	margin-bottom: 6px;
	font-size: 16px;
	color: #000000;
}
.column-information__place:before,
.column-information__place_archive:before {
	font-family: 'FontAwesome';
	content: "\f041";
	margin-right: 10px;
}

.column-information__category_list {
	font-size: 18px;
	float: left;
	line-height: 1.5;
}

.column-information__category {
	display: inline-block;
	margin-right: .8em;
	margin-bottom: 6px;
	/*height: 22px;
	line-height: 22px;*/
	font-size: 18px;
	color: #333;
}

.column-information__title,
.column-information__title--nodot {
	margin: 0 0 .8em;
	font-weight: bold; 
	font-size: 14px;
}
.main--archive .column-information__title {
	font-size: 16px;
}
.content-col3__item__news .column-information__title {
	margin: 0 0 .8em;
}

.column-information__body {
	color: #333333;
	font-weight:400;
	margin-bottom: 6px;
}
.column-information__body p {
	margin: 0;
}
.column-information__date + .column-information__title,
.column-information__date + .column-information__body,
.column-information__date_live + .column-information__body {
	margin-top: -10px;
}

.column-information--body {
	margin-bottom: 0;
	padding: 0;
	background: none;
}
.column-information--set {
	margin-left: 40px;
}

/* ###=============================================================================
## 内寄せコンテンツボックス
.content-section__inner
###============================================================================= */
.content-section__inner {
	width:800px;
	margin: 0 auto;
}
@media only screen and (max-width: 767px) {
	/*
	.content-section__inner {
		margin: 0;
		width: auto;
	}
	*/
}

.content-section__text {
	color: #202020;
}
.content-inner {
	width: 800px;
	margin: 0 auto;
}

/* ###=============================================================================
## 詳細ページ
.column-detail
```
<article class="column-information--detail">
	<span class="column-information__date">Sep. 10. 2014</span>
	<h1 class="column-information">8月6日（水）20時より、TEMPURA KIDZ vs Charisma.cоm「ミイラキラー」リリース記念緊急企画として、UstreamにてTEMPURA KIDZ vs Charima.comのインタビューを公開生配信！</h1>
	<p>今週8月6日（水）に配信限定でリリースされる、TEMPURA KIDZとCharisma.cоmのコラボ曲「ミイラキラー」。この曲のリリースを記念した緊急企画として、「ミイラキラー」にまつわるインタビューをUstreamで公開生配信。猪又孝氏をインタビュアーに迎え、現役中高生と現役OL、世代や職種を超えたコラボにまつわるエピソードに迫ります！<br />
	番組では、視聴者の皆様からの質問も大募集！　質問は「<span style="color: #ff0000;"><strong>#ミイラキラー</strong></span>」をつけてツイートしてください。質問はただいまより番組終了まで受け付けていますので、TEMPURA KIDZやCharisma.comに生で聞いてみたい質問のある方、この機会にどしどしツイートしてください！</p>
	<p>■番組タイトル<br />
	TEMPURA KIDZ vs Charisma.com<br />
	「ミイラキラー」リリース記念　公開生インタビュー</p>
<!-- /article.column-detail --></article>
```
###============================================================================= */
.column-detail {
	position: relative;
	margin: 0 auto 14px;
	padding-top: 14px;
	width: 740px;
	/*background: url(../img/common/dot.gif) repeat-x 0 top;*/
	word-break: break-all;
}
.column-detail .column-information__date {
	margin-bottom: 20px;
	font-size: 16px;
}
.column-detail .column-information__date_live {
	margin-bottom: 20px;
	font-size: 20px;
	color: #202020;
}
@media only screen and (max-width: 640px) {
	/*
	.column-detail .column-information__date_live {
	margin-top: 40px;
	}
	*/
}
@media only screen and (max-width: 767px) {
	/*
	.column-detail {
		padding-right: 0;
		padding-left: 0;
		background: url(../img/common/dot2x.gif) repeat-x 0 top;
		background-size: 2px 1px;
	}
	*/
}

.column-detail--title {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: bold;
	color: #000000;
}

.column-detail--body {
	margin-right: -30px;
	margin-left: -30px;
	padding-right: 30px;
	padding-bottom: 40px;
	padding-left: 30px;
	background: url(../img/common/dot.gif) repeat-x 0 bottom;
	color: #202020;
}
@media only screen and (max-width: 767px) {
	/*
	.column-detail--body {
		margin-right: 0;
		margin-left: 0;
		padding-right: 0;
		padding-left: 0;
		background: url(../img/common/dot2x.gif) repeat-x 0 bottom;
		background-size: 2px 1px;
	}
	*/
}
.column-detail--body a {
	color: #101010; 
	opacity: 1;
}
.column-detail--body a:hover {
	background-color: #fffc00;
	text-decoration: none;
}
.column-detail .list-btn-share {
	top: 20px;
	bottom: auto; 

	right: 30px;
}
@media only screen and (max-width: 767px) {
	/*
	.column-detail .list-btn-share {
		right: 0;
	}
	.column-detail .list-btn-share li {
		margin-left: 5px;
	}
	*/
}

/* ###=============================================================================
## moreボタン
.btn-more
```
<p class="btn-more"><a href="">more <i class="btn-more__icon"></i></a></p>
```
###============================================================================= */
.btn-more {
	margin: 13px 0 -5px;
	text-align: right;
}
.btn-more a:hover {
	opacity: .7;
}
.ie8 .btn-more a:hover {
	color: #636363;
}
.btn-more__icon {
	display: inline-block;
	margin: 0 5px 0 5px;
	/*
	width: 27px;
	height: 26px; 
	background-image: url(../img/common/arrow_right.png);
	*/
}
.btn-more__icon:before {
	font-family: 'FontAwesome';
	content: "\f138";
	font-style: normal;
	font-size: 22px;
}
.btn-more a .btn-more__icon,
.btn-list-prevnext__next a .btn-more__icon {
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.btn-more a:hover .btn-more__icon,
.btn-list-prevnext__next a:hover .btn-more__icon {
	right: -4px;
}
@media only screen and (max-width: 767px) {
	/*
	.btn-more__icon {
		width: 9px;
		height: 14px;
		background-image: url(../img/ratinasprite.png);
		background-position: 0 -48.5px;
		background-size: 99px 62.5px;	
	}
	*/
}

/* ###=============================================================================
## prev/nextボタン
.btn-list-prevnext
```
<ul class="btn-list-prevnext clerfix">
	<li class="btn-list-prevnext__prev"><a href="#"><i class="icon btn-prev__icon"></i><span class="text--withicon">prev</span></a></li>
	<li class="btn-list-prevnext__next"><a href="#"><span class="text--withicon">next</span><i class="icon btn-more__icon"></i></a></li>
</ul>
```
###============================================================================= */

.btn-list-prevnext {
	position: relative; 
	margin: 0 auto;
	padding: 0;
	list-style: none;
	width: 800px;
}
.main--archive .btn-list-prevnext {
	width: 800px;
	margin: 0 auto;
}
.btn-list-prevnext a {
	text-decoration: none;
}
.btn-list-prevnext__prev {
	float: left;
}

.btn-list-prevnext__next {
	float: right;
}

.btn-list-prevnext__list {
	margin: 0 auto;
	padding-top: 8px;
	width: 50%;
	text-align: center;
	font-weight: bold;
}

.btn-prev__icon {
	display: inline-block;
	margin: 0 5px 0 5px;
	/*
	margin: 0 8px 0 0;
	width: 27px;
	height: 26px; 
	background-image: url(../img/common/arrow_left.png);
	*/
}
.btn-prev__icon:before {
	font-family: 'FontAwesome';
	content: "\f137";
	font-style: normal;
	font-size: 22px;
}
.btn-list-prevnext__prev a .btn-prev__icon {
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.btn-list-prevnext__prev a:hover .btn-prev__icon {
	left: -4px;
}
@media only screen and (max-width: 767px) {
	/*
	.btn-prev__icon {	
		width: 9px;
		height: 14px;
		background-image: url(../img/ratinasprite.png);
		background-position: -9px -48.5px;
		background-size: 99px 62.5px;
	}
	*/
}

.youtube-list {
	max-width: 100%; 
	text-align: center;
	list-style: none;
	overflow: hidden;
	padding: 0;
	margin: 0;
}
.youtube-list li {
	float: left;
}
.youtube-list li:nth-child(1) {
	margin-bottom: 30px;
}
.youtube-list li:nth-child(2n) {
	margin-right: 30px;
}

.youtube-list iframe {
	max-width: 100%;
}

/* ###=============================================================================
## カテゴリ選択メニュー
.category-nav
```
<ul class="category-nav">
	<li class="category-nav__item"><a href="#">All</a></li><!--
	--><li class="category-nav__item"><a href="./tv/">Tv</a></li><!--
	--><li class="category-nav__item"><a href="./web/">Web</a></li><!--
	--><li class="category-nav__item"><a href="./magazine/">Magazine</a></li><!--
	--><li class="category-nav__item"><a href="./radio/">Radio</a></li>
</ul>
```
###============================================================================= */
.category-nav {
	margin: 0;
	margin-bottom: 40px;
	padding: 0;
	text-align: center; 
	list-style: none;
}
.category-nav__item {
	display: inline-block;
	padding: 0 12px;
}
@media only screen and (max-width: 767px) {
	/*
	.category-nav__item {
		padding: 0;
	}
	*/
}
.category-nav__item a {
	display: block;
	padding: 0 3px;
	font-weight: 400;
	font-size: 18px;
	line-height: 38px;
	font-family: 'Roboto', sans-serif;
	color: #202020;
	text-decoration: none;
	border-bottom: transparent solid 6px;
	padding-bottom: 10px;
}

.category-nav__item a.current, .category-nav__item a:hover {
	/*background: url(../img/common/gnav_bg_on.png) no-repeat center;*/
	color: #ff3a97;
	opacity: 1;
	border-bottom: #ff3a97 solid 4px;
	padding-bottom: 0px;
}
@media only screen and (max-width: 767px) {
	/*
	.category-nav__item a {
		font-size: 14px;
	}
	.category-nav__item a.current, .category-nav__item a:hover {
		background-size: 21px 19px;
	}
	*/
}

.list-twitter {
	margin: 0;
	margin: 0 100px; 
	padding: 0;
	list-style: none;
	overflow: hidden; /*tanaka*/
}
@media only screen and (max-width: 767px) {
	/*
	.list-twitter {
		margin: 0 20px;
	}
	*/
}
.list-twitter__item {
	/*display: inline-block; tanaka*/
	width: 50%;
	text-align: center;
	float: left; /*tanaka*/
}

.list-twitter__name {
	display: block;
	font-size: 18px; 
	font-family: 'Questrial', sans-serif;
}
@media only screen and (max-width: 767px) {
	/*
	.list-twitter img {
		width: 30px;
	}
	*/
}

/* ###=============================================================================
## 商品ボックス

```
<section class="box-discography">
	<div class="box-discography__item">
		<p class="box-discography__jacket"><img src="../img/discography/img_miilakiller.jpg" alt="ミイラキラー"></p>
		<ul class="box-discography__shoplist">
			<li class="box-discography__shoplistitem"><a href="https://itunes.apple.com/jp/album/id903266774?at=10lpgB&amp;ct=4547557035384_ifhttps://itunes.apple.com/jp/album/id903266774?at=10lpgB&amp;ct=4547557035384_if" target="_blank"><img src="../img/discography/btn_itunes.gif" alt="iTunesで購入する"></a></li><!--
			--><li class="box-discography__shoplistitem"><a href="http://recochoku.jp/song/S1000561743/" target="_blank"><img src="../img/discography/btn_recochoku.gif" alt="レコチョクで購入する"></a></li><!--
			--><li class="box-discography__shoplistitem"><a href="http://mora.jp/package/43000001/4547557035384/" target="_blank"><img src="../img/discography/btn_mora.gif" alt="moraで購入する"></a></li>
		</ul>
	</div>
	<h1 class="box-discography__title">
		ミイラキラー
		<span class="box-discography__subtitle">TEMPURA KIDZ vs Charisma.com</span>
	</h1>
	<div class="box-discography__spec">
		2014.08.06 release<br>
		￥1,000（税込）<br>
		※ 配信限定販売
	</div>
	<div class="box-discography__tracklist">
		<h2 class="box-discography__subtitle">収録曲</h2>
		<p>M01. ミイラキラー<br>
		M02. ミイラキラ（NINESTATESFLAX - Halloween Remix）<br>
		M03. ミイラキラー（NINESTATESFLAX - Halloween Dub Remix）<br>
		M04. ミイラキラー（NINESTATESFLAX - Halloween Instrumental）</p>
	</div>
	<div class="box-discography__intro">
		現役中高生×現役OLのコラボ!<br>
		ちょっとバブリーな80年代の音楽番組をパロった映像で、女子アナも観客もミイラ化！？<br>
		7月26日（土）、東京・恵比寿リキッドルームで開催されたCharisma.comのライブ「DIStopping リリースツアー2014 -OL JOKER-」にTEMPURA KIDZがゲスト出演し、ライブの最後にTEMPURA KIDZ vs Charisma.com（テンプラキッズバーサスカリスマドットコム）名義での新曲「ミイラキラー」をリリースすることを発表。ライブパフォーマンスを初披露し、ライブ終演後にはこの曲のミュージックビデオをYouTubeで公開した。
	</div>
<!-- /.box-discography --></section>
```
###============================================================================= */
.box-discography {
	width: 800px;
	margin: 0 auto 20px;
	padding-top: 20px;
	padding-bottom: 22px;
	background: url(../img/common/dot.gif) repeat-x 0 bottom;
}
@media only screen and (max-width: 767px) {
	/*
	.box-discography {
		margin-bottom: 40px;
		padding-top: 0;
		background: url(../img/common/dot2x.gif) repeat-x 0 bottom;
		background-size: 2px 1px;
	}
	*/
}
.box-discography__item {
	float: left;
	width: 300px;
}
.box-discography__item img {
	max-width: 100%;
}
@media only screen and (max-width: 767px) {
	/*
	.box-discography__item {
		float: none;
		margin: 0 auto;
		width: 230px;
	}
	*/
}

.box-discography__jacket {
	margin: 0;
}

.box-discography__shoplist {
	margin: 0;
	margin-right: -20px; 
	padding: 0;
	list-style: none;
}
@media only screen and (max-width: 767px) {
	/*
	.box-discography__shoplist {
		margin-right: 0;
	}
	*/
}

.box-discography__shoplistitem {
	display: inline-block;
	padding-top: 30px;
	padding-right: 20px;
}
@media only screen and (max-width: 767px) {
	/*
	.box-discography__shoplistitem {
		padding-top: 15px;
		padding-right: 10px;
	}
	.box-discography__shoplistitem img {
		height: 13px;
	}
	*/
}

.box-discography__information {
	float: right;
	width: 460px;
}
@media only screen and (max-width: 767px) {
	/*
	.box-discography__information {
		float: none;
		width: auto;
	}
	*/
}

.box-discography__title {
	margin: -.4em 0 10px;
	font-size: 18px;
	font-weight: bold;
}
@media only screen and (max-width: 767px) {
	/*
	.box-discography__title {
		margin-top: 10px;
	}
	*/
}

.box-discography__subtitle {
	display: block;
	margin: 0;

	font-size: 14px;
}
.box-discography__subtitle + p {
	margin-top: 0;
}

.box-discography__spec {
	font-size: 12px;
}

.box-discography__tracklist {
	margin-top: 2em;
	font-size: 14px;
}

.box-discography__intro {
	margin-top: 2em;
	color: #636363;
}
/* ###=============================================================================
## contact7
###============================================================================= */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea
{
    width: 100%;
    padding: 6px;
    margin: 5px 0;
    border: 1px solid #CCC;
}

.wpcf7 input[type=submit] {
    display: inline-block;
    padding: 8px 30px;
    margin-bottom: 0;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #333;
    color: #fff;
    background-color: #333;

}

.wpcf7 input[type=submit]:hover {
    color: #fff;
    background-color: #555;
    border: 1px solid #555;
    text-decoration: none;
}
div.wpcf7-mail-sent-ok {
	background: #398f14;
}

div.wpcf7-mail-sent-ng {
	background: #ff0000;
}

div.wpcf7-spam-blocked {
	background: #ffa500;
}
div.wpcf7-validation-errors {
	background: #f7e700;
}

.context-section__contact {
	width: 600px;
}
.contact-require {
	color: #ff3300;
	font-weight: bold;
}
.contact-title {
	font-weight: bold;
}
.contact-submit {
	text-align: right;
}

/* ###=============================================================================
## Google Remarketing 
###============================================================================= */

iframe[name="google_conversion_frame"] {
	height: 0 !important; width: 0 !important; line-height: 0 !important; font-size: 0 !important; margin-top: -13px; float: left; 
}

/* ###=============================================================================
## for sp mode
###============================================================================= */

#spbtn-box {
	background-color: #fff;
	padding: 20px 0;
	text-align: center;
}
#spbtn {
	display: inline-block;
	font-size: 24px;
	background-color: #777;
	color: #fff;
	padding: 10px 40px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 5px;
}

/* ###=============================================================================
## Video
###============================================================================= */

.content-movie{
    width: 960px;
    overflow: hidden;
}
ul.content-movie{
    margin: 0 auto;
    padding: 0px;
}
ul.content-movie li{
    margin : 0 30px 30px 0;
    padding: 0px;
    width: 300px;
    height: 169px;
    float: left;
    list-style: none;
}
ul.content-movie li:nth-child(3n){
    margin : 0 0 30px 0;
}
