@charset "utf-8";

/* ====================================

	≠ME OFFICIAL SITE

======================================= */


/* base
================================ */
.pc{ display: none !important; }
a { color: #000; outline: none; -webkit-transition: all .3s ease; transition: all .3s ease; }
body{ letter-spacing: 0.05em; -webkit-text-size-adjust: 100%;}
.txt--sub { font-size: 12px; line-height: 1.6;}

.inview {
	-webkit-transform: translateY(20px);
   	transform: translateY(20px);
   	opacity: 0;
   	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.inview.view {
	-webkit-transform: translateY(0);
   	transform: translateY(0);
   	opacity: 1;
}

/* header
================================= */

/* アプリアイコンフォント */
@font-face {
	font-family: 'svgfont_1regular';
	src: url('../font/appicon-webfont/appicon-webfont.eot');
	src: url('../font/appicon-webfont/appicon-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../font/appicon-webfont/appicon-webfont.woff') format('woff'),
		 url('../font/appicon-webfont/appicon-webfont.ttf') format('truetype'),
		 url('../font/appicon-webfont/appicon-webfont.svg#svgfont_1regular') format('svg');
	font-weight: normal;
	font-style: normal;
}
.appicon:after {
	width: 70px;
	font-family: 'svgfont_1regular';
	font-size: 50px;
	line-height: 70px;
	position: absolute;
	left: 0;
}
/* 壁紙 */
.appicon.wp:after     { content: 'a'; color: #007FCC; }
/* ライブ壁紙 */
.appicon.livewp:after { content: 'b'; color: #E2007E; }
/* フォトフレーム */
.appicon.pf:after     { content: 'c'; color: #87CC03; }
/* カレンダー */
.appicon.cal:after    { content: 'd'; color: #EC6C00; }
/* 電卓 */
.appicon.den:after    { content: 'e'; color: #00ADFD; }
/* アラーム */
.appicon.alarm:after  { content: 'f'; color: #B6006F; }
/* フォトブック */
.appicon.pb:after     { content: 'g'; color: #C7161E; }
/* 時計ウィジェット */
.appicon.tw:after     { content: 'i'; color: #FAC604; }
/* ツアーパンフ */
.appicon.tp:after     { content: 'j'; color: #E4135D; }


/* header
================================= */
#header {
	width: 100%;
	background: #fff;
	padding: 15px 0;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
h1#logo{
	position: absolute;
	top: 24px;
	left: 20px;
	left: 6vw;
	z-index: 100;
}
h1#logo a{ display: block;}
h1#logo svg{ width: 50px; height: 36px;}

/* navBtn */
#navBtn {
	width: 35px;
	height: 10px;
	position: fixed;
	top: 33px;
	right: 30px;
	z-index: 1000;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
#navBtn span {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #fff;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
#navBtn span:nth-of-type(1) { top: 0; }
#navBtn span:nth-of-type(2) { top: 10px; }
#navBtn::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: '';
	width: 40px;
	height: 40px;
	margin: -20px 0 0 -22px;
	border-radius: 50%;
	border: 2px solid transparent;
	transition: all .75s;
}
.black #navBtn span{ background: #000; }
.menuOpen #menu{ height: 100%; -webkit-transition: all .6s ease; transition: all .6s ease; }
.menuOpen #navBtn{ transform: rotate(225deg); -webkit-transform: rotate(225deg); -webkit-transition: all .3s ease; transition: all .3s ease; }
.menuOpen #navBtn span:nth-of-type(1) { top: 6px; transform: rotate(90deg); -webkit-transform: rotate(90deg); }
.menuOpen #navBtn span:nth-of-type(2) { top: 6px; }
.menuOpen #navBtn span{ background: #fff; }

/* headerNavWrap */
#headerNavWrap{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
	overflow: hidden;
    visibility: hidden;
}
#headerNavWrap .navLogo {
	z-index: 100;
    position: absolute;
    top: 45%;
    left: 25%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#headerNavWrap .navLogo svg {
    fill: #fff;
    width: 25vw;
    visibility: hidden;
    opacity: 0;
}
.menuOpen #headerNavWrap .navLogo svg {
	opacity: 1;
    visibility: visible;
    -webkit-transition: all .3s 0s ease;
    transition: all .3s 0s ease;
}
#navCover,
#headerNavWrap .navCover{
	display: none;
	width: 100%;
	height: 100%;
	background: none;
	position: absolute;
	top: 0;
	right: 0;
	opacity:0;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	z-index: 1000;
}
#navCover {
	background: rgba(255, 255, 255, 0.8);
}
#headerNavWrap .navCover{
	display: block;
	opacity:1;
	background: none;
	z-index:10;
}
#headerNavWrap #headerNav{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 55%;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all .3s 0s ease;
	transition: all .3s 0s ease;
}
#headerNavWrap #headerNav .menu{ position: relative; top:0 ; left:0; }
#headerNavWrap #headerNav ul{
	position: relative;
	top: 14%;
	left: 14%;
}
#headerNavWrap #headerNav .sns {
	display: inline-block;
    height: 30px;
    vertical-align: middle;
    margin-right: 12px;
}
#headerNavWrap #headerNav .member{ margin-bottom: 15px; }
#headerNavWrap #headerNav .menu .tit{ color: #FFFFC7; font-size: 10px; padding-bottom: 1px; margin-bottom: 5px; }
#headerNavWrap #headerNav .snsNav li{ width: auto; display: inline-block; line-height: 210%; margin-right: 3.1%;}
#headerNavWrap #headerNav .sns a{ font-size: 23px; }
#headerNavWrap #headerNav .sns a img{ width: auto; height: 23.5px; }
#headerNavWrap #headerNav .sns.ameba{ margin-left: -4px; vertical-align: -6.5px; }
#headerNavWrap #headerNav .sns.ameba a{ padding-top: 1px;}
#headerNavWrap #headerNav  li{
	margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
#headerNavWrap #headerNav ul:not(.snsNav) li:nth-child(odd){ clear:both; }
#headerNavWrap #headerNav a{
	display: block;
	color: #fff;
	font-size: 16px;
	line-height: 100%;
	text-decoration: none;
	font-weight: 100;
	letter-spacing: 0.2em;
	overflow: hidden;
	position: relative;
	-webkit-transform: translateY(110%);
	transform: translateY(110%);
	-webkit-transition: all .4s .3s ease;
	transition: all .4s .3s ease;
}
.menuOpen #headerNavWrap #headerNav {
	opacity: 1;
    visibility: visible;
}
.menuOpen #headerNavWrap #headerNav a {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
#headerNavWrap #headerNav .globalNav a:hover{ color:#ff5fa2; -webkit-transition: color .3s ease; transition: color .3s ease; }
#headerNavWrap #headerNav .globalNav li.logo a:hover{ opacity: 0.5; -webkit-transition: opacity .3s ease; transition: opacity .3s ease; }
.menuOpen #headerNavWrap{ right: 0; }

#headerNavWrap #headerNav .loginList{ margin: 10px auto 15px !important; }
#headerNavWrap #headerNav .loginList li{ margin-bottom: 0; }
#headerNavWrap #headerNav .loginList li a{ display:block; font-size: 12px; text-decoration: none;}
#headerNavWrap #headerNav .loginList li img{
	display: inline-block;
	width: 16px;
	margin-right: 8px;
	vertical-align: -2px;
}

#headerNavWrap:after {
	content: "";
/*	width: 200vw;*/
	width: 145vw;
	width: 140%;
	height: 200vh;
	background: #79ccbd;
	position: absolute;
/*	top: -160vw;*/
	top: -135vw;
	top: -430px;
	top: -67vh;
/*	top: -68%;*/
	left: 0;
	z-index: 0;
	-webkit-transform: rotate(50deg) scaleX(0.001);
	transform: rotate(50deg) scaleX(0.001);
	 -webkit-transition: all .3s 0s ease; 
	transition: all .3s 0s ease;
}
.menuOpen #headerNavWrap {
	visibility: visible;
}
.menuOpen #headerNavWrap:after {
	transform: rotate(50deg) scaleX(1);
}
/*.menuOpen #headerNavWrap #headerNav{
	opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition-delay: .5s;
}*/


/* btn
================================ */

.btn a,
.btn input[type="submit"],
.btn input[type="button"]{ width: 100%; text-align: center;}
.btn .main,
.btn input[type="submit"].main{
	display: block;
	padding: 13px 0;
	border: none;
	border-radius: 0;
	font-weight: normal;
	background: #000;
	color: #fff;
	text-decoration: none;
	text-align: center;
	-webkit-appearance: none;
}
.btn .sub,
.btn input[type="submit"].sub,
.btn input[type="button"].sub{
	background: #fff;
	color: #000;
	border-radius: 0;
	font-weight: normal;
	text-shadow: none;
	border: none;
	text-decoration: none;
	display: block;
	text-align: center;
	border: 0.5px solid;
	padding: 13px 0;
	-webkit-appearance: none;
}
.btn+.btn{ margin-top: 10px; }

/* layout
================================ */
/* more backLink */
.more{ font-size: 10px; position: absolute; bottom: -50px; bottom: -17vw; right: 0; }
.back{ text-align: center; margin: 40px 0 0;}
.more a, .back a{ display: inline-block; text-decoration: none; letter-spacing: 0.1em; position: relative;}
.more a:after, .back a:after {
	content: "";
    width: 38px;
    height: 1px;
    background: #7ACCBE;
    position: absolute;
	top: 8px;
	right: 2px;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}
#memberArea .more a:after,#memberArea .back a:after { background-color: #FFFFC7;}

/* youtube */
.youtubeBox{ height: 0; position: relative; padding-bottom: 56.25%; overflow: hidden; }
.youtubeBox iframe,
.youtubeBox object,
.youtubeBox embed{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.thumb{position:relative;}

/* home
================================ */

/* cmn
--------------------- */
#home #logo{ display: none; }
#home section{
	background: #fff;
	position: relative;
	padding: 60px 0;
	margin-bottom: 90px;
	margin-bottom: 20vw;
}
#home section .inner{
	width: 100%;
	padding: 0 7%;
	margin: 0 auto;
	position: relative;
	z-index: 30;
}
h2.sectionTit{
	font-size: 16px;
	padding: 0 7%;
	letter-spacing: 0.45em;
	margin-bottom: 30px;
	position: relative;
	z-index: 10;
}
h2.sectionTit span {
	position: relative;
	display: block;
	z-index: 10; top: 1px;
	letter-spacing: 0.45em;
	-webkit-transform: translateY(110%);
	transform: translateY(110%);
}
h2.sectionTit:before {
	display: block;
    content: '';
    width: 0;
    height: 1px;
    background: #ddd;
    position: absolute;
    top: 46%;
    left: 0;
    -webkit-transition: all .4s ease;
	transition: all .4s ease;
	transition-delay: .3s;
}
h2.sectionTit .contentsName { overflow: hidden;}
h2.sectionTit .more {
    bottom: inherit;
    top: 16%;
    right: 7%;
}
h2.sectionTit .more a {
	-webkit-transform: translateY(115%);
   	transform: translateY(115%);
   	opacity: 0;
   	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	transition-delay: .5s;
}
.detail h2.sectionTit { overflow: hidden;}
.detail.loaded h2.sectionTit span {
	-webkit-animation: titVisible .5s .7s forwards;
	animation: titVisible .5s .7s forwards;
}
.home h2.sectionTit.view span{ 
	-webkit-animation: titVisible .5s .7s forwards;
	animation: titVisible .5s .7s forwards;
}
.home h2.sectionTit.view::before,.detail.loaded h2.sectionTit::before { width: 100%;}
.home h2.sectionTit.view .more { overflow: visible;}
.home h2.sectionTit.view .more a {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

@-webkit-keyframes titVisible {
    0% {
/*    	letter-spacing: 3em;*/
		-webkit-transform: translateY(110%);
   		transform: translateY(110%);
    }
    80%{
/*    	letter-spacing: 3em;*/
		-webkit-transform: translateY(0);
		transform: translateY(0);
    }
    100% {
/*		letter-spacing: 0.5em;*/
		-webkit-transform: translateY(0);
		transform: translateY(0);
    }
}
@keyframes titVisible {
    0% {
/*    	letter-spacing: 3em;*/
		-webkit-transform: translateY(110%);
   		transform: translateY(110%);
    }
    80%{
/*    	letter-spacing: 3em;*/
		-webkit-transform: translateY(0);
		transform: translateY(0);
    }
    100% {
/*		letter-spacing: 0.5em;*/
		-webkit-transform: translateY(0);
		transform: translateY(0);
    }
}


.tit{ font-size: 14px; }
.date{ font-size: 12px;letter-spacing: 0.1em; margin-bottom: 5px;}
.infoList [class^="cat"],
.infoDetail [class^="cat"],
.contentsList [class^="cat"],
.discoDetail [class^="cat"],
#home [class^="cat"]{
	display: inline-block;
	text-align: center;
	font-size: 10px;
	line-height: 0;
	border: 0.5px solid #999;
	padding: 9px 7px 7px;
	margin: 0 5px;
}
.new{
	display: inline-block;
	font-family: 'Pacifico';
	font-size: 10px;
	color: #ffafc1;
	letter-spacing: 0.02em;
	margin-left: 3px;
}

/* bg */
#home #schedule,
#home #twitter{
	margin-bottom: 0;
}
#home #movie{ padding: 30px 0 0; padding: 7vw 0 0; margin: 0 0 12vw;}
#home #movie .slick-slide{ margin:0 0.2%; margin: 0 1.2vw;}

/* infoList */
.infoList li:not(:last-child),
.contentsList li:not(:last-child){ margin-bottom: 25px; }
.infoList li a,
.contentsList li a{ display: block; text-decoration: none;}
.infoList li a svg{ display: none; }
.infoList li a .thumb,
.contentsList li a .thumb{ width: 24%; float: left; border: 1px solid #f0f0f0; margin-right: 4%; }

.contentsList li a .thumb img{
	display: block;
	width: 100%;
	background: no-repeat center;
	background-size: cover;
	-webkit-background-size: cover;
}

.infoList li a .text,
.contentsList li a .text{ overflow: hidden; line-height: 160%; word-break: break-all; text-align: justify; }

/* categoryList */
.categoryList{ margin: 0 0 100px -14px; margin: 0 0 6vw -14px; }
.categoryList li{ display: inline-block; 	font-size: 11px; letter-spacing: 0.05em; }
.categoryList li a{ display: block; text-decoration: none; padding: 0 14px; }
.categoryList li .current{padding: 0 14px;}

/* contentsList */


.thumbList li{ width: 47%; float:left; }
.thumbList li:not(:nth-last-child(2)){ margin-bottom: 20px;}
.thumbList li:nth-child(odd){ margin-right: 6%; }
.thumbList a{
	display: block;
	text-decoration:none;
	line-height: 150%;
	word-break: break-all;
}
.thumbList .thumb{
	position: relative;
	line-height:0;
	margin-bottom: 10px;
}
.thumbList .thumb img {
	background-size: cover;
	background-position: center;
}
.thumbList .tit { font-size: 14px;}

/* supportList */
.supportList{ margin-bottom: 30px; }
.supportList li{ width: 50%; float: left;margin-bottom: 10px;}
.supportList li a{ display: block; font-size: 11px; letter-spacing: 0; text-decoration: none; text-align: left;}
.noData{ width: 100% !important; float: none !important; text-align: center; }

/* heroImg
--------------------- */
#heroImg,
#heroImg #bg,
#heroImg #bg div{ height: 715px; height: calc(100vh - 70px); }
#heroImg #bg img{
	width: 100%;
	height: 100%;
	background: no-repeat center bottom;
	background-size: contain;
	-webkit-background-size: 100% auto;
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-webkit-transition: all .8s ease-out;
	transition: all .8s ease-out;
}
#home #heroImg{ padding: 0; margin: 0 auto;}

#home #heroImg:before,#home #heroImg:after{
	content: "";
    background: rgba(236, 250, 248, 0.5);
    width: 0;
    height: 0;
    position: absolute;
    z-index: 1;
    transition: all .5s ease;
    transition-delay: .4s;
}
#home #heroImg:before {
    bottom: -30vw;
    left: -37vw;
    z-index: 1;
    transform: rotate(-45deg);
}
#home #heroImg:after {
    top: -30vw;
    right: -37vw;
    z-index: 1;
    transform: rotate(-45deg);
}
.loaded#home #heroImg:before,.loaded#home #heroImg:after{
	width: 40vw;
    height: 80vw;
}
.loaded#home #heroImg.hero202206:before,
.loaded#home #heroImg.hero202206:after{
	background: rgb(254 254 254 / 50%);
}
.loaded#home #heroImg.hero202211:before,
.loaded#home #heroImg.hero202211:after{
	background: rgb(216 229 244 / 50%);
}
#heroImg .heroImgBox{
	width: 54%;
	height: 24%;
	margin-top: -40%;
	margin-left: -27%;
	position: absolute;
	left: 50%;
	top: 50%;
}
#heroImg .heroImgBox a{
	display: block;
	width: 90px;
	position: absolute;
	top: 10px;
	top: 9%;
	left: 23%;
	z-index: 10;
}
#heroImg .heroImgBox svg{ width: 99%; fill:#fefefe; }
#heroImg .heroImgBox svg.svg202206{fill:#fefefe; }
#heroImg .heroImgBox svg.svg202211{fill:#00b1ff; }
#heroImg .heroImgBox a svg{ width: 100%; height: 10px;}
#heroImg .heroImgBox a:hover{ opacity: 0.5; }
#heroImg .heroImgBox h1{ display: block; width: 100%; position: absolute; right: 0; }
.bt,.br,.bb,.bl{
	display: block;
	background: #fff;
	position:absolute;
	z-index: 10;
	-webkit-transition: all .6s ease-out .4s;
	transition: all .6s ease-out .4s;
}
.bt,.bb{ width: 100%; height: 10px; height: 3vw;}
.br,.bl{ width: 10px; width: 3vw;height: 100%; }
.bt,.bl{ top:0; left:0;}
.bb,.br{ bottom:0; right: 0;}

.bl{ left:-40px; left: -3vw; }
.br{ right:-40px; right: -3vw; }
.bt{ top:-40px; top: -3vw; }
.bb{ bottom:-40px; bottom: -3vw; }

.loaded #heroImg #bg img{ transform: scale(1); -webkit-transform: scale(1); }
.loaded .bl{ left: 0; }
.loaded .br{ right: 0; }
.loaded .bt{ top: 0; }
.loaded .bb{ bottom: 0; }


/* loginArea
--------------------- */
#home .loginArea{
	background: #fff;
	text-align: center;
	padding: 30px 0;
	position:relative;
	z-index: 10;
}
#home .loginArea li{
	width: 40%;
	display: inline-block;
	font-size: 15px;
	letter-spacing: 0.5em;
}
#home .loginArea li a{ display:block; text-decoration: none;}
#home .loginArea li img{
	display: inline-block;
	width: 16px;
	margin-right: 8px;
	vertical-align: -2px;
}

/* bnrArea
--------------------- */
#home #bnrArea{
	padding: 0 10px 30px;
	padding: 20px 3vw 30px;
	margin-bottom: 0;
	z-index: 10;
	position: relative;
}

#bnrArea .pickUp a{
	display: block;
	background: #ffa2b5;
	color: #fff;
	text-decoration: none;
	line-height: 150%;
	padding: 14px 14px 11px;
	word-break: break-all;
}
/* slick */
.slick-dots{ display: none; width: 81%; text-align: left; margin: 10px auto 0; }
.slick-dots li{display: inline-block; width: 6px; margin: 0 5px;}
.slick-dots li:first-child{ margin-left: 0;}
.slick-dots li button{
	width: 6px;
	height: 6px;
	border: none;
	text-indent: -9999px;
	background: #ccc;
	padding: 0;
	border-radius: 10px;
}
.slick-dots li.slick-active  button{ background: #000; }
.slick-slide{ margin: 0; }
.slick-prev.slick-arrow{
    top: 50%;
    margin-top: -26px;
    left: 10%;
}
/*.slick-next.slick-arrow {
	background: none;
	border: none;
	position: relative;
	text-indent: 9999px;
	height: 50px;
	position: absolute;
	z-index: 20;
	top: 50%;
	margin-top: -32px;
	right: -85px;
	width: 25px;
}*/
.slick-prev,
.slick-next {
	display: block;
	width: 30px;
	height: 30px;
	background: url(/static/notequalme/official/cmn/button.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	color: #000;
	font-size: 0;
	line-height: 0;
	padding: 0;
	position: absolute;
	top: 85px;
	top: 50%;
	margin-top: -25px;
	z-index: 99;
	cursor: pointer;
	border: none;
	outline: none;
}
.slick-next {
	right: 10%;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
/*.slick-prev.slick-arrow::before,
.slick-prev.slick-arrow::after,
.slick-next.slick-arrow::before,
.slick-next.slick-arrow::after{
	content: '';
	display: block;
	width: 2px;
	height: 15px;
	background: #f3efe0;
	position: absolute;
	top: 0;
	left: 13px;
}
.slick-prev.slick-arrow::before{ transform: rotate(45deg); -webkit-transform: rotate(45deg); }
.slick-prev.slick-arrow::after{ transform: rotate(-45deg); -webkit-transform: rotate(-45deg); top: 10px;}
.slick-next.slick-arrow::before{ transform: rotate(-45deg); -webkit-transform: rotate(-45deg); }
.slick-next.slick-arrow::after{ transform: rotate(45deg); -webkit-transform: rotate(45deg); top: 10px;}*/
.slick-list { z-index: 30; }


/* info
--------------------- */
#home #info{
	background: #F7F7F7;
	margin: 0;
}


/* schedule
--------------------- */
#home #schedule .infoList .date{ float: left; width: 23%; text-align: center; line-height: 100%; margin-right: 4%; }
#home #schedule .infoList .md{
	display: inline-block;
	font-weight: 100;
	font-size: 23px;
	font-size: 7.6vw;
	line-height: 100%;
	letter-spacing: 0.03em;
	margin-bottom: 13px;
}
#home #schedule .infoList .year{
	display: block;
	font-size: 11px;
	font-size: 2.8vw;
	letter-spacing: 0.08em;
	text-align: center;
}
#home #schedule .infoList li:not(:last-child){ margin-bottom: 30px; }
#home #schedule .infoList li a .text{ float: left; width:73%; margin-top: -1px; margin-top: -0.5vw; }
#home #schedule .infoList [class^="cat"]{ margin-bottom: 8px; }
#home #schedule .more{ bottom: -50px; bottom: -14vw; }



/* schedule
--------------------- */
#schedule.detail.listPage .infoList .md {
	display: inline-block;
	font-weight: 100;
	font-size: 37px;
	font-size: 3vw;
	letter-spacing: 0.1em;
	margin-bottom: 0;
}
#schedule.detail.listPage .infoList .year {
	display: block;
    font-size: 14px;
    font-size: 0.95vw;
    letter-spacing: 0.05em;
    text-align: center;
}
#schedule.detail.listPage .categoryList{ margin: 0 0 100px 0; margin: 0 0 6vw 0;}
#schedule.detail.listPage #footer { display: block;}
#schedule.detail.listPage .calendarHeader,
#schedule.detail.listPage .calendar .weekHeader,
#schedule.detail.listPage .calendar .calendarBody{
	display: flex;
	display: webkit-flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#schedule.detail.listPage .calendar .weekHeader div{
	font-size: 13px;
	padding-bottom: 5px;
}
#schedule.detail.listPage .calendar .weekHeader div,
#schedule.detail.listPage .calendar .calendarBody div > div{
	width: calc( ( 100% / 7 ) - 1px);
	text-align: center;
	border-right: 0.5px solid #000;
	border-bottom: 0.5px solid #000;
}
#schedule.detail.listPage .calendar .calendarBody > div{
	width: 100%;
	display: flex;
	display: webkit-flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
}
#schedule.detail.listPage .calendar .weekHeader div{ border: none; border-bottom: 0.5px solid #000; }
#schedule.detail.listPage .calendar .week > div:nth-child(1){ border-left: 0.5px solid #000; }
#schedule.detail.listPage .calendar .weekHeader div:nth-child(6),
#schedule.detail.listPage .calendar .week > div:nth-child(6) .date{ color: #64a4f3; }
#schedule.detail.listPage .calendar .weekHeader div:nth-child(7),
#schedule.detail.listPage .calendar .week > div:nth-child(7) .date{ color: #f95d5d; }

#schedule.detail.listPage .calendar .calendarBody .cell{
	min-height: 100px;
	text-align: left;
	padding: 0 5px 5px;
}
#schedule.detail.listPage .calendar .calendarBody .cell > div{
	width: 100%;
	border: none;
}
#schedule.detail.listPage .calendar .calendarBody .cell > div:not(:last-child){
	margin-bottom: 5px;
}
#schedule.detail.listPage .calendar .calendarBody .cell > div a{
	display: block;
	text-align: left;
	text-decoration: none;
	font-size: 8px;
	line-height: 140%;
	word-break: break-all;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.cell a{ color: #000; }
.cell a span{
	display: inline-block;
	font-size: 8px;
	padding: 3px 4px 2px;
	line-height: 1;
	margin-bottom: 4px;
}
.cell a .cat{ color:#fff; }
.cell a .tit{
	font-size: 12px;
	line-height: 140%;
	word-break: break-all;
}
#schedule.detail.listPage .calendar .calendarBody .cell > div a:hover{ opacity: 0.6; }
.form__checkbox label p {
	font-size: 11px;
	font-weight: 300;
	line-height: 1.1;
	letter-spacing: 0.06em;
	display: block;
	padding: 0.5em 1em 0.2em;
	position: relative;
	cursor: pointer;
	color: #aaa !important;
	border: 1px solid #aaa !important;
	border-radius: 20px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.form__checkbox li label p:hover { color: #fff; }
.form__checkbox li:nth-child(1) label p { color: #f9769f; }
.form__checkbox li:nth-child(1) label p:hover { background: #f9769f; color: #fff !important; border-color: #f9769f !important;}
.form__checkbox input[type="checkbox"] {
	-webkit-appearance: none;
	width: 0;
	height: 0;
	opacity: 0;
	position: absolute;
}
.form__checkbox.form__error { color: #f33; }
.form__checkbox :checked ~ p{ background: inherit;  color: #fff !important; }
.form__checkbox li:nth-child(1) :checked ~ p{ background: #f9769f; color: #fff;border-color: #f9769f !important; }
.form__checkbox :checked ~ p:hover{ opacity: 0.5; }

.calendarHeader{ margin-bottom: 50px; }
.calendarHeader li{ width: calc( (100% / 3 ) - 0.1% ); }
.calendarHeader li a{
	display: inline-block;
	font-size: 14px;
	text-decoration: none;
	position: relative;
	top: 9px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	left:0;
}
.calendarHeader li div{ opacity: 0.3; }
.calendarHeader li svg{
	width: 18px;
	height: 11px;
	padding-left: 5px;
	position:relative;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	left:0;
}
.calendarHeader li:nth-child(1) a{
	right:0;
	left: inherit;
}
.calendarHeader li:nth-child(1) svg{
	transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	right:0;
	left: inherit;
}
.calendarHeader li:nth-child(1){ text-align: left; }
.calendarHeader li:nth-child(2){ text-align: center; }
.calendarHeader li:nth-child(2) .year{ display: inlnie-block; padding-right: 5px; }
.calendarHeader li:nth-child(2) .month{ font-size: 46px; font-weight: 300; }
.calendarHeader li:nth-child(2) .month_en{ display: inlnie-block; padding-left: 5px; }
.calendarHeader li:nth-child(3){ text-align: right; }
.form--horizontal li{ display: inline-block; margin: 0 2px; }
.calendarHeader li:nth-child(1) a:hover{ right: 10px; }
.calendarHeader li:nth-child(1) a:hover svg{ right: 5px; }
.calendarHeader li:nth-child(3) a:hover{ left: 10px; }
.calendarHeader li:nth-child(3) a:hover svg{ left: 5px; }

.scheduleList .calendarHeader{
	border-bottom: 1px solid #ddd;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
#schedule.detail.listPage .scheduleList .infoList{ overflow: hidden; }
#schedule.detail.listPage .scheduleList .infoList a .tit{ color: #000; }
#schedule.detail.listPage .scheduleList .infoList .date{ margin-top: 12px; width: 28px; width: 2.4vw; position: absolute;}
#schedule.detail.listPage .scheduleList .infoList .text{ position: relative; top: -2px; left: 6%;}
#schedule.detail.listPage .scheduleList .infoList .text .entry{ position: relative; top: -19px; left: 0;}
#schedule.detail.listPage .scheduleList .infoList li > div:not(.text){ position: relative; top: -20px; left: 6%;}
#schedule.detail.listPage .scheduleList .infoList li:not(:last-child) { margin-bottom: 0; }
#schedule.detail.listPage .scheduleList .infoList li a{
	padding-top: 20px;
	border-bottom: 1px solid #ddd !important;
	padding-bottom: 20px;
}

#schedule.detail.listPage .btn{
	position: absolute;
	right: 7%;
	margin-top: -8.5vw;
}
.btn .change{
	display: block;
	width: 38px;
	height: 38px;
	font-family: "Comfortaa";
	font-weight: 600;
	font-size: 19px;
	line-height: 100%;
	text-decoration: none;
	text-align: center;
	background: #000;
	color: #fff;
	border-radius: 33px;
	padding: 10px 0 10px;
}
.btn .change:hover{
	opacity: 0.5;
}
.btn .change i{
	display: block;
	margin-bottom: 2px;
}



#schedule.detail.listPage .infoDetail .tit{ margin-bottom: 20px;}
#schedule.detail.listPage .infoDetail .date{ line-height: 100%; margin: 0 0 0;}
#schedule.detail.listPage .infoDetail .md{ display: inline; font-weight: 100; font-size: 22px; letter-spacing: 0.1em; }
#schedule.detail.listPage .infoDetail .year{ display: inline-block; font-size: 14px; text-align: center; margin-right: 5px; }
#schedule.detail.listPage .infoDetail .new{ font-size: 14px; margin-left: 6px; }
#schedule.detail.listPage .infoDetail [class^="cat"]{ vertical-align: 3px; margin-right: 0;}




/* memberArea
--------------------- */

#memberArea{ background :#7ACCBE;  position: relative; }
#home #memberArea #latest::before{
	height: 68px;
	height: 30vw;
	background: #7ACCBE;
	bottom: inherit;
	top: -33px;
	top: -18vw;
}
#home #memberArea #latest .slick-prev,#home #memberArea #latest .slick-next { display: none!important;}

#memberArea h2.areaTit{ padding: 20px 7% 0; padding: 4vw 7% 0; z-index: 10; position: relative; }
#memberArea .loginArea{ background:  #7ACCBE; padding-bottom: 10px;}
#memberArea .loginArea li a{ color: #fff; }
#memberArea .loginArea li.mypage{ width: 100%;}
#memberArea h2.sectionTit { position: relative; z-index: 1; }
#memberArea h2.sectionTit::after, #memberArea h2.sectionTit::before{ display: none;}
#home #memberArea section{ background :#ffa2b5; color: #fff; padding: 70px 0 0; padding: 12vh 0 0;}
#home #memberArea section .inner { padding: 0;}
#home #memberArea section *{ color :#fff; border-color: inherit;}
#home #memberArea section .new{ color: #FFFFC7;}
#home #memberArea .more svg{ fill: #fff; }

/* latest */
#home #memberArea .slick-dots { width: 100%; }
#home #memberArea .slick-dots li{ width: auto !important; margin: 0 10px 0 0;}
#home #memberArea .slick-dots li button{ background: #FFFFC7;}
#home #memberArea .slick-dots li.slick-active button{ background: #fff; }
#memberArea #latest h2.sectionTit{ margin: 0 0 30px;}
#memberArea .more { margin-right: 7%; bottom: -15vw;}
#memberArea .thumbList li a{ display: block; text-decoration: none; padding-right: 7%;}
#memberArea .thumbList li .thumb{
	width: 100%;
	float: none;
	border: none;
	margin: 0 auto 18px;
	overflow: hidden;
}
.thumbList li img:not(.dummy){
	display: block;
	width: 100%;/aop-emtg-jp/dev/public/notequalme/cmn/thumb_noimg.png
	background: url(/static/notequalme/cmn/thumb_noimg.png) no-repeat center;
	background-size: cover;
}
#memberArea .thumbList li img{ box-shadow: 0 0 3px #d07c8d;}
#memberArea .thumbList li .date{ margin-bottom: 5px; }
#home #memberArea #latest{
	background: #99D6CD;
	padding: 101px 0 89px;
	padding: 29vw 0 30vw;
	margin-bottom: 0;
}

#home #memberArea::before{
	height: 140px;
	height: 27vw;
	background: #7ACCBE;
	bottom: inherit;
	top: -60px;
	top: -16vw;
}
#home #memberArea #latest::after{
	height: 112px;
	height: 90vw;
	background: #7ACCBE;
	bottom: -20vw;
	transform: rotate(12deg) skew(14deg);
	-webkit-transform: rotate(-12deg) skew(-14deg);
}

#home #latest .slick-slider{
	width: 90%;
	-ms-touch-action: inherit;
	touch-action: inherit;
	padding-bottom: 30px;
	padding-bottom: 9.5vw;
	overflow: visible;
}

#home .thumbList li{
	width: 280px;
	width: 85vw;
	float: left;
	box-sizing: border-box;
	margin: 0;
}

#home #latest .slick-slider .slick-list{ overflow: visible;  }
#home #latest .slickCover .slick-dots{
	display: block;
	padding-left: 0;
	position: absolute;
	bottom: 0;
	padding: 0;
	left: 9%;
}


/* blog */
#home #memberArea #blog{
	padding: 70px 0 0;
	padding: 0 0 20px;
	margin-bottom: 0;
	z-index: 1;
	background: #99D6CD;
}
#home #memberArea #blog .inner { padding: 0 7%;}
#home #memberArea #blog .infoList li .date { display: inline-block;}
#home #memberArea #blog .infoList li .cat { background: #FFFFC7; color: #7ACCBE;}
#home #memberArea .infoList li .thumb { border-color: #fff; }
#memberArea #blog .more{ z-index: 30; }
#home #memberArea .infoList li .subInfo { padding: 10px 0 0;}

/* membermenu */
#home #memberArea .menu.member{
	padding: 80px 7% 70px;
	padding: 32vw 0 32vw 7%;
}
#home #memberArea #blog::before{
	height: 31vw;
	background: #99D6CD;
	top: -40px;
	bottom: auto;
	transform: rotate(12deg) skew(14deg);
	-webkit-transform: rotate(12deg) skew(14deg);
}
#home #memberArea #blog::after{
	height: 100px;
	height: 30vw;
	background: #99D6CD;
	bottom: -60px;
	bottom: -17vw;
	z-index: 20;
	transform: rotate(12deg) skew(14deg);
    -webkit-transform: rotate(12deg) skew(14deg);
}
#home .menu.member li{
	width: 50%;
	float: left;
}

#home .menu.member li a{
	display: block;
	color: #fff;
	font-size:13px;
	text-decoration: none;
	letter-spacing: 0.15em;
	padding: 10px 0;
}

/* movie
--------------------- */
#home #movie::after{ bottom: -14vw; }
#home #movie .inner { padding: 0;}
#home #movie .movieList { margin-left: -8.5vw;}
#home #movie .movieList li .tit { padding: 0 7%;}
#movie li{ position: relative; }
#movie .movieList .thumb{
	width: 100%;
	border: 1px solid #DDDDDD;
	margin: 0 0 10px;
}
#movie .movieList .thumb img{
	display: block;
	width: 100%;
	background: no-repeat center;
	background-size: cover;
	cursor: pointer;
}
#home #movie h2.sectionTit:before,#home #movie .more{ z-index: 10;}

#movie .movieList li.slick-current .thumb { border: 2px solid #7ACCBE;}


/* twitter
--------------------- */
#home .twArea{ background: #fff; padding: 20px 0; box-sizing: border-box;}
#home #twitter iframe{ display: block !important; height: 300px !important; margin: 0 auto;}


/* footer
--------------------- */

#home .footerImg{ line-height: 0;position: relative; }
#home #footer{ z-index: 10;}
.footerImg{ position: relative; }
#footer{
	background: #F7F7F7;
	width: 100%;
	text-align: center;
	padding: 40px 7% 20px;
	position: relative;
}
#footer .footerLogo{ width: 18vw; margin: 0 auto 30px;}
#footer p{ display: inline-block; }
#footer a:hover{ text-decoration: none; }
#footer .bnrArea{ margin: 0 auto 30px; }
#footer .bnrArea li{ display: block; float: left; width: 48%; margin-right: 4%; }
#footer .bnrArea li:nth-child(even){ margin-right: 0; }
#footer .mail{ display: block; font-size: 13px; letter-spacing: 0.05em; margin-bottom: 20px; }
#footer .mail a{ text-decoration: none; }
#footer .mail a i{ display: inline-block; margin-right: 10px;}
#footer .yoani{ display: block; width: 50%; margin: 10px auto; }
#footer .copy{ font-size: 10px; }
.detail #footer{
	position: absolute;
	bottom: 0;
}
#footer .offer a{ display: block;}
#footer .offer{
  line-height: 0;
  padding: 0 0 25px;
  width: 65%;
}

.detail #footer .yoani{display: none;}
.detail.listPage #footer, .detail.listPage #container::after { display: block;}

/* detail
================================ */
/* cmn
--------------------- */
.detail section{
	width: 100%;
	position: relative;
	z-index: 10;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 200px 0 230px;
	padding: 25vw 0 30vw;
	margin: 0 auto;
}
.detail section .detailInner { padding: 0 7%;}
.detail h2.sectionTit{
	font-size: 19px; 
	letter-spacing: 0.6em;
/*	text-align: center;*/
	margin-bottom: 50px;
	margin-bottom: 10vw;
}
.detail h2.sectionTit.latest{letter-spacing: 0.28em;}

.detail #footer *{ position: relative; z-index:10;}
.detail #footer .footerLogo,
.detail #footer .bnrArea{ display: none; }

.detail #navBtn span{ background: #000; }
.detail.menuOpen #navBtn span{ background: #fff; }
.detail .thumbList .thumb { height: 100px;}

/* pulldownBox */
.pulldownBox{ border:none; position: relative; margin: 0 0 45px; }
.pulldownBox select {
	-webkit-appearance: none;
	-moz-appearance: button;
	width: 100%;
	height: 45px;
	background: none;
	color: #000;
	font-size: 14px;
	font-weight: normal;
	text-align: center;
	border-radius: 0;
	box-sizing: border-box;
	line-height: 24px;
	padding: 0 10px;
	position: relative;
	border: 1px solid #ddd;
}
.pulldownBox:before {
	content: "\f107";
	font-family: 'FontAwesome';
	position: absolute;
	right: 10px;
	top: 50%;
	z-index: 10;
	color: #000;
	line-height: 0;
	font-size: 20px;
}

.thumbList [class^="cat"]{
	display: inline-block;
	font-size: 10px;
	line-height: 0;
	border: 0.5px solid #ccc;
	padding: 10px 5px 8px;
	margin-right: 10px;
}

/* info
--------------------- */
.infoDetail .tit{ font-size: 18px; line-height: 140%;word-break: break-all; text-align: justify; margin-bottom: 5px;}
.infoDetail .date{ margin-bottom: 5px; }
.infoDetail .thumb{ text-align: center; margin-bottom: 20px;}


/* shareList */
.shareList{
	color: #000;
	font-size: 12px;
	text-align: right;
	margin: 5px auto 10px;
	position: relative;
}
.shareList ul{ display: inline-block; position: relative; }
.shareList li{ display: inline-block; margin-right: 10px;vertical-align: middle; font-size: 10px;}
.shareList a{display: block; background: none;line-height:30px; text-align: center;color:#000;font-size: 15px; position: relative; margin-bottom: 3px;}
.shareList .fa{vertical-align:-2px;}
.shareList .facebook .fa{ position: relative; left: -1px; }
.shareList .lineIco a{ height: 22px; }
.shareList .lineIco a:before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background: no-repeat url(/static/notequalme/cmn/ico_line.png);
	background-size: contain;
	-webkit-background-size: contain;
	top: 0;
}

/* schedule
--------------------- */
#schedule.detail .infoDetail .tit{ margin-bottom: 0; }
#schedule.detail .infoDetail .date{ line-height: 100%; margin-bottom: 20px; }
#schedule.detail .infoDetail .md{ display: inline; font-weight: 100; font-size: 18px; letter-spacing: 0.1em; }
#schedule.detail .infoDetail .year{ display: inline-block; font-size: 11px; text-align: center; margin-right: 5px; }
#schedule.detail .infoDetail .new{ font-size: 12px; margin-left: 0; }
.infoDetail [class^="cat"]{ vertical-align: 3px; }


/* profile
--------------------- */
.profileList li{ width: 48%; float: left; margin: 0 4% 20px 0; }
.profileList li:nth-child(even){ margin-right: 0; }
.profileList a { display: block; text-decoration: none;}
.profileList .thumb {
	overflow: hidden;
    border-radius: 50%;
    line-height: 0;
    margin: 0 0 10px;
}
.profileList .thumb img{ background: no-repeat center top; background-size: cover; }
.profileList .name span{ display: block; font-size: 13px}
.profileList .name .yomi.sp{ font-size: 10px; ; margin: 0 0 8px;}
.profileList .snsList li {
    margin: 0 auto;
    margin-right: 6px;
    width: 22px;
}
.profileList .snsList a {
    width: 20px;
    font-size: 17px;
    margin: 0;
    height: 20px;
    border-radius: 4px;
    text-align: center;
    line-height: 21px;
    color: #000;
}
.profileList .snsList .instagram { margin-left: -5px; }
.profileList .snsList a img { width: 20px; }
.profileList .snsList .fa { vertical-align: super; }
.statusArea .snsList .fa { margin-left: 2px; }
.statusArea .snsList .instagram .fa { vertical-align: -1px; }


.profDetail .ph { width: 80%; margin: 0 auto 20px; 	position: relative; }
.profDetail .ph img{ 
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}
.profDetail .ph > img{
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    aspect-ratio: 2/3;
    padding-top: 50%;
}
.profDetail .statusArea{ width: 80%; margin: 0 auto; }
.profDetail .statusArea p{ font-size: 22px; text-align: center; margin-bottom: 30px; }
.profDetail .statusArea span{ display: block; font-size: 10px; letter-spacing: 0.05em; }
.profDetail dl{ margin: 0 auto 20px; }
.profDetail dt{
	width: 5em;
	float: left;
	clear: left;
	font-size: 11px;
	padding-top: 4px;
}
.profDetail dd{ margin-bottom: 7px; }
.profDetail .snsList li{ width: 30px; margin-right: 5px;}
.profDetail .snsList a{
	display: block;
	font-size: 18px;
	color: #fff;
	background: #000;
	border-radius: 6px;
	text-align: center;
	position: relative;
}
.profDetail .snsList a img{ width: 100%; }
.profDetail .snsList .twitter a,
.profDetail .snsList .instagram a,
.profDetail .snsList .tiktok a{ top: -10px; }
.profDetail .snsList .twitter a i{ vertical-align: -2px; }

/* about
--------------------- */
#about .lead{ font-size: 22px; line-height: 140%; text-align: justify; margin-bottom: 20px; }
#about .lead br{ display: none;}
#about p{ margin-bottom: 20px; }
#about .messeage{ border: 10px solid #eee; padding: 20px; margin-top: 40px; }
#about .messeage span{ display: block; text-align: right; }


/* producer
--------------------- */

#producer{ display:block; }
#producer .ph{ width: 80%; margin: 0 auto 30px; position:relative; }

#producer .textArea{ overflow: hidden; }
#producer .textArea .name span{ display: inline-block;  }
#producer dt{ float: left; }
#producer dd{ padding-left: 70px; margin-bottom: 10px; }
#producer dl + p{ line-height: 1.9; margin-bottom: 10px;}
.snsList li{ display:inline-block; margin-right: 6px; }
.snsList li a{ display:block; font-size: 18px;}
.snsList li a img{ display: block; width: 16px; }

#producer .snsList { margin-bottom: 15px; }
.snsList li{ margin-right: 16px; }
.snsList li:last-child{ margin-right: 0; }
.snsList li a { font-size:24px; }
.snsList li a img { width: 21px;}

#producer h2{ height: auto;  background: none;  }
#producer h2 span{ padding-top: 0;  }
#producer .textArea .name{ font-size: 24px; text-align: center; line-height: 1.5; margin-bottom: 30px; }
#producer .textArea .name span{ display: block; font-size: 10px; font-weight: 300; letter-spacing: 0.1em;}
#producer dl{ width: 65%; width: 10.5rem;  line-height: 1; margin: 0 auto 10px; }
#producer .snsList{ text-align: center; margin-bottom: 30px;}
#producer .snsList + p{ text-align: justify; }

/* faq
-------------------------------- */
h3.title{
	font-size: 16px;
	margin-bottom: 20px;
	position: relative;
}
#faq .categoryTit {
	border-bottom: 1px solid #ddd;
	padding: 0 0 10px;
	margin: 0 0 10px;
	font-weight: bold;
}
#faq .infoList { margin: 0 0 40px;}
#faq .infoList:last-of-type { margin-bottom: 0;}
#faq .infoList li{ margin-bottom:0; }
#faq .infoList li a{
	text-align: justify;
	word-break: break-all;
	padding: 10px 0;
	position: relative;
}
#faq .infoList li a .iconQ {
	font-size: 16px;
    font-weight: bold;
    color: #79ccbc;
    font-size: 1.2em;
    line-height: 1.2;
    position: absolute;
    left: 0;
    top: 12px;
}
#faq .infoList li a .tit {
	padding: 0 0 0 1.75em;
    margin: 0;
    font-weight: normal;
}
.faqList dt {
	line-height: 160%;
	word-break: break-all;
	padding: 15px 6% 15px 1.8em;
}
.faqList dd{ padding: 0 0 15px 1.8em;}
.faqList dt:before,
.faqList dd:before {
	margin: 0 8px 0 0;
	font-weight: 400;
	font-size: 16px;
	vertical-align: -1px;
}
.faqList dt .switch{ right: 5%; top: 50%; }
#faq .faqTit{ font-size: 1.3rem; margin-bottom: 15px; }

#faq .searchBox {
	position: relative;
    margin: 0 0 40px;
}
#faq .searchBox input[type=submit] {
	width: 35px;
    line-height: 35px;
    border: none;
    border-radius: 30px;
    background: transparent;
    font-size: 18px;
    font-family: FontAwesome;
    color: #79ccbc;
    position: absolute;
    right: 3px;
    top: 1px;
    z-index: 2;
    cursor: pointer;
}
#faq .searchBox input[type="text"] { padding: 5px 10px;}
#faq .faqDetail .categoryTit{ padding: 0 7%; margin: 0 0 25px; border-bottom: none;}
#faq .faqDetail .detailInner { padding: 25px 7% 0;}
#faq .faqDetail .detailInner .categoryTit { padding: 0 0 10px; margin: 0 0 10px; border-bottom: 1px solid #ddd;}
#faq .faqDetail .block--faq-detail {
	padding: 25px 7%;
	background: #F7F7F7;
}
#faq .faqDetail .infoList { margin: 0 0 20px;}
#faq .faqDetail .block--faq-detail dt {
	padding: 0 0 15px;
    border-bottom: 1px solid #ddd;
    margin: 0 0 15px;
}
#faq .faqDetail .block--faq-detail .txt { padding-left: 40px;}
#faq .faqDetail .block--faq-detail [class^="icon"]{
	display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 32px;
    margin-right: .5em;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    position: static;
    float: left;
    font-size: 1.2em;
}
#faq .faqDetail .block--faq-detail .iconQ { background: #7ACCBE;}
#faq .faqDetail .block--faq-detail .iconA{ background: #ffafc1}

/* discography
--------------------- */
#disco .txtBlock{ text-align: center; }
#disco .discoDetail [class^="cat"]{ margin: 0 auto 10px; }
#disco .jacketList {margin: 0 0 30px;}
#disco .jacketList .text{margin:10px 0 0;font-size:0.75rem;}
#disco .jacketList li{margin-right: 10px}
#disco .jacketList img{ width: 100%;}
#disco .ph {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 0;
	margin: 0 0 30px;
	position: relative;
}
#disco .txtBlock .tit{ font-size: 18px; text-align: center; line-height: 140%; margin-bottom: 10px; }
#disco .txtBlock .cat { text-align: center; margin-bottom: 10px;}
#disco .txtBlock .cat span{ margin:0; }
#disco .txtBlock .cat:after {display: none;}
#disco .txtBlock .date{
	font-size: 11px;
	text-align: center;
	margin-bottom: 30px;
}
#disco .txtBlock .buy a {
	display: inline-block;
	padding: 5px 16px;
	font-size: 11px;
	border: 1px solid #fff;
	color: #fff;
	font-family: "Open Sans","Work Sans", sans-serif;;
	font-weight: 400;
	border-radius: 100px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	text-decoration: none;
	-webkit-appearance: none;
	line-height: 1.6em;
	white-space: inherit;
	text-align: center;
}
#disco .trackListOuter {margin-top: 30px;}
#disco .trackList {margin: 0 0 30px;}
#disco .trackList li{
	border: none;
	font-size: 12px;
	line-height: 1.5em;
	margin: 0 0 10px;
}
#disco .trackList li span{
	width: 1em;
	display: inline-block;
	font-weight: 400;
}
#disco .trackList li:last-child{
	border-radius:0;
}
#disco .trackList li:nth-child(odd){
	background:none;
}
#disco .trackList li.discType{
	background: none;
	border-bottom: 0.5px solid;
	font-family: "Open Sans","Work Sans", sans-serif;
	letter-spacing: 0.15em;
	padding: 0 0 9px;
}
#disco .trackList li .tieup{
	margin-top: 2px;
	font-size: 10px;
	padding-left: 21px;
}
#disco .txt.comment{ text-align: left; word-break: break-all;}
#disco .txt.review { margin: 20px 0 0;}
#disco .contentsList li a .thumb {
	background: no-repeat center top;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
#disco .contentsList li a .thumb:before{
	content: '';
	background: inherit;
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(2px);
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
}
#disco .contentsList li a .thumb img {
	background-size: contain;
	z-index: 10;
	position: relative;
}

/* error
--------------------- */
#error h2{ opacity:0; }
#error .lead{ font-size: 20px; text-align: center; margin-bottom: 30px; font-weight: 100; }

/* apps
=================================== */
#apps .infoList li .thumb{ width: 70px; height: 70px; text-align: center; position: relative; }
#apps .infoList li .tit{ margin-bottom: 8px;}

/* wallpaper
=================================== */

.contentsDetail .thumb{ text-align: center; position: relative; margin-bottom: 30px; }
.pointList{ background: #f5f5f5; padding: 10px; margin: 20px auto; }
.pointList dt{
	width: 8em;
	float: left;
	clear: left;
	font-size: 12px;
	padding: 12px 5px 9px;
}
.pointList dd{
	font-size: 16px;
	text-align: center;
	border-bottom: 1px solid #fff;
	padding: 7px 0 7px 0;
}
.pointList dd:last-child{ border-bottom: none;}
.pointLabel { text-align: center; margin: 30px 0 5px;}

#wallpaper .thumbList .thumb {
	height: 270px;
}
#wallpaper.detail section.download .txt.center {
	text-align: center;
	margin: 0 0 5px;
}
#wallpaper.detail section.download .ph { margin: 0 0 5px;}

/* movie
=================================== */
video{ width:100%; height:50%; }
#main_box{ margin:30px auto; }
#main_box video { margin: 0 0 10px;}


#UlizaApp{ padding: 30px 0; }
#UlizaApp .tit{ font-size: 16px; margin-bottom: 30px; }
.stepbox{ margin: 30px auto 50px; }
.stepbox:last-child{ margin-bottom: 0; }
.stepbox .ph{ text-align: center; margin-bottom: 20px;}
.stepbox .steptit{ display:block; }
#movie .subList{ border-top: 1px solid #eee; margin: 20px auto 20px; }
#movie .subList li{ border-bottom: 1px solid #eee; }
#movie .subList li a{ display: block; text-decoration: none; padding: 12px 0; position: relative; }
#movie .subList li a::after{
	content: "\f105";
	font-family: 'FontAwesome';
	color: #999;
	font-size: 16px;
	font-weight: normal;
	top: 50%;
	position: absolute;
	right: 0;
	margin-top: -9px;
	line-height: 1em;
}


/* photo
=================================== */
#photo .thumb { width: 100%; margin: 0 0 5px; }
#photo .thumbList .thumb img,
#news .thumbList .thumb img {
	display: block;
	width: 100%;
	height: 85px;
	background: no-repeat center;
	background-size: cover;
}
#photo .photoImage .thumb img { height: 100%; }
#photo .modal .thumb img { background-size: contain; }
#photo .mfp-arrow-left:before {
    display: block;
    font-family: 'FontAwesome';
    content: '\f104';
    margin-right: 5px;
    opacity: 1;
    text-indent: 0;
    font-size: 60px;
    color: #fff;
}
#photo .mfp-arrow-right:before {
	display: block;
    font-family: 'FontAwesome';
    content: '\f105';
    margin-right: 5px;
    opacity: 1;
    text-indent: 0;
    font-size: 60px;
    color: #fff;
}
#photo .thumbList li { width: 48%; }
#photo .thumbList li .thumb { line-height: 0; margin: 0; }
#photo .thumbList li:nth-child(odd) { margin-right: 4%; }
#photo .thumbList li:not(:nth-last-child(2)) { margin-bottom: 12px; margin-bottom: 3.4vw; }
#photo.photoList .thumbList li{
	width: 100%;
}
#photo.photoList .thumbList li .thumb  { height: 180px; margin: 0 0 10px;}
#photo.photoList .thumbList li .thumb img { height: 100%;}
#photo.photoList .thumbList li,#photo.photoList .thumbList li:not(:nth-last-child(2)) { margin: 0 0 30px;}
#photo.photoList .thumbList li:last-child { margin-bottom: 0;}

#photo.detail section.photoCategory { padding-bottom: 55vw;}
#photo .photoCategory .slick-slider{
	width: 90%;
	-ms-touch-action: inherit;
	touch-action: inherit;
	padding-bottom: 30px;
	padding-bottom: 9.5vw;
	overflow: visible;
}

#photo .photoCategory .thumbList li{
	width: 280px;
	width: 85vw;
	float: left;
	box-sizing: border-box;
	margin: 0;
}
#photo .photoCategory .block--swipe { margin: 0 0 40px; border-bottom: 1px solid #ddd;}
#photo .photoCategory .block--swipe:last-of-type { border-bottom: none;}
#photo .photoCategory .slick-slider .slick-list{ overflow: visible;  }
#photo .photoCategory .slick-dots{
	display: block;
	padding-left: 0;
	position: absolute;
	bottom: 0;
	padding: 0;
	left: 12%;
}
#photo .photoCategory .slick-dots li button { background: #ddd;}
#photo .photoCategory .slick-dots li.slick-active button { background: #79ccbc;}
#photo .photoCategory .slick-prev,#photo .photoCategory .slick-next { display: none!important;}
#photo .photoCategory .block-tit {
	font-size: 16px;
    padding: 0 7%;
    margin: 0 0 30px;
    position: relative;
    letter-spacing: 0.6em;
/*    color: #79ccbc;*/
}
#photo .photoCategory .more { bottom: 4px; right: 7%; font-size: 12px;}
#photo .photoCategory .more a:after { right: 5px;}
#photo .photoCategory .thumb { height: 160px; margin: 0 0 10px;}
#photo .photoCategory .thumb img {
	background-size: cover;
	background-position: center; 
	height: 100%;
}
#photo .photoCategory .tit { margin: 0; font-size: 14px;}


/* blog
=================================== */

#blog .titArea{ margin: 0 0 20px;}
#blog .date{ margin: 0 0 5px;}
#blog .infoList [class^="cat"] {
	background: #79ccbd;
	color: #fff;
	margin: 0 3px 0 0; 
	border: none;
}
#blog .infoList li a .thumb {
	border: none;
	border-radius: 50%;
	overflow: hidden;
}
#blog .infoList li a .thumb img {
	background-position: top;
}
#blog .infoList li a .text { padding-top: 10px;}
#blog.detail section .subInfo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 7% 10px;
	margin: 0 0 10px;
	position: relative;
}
#blog.detail section .subInfo:before {
	display: block;
	content: '';
	width: 100%;
	height: 1px;
	background: #ddd;
	position: absolute;
	top: 62%;
	left: 0;
}
#blog.detail section .subInfo .thumb {
	border: 1px solid #ddd;
	border-radius: 50%;
	width: 20%;
    margin-right: 4%;
    overflow: hidden;
}
#blog.detail section .subInfo .thumb img {
	display: block;
	width: 100%;
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
}
#blog.detail section .subInfo .memberName {
	margin: 0 0 10px;
    font-size: 14px;
    color: #7ACCBE;
}

/* pageNav */
.pageNav{ margin-top:20px; }
.pageNav li {
	width: 30%;
	float: left;
	line-height: 40px;
	padding: 0 5px;
}
.pageNav li{ border:none; color:#000; }
.pageNav li:first-child { width: 35%; text-align: left; padding: 0; }
.pageNav li:last-child { width: 35%; float: right; text-align: right; padding: 0; }
.pageNav li a{ color:#000; text-decoration: none; }
.pageNav li a ,
.pageNav li span{ display: block; text-decoration: none; }
.pageNav li:first-child { width: 35%; text-align: left; padding: 0; }
.pageNav li span{ color: #ccc;}
.pageNav li:first-child a,
.pageNav li:last-child a{ }
.pageNav li:last-child span{ padding-right: 2%; }

/* q&a
=================================== */
#qa .mainLead { margin: 0 0 40px; padding: 0 7%;}
#qa .mainLead .txt {
    font-size: 20px;
    text-align: center;
    color: #000;
    line-height: 1.5em;
    margin: 0 0 15px;
}
#qa .mainLead .txt span {
    display: block;
    padding: 5px 0 0;
    font-size: 10px;
}
#qa .contentsList.qandaList { border-top: 0.5px solid #e5e5e5; }
#qa .contentsList.qandaList li { margin: 0; position: relative; }
#qa .contentsList.qandaList li::before {
    content: "Q.";
    color: #000;
    font-family: "Comfortaa","Work Sans","ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: 400;
    position: absolute;
    top: 12px;
    left: 7%;
}
#qa .contentsList.qandaList li a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 12px 7%;
	border-bottom: 0.5px solid #e5e5e5;
    position: relative;
}
#qa .contentsList.qandaList li a::before {
    content: "\f105";
    font-family: 'FontAwesome';
    color: #999;
    font-size: 16px;
    font-weight: normal;
    top: 50%;
    position: absolute;
    right: 3.5%;
    margin-top: -9px;
    line-height: 1em;
}
#qa .contentsList.qandaList li a .tit { padding-left: 20px;}
#qa .contentsList.qandaList li a .subTxt {
    display: block;
    margin: 10px 0 0;
    font-size: 12px;
    text-align: right;
    color: #999;
}
#qa .question {  padding: 0 0 15px; margin: 0 0 32px; }
#qa .question .txtBox {
	display: inline-block;
	float: right;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 5px 10px;
	border-radius: 5px;
	background: #f5f5f5;
	position: relative;
	z-index: 1;
}
#qa .question .txtBox::before {
    content: "";
    position: absolute;
    right: -17px;
    top: 8px;
    border-top: 0px solid transparent;
    border-right: 8px solid transparent;
    border-left: 11px solid #f5f5f5;
    border-bottom: 9px solid transparent;
    z-index: 1;
}
#qa .question .q { position: relative; color: #f14664; float: left; }
#qa .question .q::before {
	content: 'Q.';
	display: block;
	font-family: "Comfortaa","Work Sans","ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	color: #000;
	margin: 3px 3px 0 0;
	font-size: 15px;
	vertical-align: -1px;
}
#qa .question .date { text-align: right; margin: 0; }
#qa .question .tit {
    padding: 4px 0 0 1.7em;
    font-size: 14px;
    line-height: 1.5em;
}
#qa .formArea .txt { margin: 0 0 30px; }
#qa .answer .txtBox {
    display: inline-block;
    max-width: 80%;
    max-width: calc(100% - 60px);
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
	padding: 5px 8px 5px 10px;
	margin: 0 0 18px 72px;
    border-radius: 5px;
    background: #79ccbd;
	position: relative;
	z-index: 1;
}
#qa .answer .txtBox::before + span { position: relative; }
#qa .answer .txtBox::before {
    content: "";
    position: absolute;
    left: -17px;
    top: 8px;
    border-top: 2px solid transparent;
	border-left: 7px solid transparent;
    border-right: 10px solid #79ccbd;
    border-bottom: 7px solid transparent;
	z-index: 1;
}
#qa .answer .txtBox p { display: contents; color: #fff;}
#qa .answer .txtBox .from {
    display: block;
	font-size: 10px;
	text-align: left;
    color: #fff;
	line-height: 1.4;
	padding: 3px 0 0;
}
#qa .backLink {
	margin: 50px 0 0;
	text-align: center;
}
#qa .backLink a { position: relative; text-decoration: none; color: #669fd1; }
#qa .backLink a::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	position: absolute;
	top: 50%;
	left: -12px;
	border-right: 0.5px solid #669fd1;
	border-top: 0.5px solid #669fd1;
	margin-top: -4px;
	-webkit-transform: rotate(45deg);
	transform: rotate(-135deg);
}
#qa .btn .sub { display: none; }
#qa.edit .btn .back { margin: 20px 0 46px; }

#qa .formList { margin: 0 0 30px; }
#qa .formArea .formTit { color: #000; margin: 0 0 1px; }
#qa .formArea .formTit + .txt { margin: 0 0 10px; }

#qa .formList input, #qa .formList textarea {
    width: 100%;
    background: none;
    border: none;
    font-size: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px 10px 10px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 3px;
    box-shadow: none;
    -webkit-appearance: none;
}
#qa .formList textarea { font-size: 14px; height: 140px; }
#qa .formArea .txtArea .subTxt {
    display: block;
    padding: 5px 0 0;
    font-size: 12px;
    color: #999;
}

/* アンケートページ(sslQuestioneer)
-------------------------------- */

.questionnaire h2.sectionTit{ letter-spacing: 0.05em; line-height: 120%; }
.questionnaire h2.sectionTit:before { content: none;}

.questionnaire .btn{ margin-top: 30px; }
.questionnaire .btn + .btn { margin-top: 10px; }
.questionnaire .ph { margin: 0 0 15px; }
.questionnaire .txtArea { margin: 0 0 30px; }
.questionnaire .pulldownBox { margin: 0 0 15px; }
.questionnaire .icoMust:before{
	display: inline-block;
	content: '必須';
	background: #79ccbd;
	color: #fff;
	font-size: 10px;
	line-height: 100%;
	border-radius: 2px;
	padding: 3px 5px 2px;
	margin-left: 3px;
}
/* form */
.questionnaire .formList { margin: 30px 0; }
.questionnaire .formList dt { color: #999; font-size:12px; margin: 0 0 10px; }
.questionnaire .formList dd { margin: 0 0 20px; }
.questionnaire .formList input[type="text"],
.questionnaire .formList input[type="tel"],
.questionnaire .formList input[type="email"],
.questionnaire .formList input[type="password"],
.questionnaire .formList input[type="number"],
#faq .searchBox input[type="text"]{
	-webkit-appearance: none;
	display: block;
	width: 100%;
	background: #fff;
	font-size: 14px;
	line-height: 1.8;
    padding: 5px;
	border-radius: 5px;
	border: 1px solid #999;

}
.questionnaire .formList dd.confirm input { background: #f5f5f5; border: 1px solid #eee; }
.questionnaire .formList textarea {
	-webkit-appearance: none;
	display: block;
	width: 100%;
	background: #fff;
	font-size: 14px;
	line-height: 1.8;
	padding: 5px;
	border-radius: 5px;
	border: solid 1px #999;
}
.questionnaire .formList .radioBtn label{
	font-size: 14px;
	display: block;
	float: left;
	line-height: 1.5em;
	margin: 4px 25px 14px 5px;
}
.questionnaire .formList  .radioBtn input[type="radio"] {
	position: relative;
	-webkit-appearance: button;
	appearance: button;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	content: "";
	background-color: #eee;
	border-radius: 100%;
	vertical-align: middle;
	clear: both;
	float: left;
	border: none;
	top: 4px;
	transition: all .3s ease;
}
.questionnaire .formList .radioBtn input[type="radio"]:checked:after {
	display: block;
	position: absolute;
	top: 5px;
	left: 5px;
	content: "";
	width: 10px;
	height: 10px;
	background: #79ccbd;
	border-radius: 100%;
}
.questionnaire .formList input[type="checkbox"] {
	display: inline-block;
	position: relative;
	margin-right: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: button;
	appearance: button;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	background: #eee;
	border: none;
}
.questionnaire .formList input[type="checkbox"]:checked:after {
	position: absolute;
	content: "";
	top: 0px;
	left: 5px;
	width: 7px;
	height: 12px;
	border-right: 2px solid #151515;
	border-bottom: 2px solid #151515;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.questionnaire .formList .check {margin: 0 0 20px;}
.questionnaire .formList .check label {display: block;margin: 0 0 10px;}
.errorList {margin: 0 0 20px;}
.errorList li{
	position: relative;
	color: red;
	font-size: 12px;
	margin: 0 0 5px;
	text-indent: -1.3em;
	padding-left: 1.3em;
}
.errorList li:before {
	content: "\f06a";
	font-family: 'FontAwesome';
	margin-right: 5px;
}

/* support
=================================== */

#support h2.sectionTit { font-size: 20px; letter-spacing: 0.1em; margin: 0 0 30px;}
#support h2.sectionTit:before { content: none;}
#support .txt--support dt{ font-weight: bold; margin: 0 0 0.5em;}
#support .txt--support dd{ margin-bottom: 20px;}
#support .txt--support dd:last-child{ margin-bottom: 0; }
.txt { margin-bottom: 20px; }
#support .list--support li { margin: 0 0 20px;}
#support .list--support li:last-child { margin-bottom: 0;}



/* android
=================================== */
.andOS #heroImg .heroImgBox svg{ display: none !important; }
.andOS .heroImgBox .noSVG{ display: block; }
.andOS #heroImg, .andOS #heroImg #bg, .andOS #heroImg #bg div { height: 100%; }
.andOS #heroImg .heroImgBox{ margin-top: -20%;}
.andOS #heroImg .heroImgBox svg { height: 64px; }
.andOS .infoList [class^="cat"],
.andOS .infoDetail [class^="cat"],
.andOS .contentsList [class^="cat"],
.andOS .discoDetail [class^="cat"] ,
#home.andOS [class^="cat"] { border-width: 1px; }
.andOS #schedule .infoList li a .text{ width:73%; float:left; }
.andOS h1#logo svg { display: none;}
.andOS h1#logo .noSVG { display: block; width: 100px; }
.andOS #headerNavWrap #headerNav .menu{ left: 16%; top: 10%; }


/* ios7
=================================== */
.ios7 #headerNavWrap #headerNav .menu{ left:0; }

/* chrome
=================================== */
@media screen and (-webkit-min-device-pixel-ratio:0){
	#home #memberArea #latest::after {
		bottom: -20vw;
	}
}


/* TABLET
=================================== */
@media screen and (min-width:600px) and ( max-width:960px) {

	/* cmn
	--------------------- */
	body { font-size: 16px; line-height: 1.7; }
	.tit{ font-size: 16px; }
	.date { font-size: 12px; }
	.infoList [class^="cat"], .infoDetail [class^="cat"], .contentsList [class^="cat"], .discoDetail [class^="cat"],#home [class^="cat"] , .thumbList [class^="cat"]{ font-size: 11px; }
	.new { font-size: 12px; }
	.more { font-size: 14px; bottom: -110px; bottom: -15vw; }
	.back { margin-top: 60px; }

	/* sectionTit */
	h2.sectionTit { font-size: 26px; margin-bottom: 50px;}
	h2.sectionTit::after, h2.sectionTit::before { width: 20px; bottom: -30px; }
	h2.sectionTit::after { bottom: -34px; }

	/* infoList */
	.infoList li a .thumb, .contentsList li a .thumb { width: 20%; }


	/* header
	--------------------- */
	#navBtn { top: 60px; right: 60px;}
	#headerNavWrap #headerNav a{ font-size: 16px; }
	#headerNavWrap #headerNav .menu{ top: -3%; left: 9%; }
	#headerNavWrap #headerNav  li{ float: none;}
	#headerNavWrap #headerNav .loginList li a{ font-size: 16px; }

	#headerNavWrap #headerNav .loginList li { float: left; width: 8%; }
	#headerNavWrap #headerNav .snsNav li { line-height: 100%; margin-right: 1.3%; }
	#headerNavWrap #headerNav .sns.ameba { vertical-align: -5.5px;}

	/* footer
	--------------------- */
	#footer { padding: 40px 7%; }
	#footer .mail { font-size: 16px; }


	/* heroImg */
	#heroImg .heroImgBox { width: 30%; height: 15%; margin-top: -34%; margin-left: -15%; }

	/* login */
	#home .loginArea{ padding: 50px 0 70px; }
	#home .loginArea li{ width: 30%; font-size: 20px; }
	#home .loginArea li img { width: 21px; }

	/* bnrArea */
	#bnrArea .pickUp a{ padding: 30px 21px 25px; }

	/* schedule */
	#schedule .infoList .date{ width: 20%; margin-right: 2%; }
	#schedule .infoList .md { letter-spacing: 0; font-size: 52px; font-size: 7.1vw; margin-bottom: 24px; }
	#schedule .infoList .year { font-size: 20px; font-size: 2.8vw; letter-spacing: 0.05em; margin-left: -0.5em; }
	#schedule .infoList li:not(:last-child) { margin-bottom: 50px; }

	/* memberArea */
	#memberArea h2.areaTit { padding: 4vw 13% 2vw; }
	#home #latest .slick-slider .slick-list{ padding: 0 9% !important; }
	#home #memberArea::before { height: 26vw; top: -14vw; }
	#home #memberArea .loginArea { padding: 60px 0 10px; }
	#home #memberArea #latest::before { height: 24vw; top: -13vw; }

	#home #latest .slick-slider{ width: 80%; }
	#home #memberArea #latest { padding: 27vw 0 30vw; }
	#memberArea #latest h2.sectionTit { margin: 0 7% 88px; }
	#memberArea .more { bottom: -13vw; }

	#home #memberArea #blog::after { height: 24vw; bottom: -16vw; }
	#memberArea #blog .more { z-index: 30; bottom: -10vw; }
	#home .menu.member li a{ font-size:20px; }
	#home .twArea { padding: 30px; }
	#twitter::after { bottom: -16vw; }
	#home #twitter iframe { width: 100% !important; height: 500px !important;}

	#footer h1 { bottom: 40px; }
	#footer .bnrArea { margin: 0 auto 40px; }
	#footer .yoani { width: 35%; }
	.supportList { margin-bottom: 50px; }
	.supportList li { margin-bottom: 15px; }
	.supportList li a { font-size: 13px; }

	/* detail
	--------------------- */
	.detail h2.sectionTit { font-size: 30px; letter-spacing: 0.4em;}
	h1#logo { top: 54px; }
	h1#logo svg { width: 120px; height: 36px; }
	.detail #container::before{ height: 24vw; }
	.detail #container::after {  bottom: -150px; height: 37vw;}
	.pulldownBox { margin: 0 0 70px; }
	.pulldownBox select { height: 67px; font-size: 20px; padding: 0 20px; }

	/* information */
	.infoDetail .tit{ font-size: 30px; }
	.infoDetail .new { font-size: 16px; }
	#schedule.detail .infoDetail .md { font-size: 30px; }
	#schedule.detail .infoDetail .year { font-size: 14px; }
	.shareList { font-size: 12px; margin: 10px auto 60px;}
	.shareList a { line-height: 22px; font-size: 22px; }

	/* discography */
	#disco .ph{ margin: 0 0 80px; }
	#disco .ph img{ width: 100%;}
	#disco .txtBlock .tit{ font-size: 30px; }
	#disco .txtBlock .date { font-size: 16px; }

	/* about */
	#about .lead { font-size: 30px; line-height: 140%; margin-bottom: 40px;}

	/* profile */
	.profDetail .ph { margin: 0 auto 40px; }
	.profDetail .statusArea p{ font-size: 30px; margin-bottom: 40px; }
	.profDetail dt { font-size: 12px; padding-top: 3px; }

	/* producer */
	#producer .textArea .name{ font-size: 30px; }
	#producer .textArea .name span { font-size: 11px; }
	#producer dl { width: 32%; width: 14rem; margin: 0 auto 20px;}
	#producer dd { padding-left: 90px; margin-bottom: 15px; }

	/* support */
	#support h2.sectionTit{ font-size: 30px; }

	/* movie */
	.thumbList li:not(:nth-last-child(2)) {
		margin-bottom: 55px;
	}

}

.arrow_box{
    position:relative;
		margin: 2.5em 9px 2.5em 0;
	  padding: 5px 10px;
	  min-width: 120px;
	  max-width: 100%;
		vertical-align: middle;
    line-height: 2;
    background:#fdebed;
    text-align:center;
    border:2px solid #EA6C81;
    color:#000;
    font-size:10px;
    border-radius:7px;
		-webkit-transition: all .6s ease-out .4s;
		transition: all .6s ease-out .4s;
}
.arrow_box:after,.arrow_box:before{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    left:100%;
    top:50%;
}
.arrow_box:after{
    border-color: rgba(255, 255, 255, 0);
		border-top-width: 6px;
		border-bottom-width: 6px;
		border-left-width: 6px;
		border-right-width: 6px;
		margin-top: -6px;
    border-left-color:#fdebed;
}
.arrow_box:before{
    border-color: rgba(234, 108, 129, 0);
    border-top-width:7px;
    border-bottom-width:7px;
    border-left-width:7px;
    border-right-width:7px;
    margin-top: -7px;
    margin-left: 2px;
    border-left-color:#EA6C81;
}
.hide .arrow_box{
	display: none;
}
