@charset "utf-8";

/* =Responsive Structure
----------------------------------------------- */
/*まずはスマホ*/
/* ==========================================
	 font設定
	 基本：100% = 1em = 1rem = 16px = 12pt
============================================= */

@import url('https://fonts.googleapis.com/css?family=Anton&display=swap&text=0123456789');




html {
	font-size: 62.5%; 
} /* sets the base font to 10px */
body {
	color: #333;
/* ゴシックタイプ */
/* 	font-family: Avenir,"Helvetica neue",Helvetica,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic ProN", Meiryo, sans-serif; */
font-family:'Impact','Anton','M PLUS Rounded 1c',  -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;

/* font-family: YuGothic,"Yu Gothic","游ゴシック体","游ゴシック","ヒラギノ角ゴ ProN W6","ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","ＭＳ ゴシック",Osaka,sans-serif; */


/* 明朝タイプ */
/* 	font-family:"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
	-webkit-text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,h6 {
	margin-bottom:0.4em;
	font-size:2rem;
 	font-weight: bold;
}
p { font-size: 1.8rem; line-height: 1.4;}
small { font-size: 0.85em;}
ul li { font-size: 1.5rem; line-height: 1.4;}
dl dt { font-size: 1.5rem; line-height: 1.4;}
dl dd { font-size: 1.5rem; line-height: 1.4;}


@font-face
{
font-family: mplus-1p-regular;
src: url('http://mplus-fonts.sourceforge.jp/webfonts/mplus-1p-regular.ttf')
     format("truetype");
}

@font-face
{
font-family: mplus-1m-bold;
src: url('../../../fonts/mplus/mplus-1m-bold.ttf')
     format("truetype");
}
@font-face {
    font-family: 'Easy-Rider';
    src:url('../font/Easy-Rider/Easy-Rider.ttf.woff') format('woff'),
        url('../font/Easy-Rider/Easy-Rider.ttf.svg#Easy-Rider') format('svg'),
        url('../font/Easy-Rider/Easy-Rider.ttf.eot'),
        url('../font/Easy-Rider/Easy-Rider.ttf.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}




/* ==========================================
	 リンク
	 ========================================== */


a { text-decoration: none; }
a:link    { color: #E60012}
a:visited { color: #E60012;}
a:hover   { color: #E60012; opacity: .8;}
a:active  { color: #E60012;}

a,a:hover,
a img,a:hover img {
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

/* ==========================================
	 汎用クラス
	 ========================================== */

.sign {
	display: block;
	text-align: right;
	margin:10px 0 20px;
}
.center {
	display: block;
	text-align: center;
/* 	margin: auto; */
}
.bold {
	font-weight: bold;
}
.right { text-align: right;}
.nowrap,.nw {
 	white-space:nowrap;
 	display: inline-block;
}
.italic { font-style: italic;}

.red   { color:#E60012;}
.green { color:#009944;}
.blue  { color:#0081cc;}
yellow { color:#FDD000;}
.black { color:#000;}
.white { color: #fff;}


.lh12 {line-height: 1.2;}
.lh13 {line-height: 1.3;}
.lh14 {line-height: 1.4;}
.lh15 {line-height: 1.5;}
.lh16 {line-height: 1.6;}
.lh17 {line-height: 1.7;}
.lh18 {line-height: 1.8;}
.mb10 {margin-bottom: 10px;}
.mb20 {margin-bottom: 20px;}
.mb30 {margin-bottom: 30px;}
.mb40 {margin-bottom: 40px;}
.mb50 {margin-bottom: 50px;}
.mb60 {margin-bottom: 60px;}
.mb70 {margin-bottom: 70px;}

.blink{
	color: #DF0000;
		font-style: italic;
	font-size: .5em;
	vertical-align: text-top;
    -webkit-animation:blink 1.0s step-end infinite alternate;
    -moz-animation:blink 1.0s step-end infinite alternate;
    animation:blink 1.0s step-end infinite alternate;
}

/* 点滅 */
@-webkit-keyframes blink{
    34%,66%,100% {opacity:0;}
    0%,33%,67%,99% {opacity:1;}
}
@-moz-keyframes blink{
    34%,66%,100% {opacity:0;}
    0%,33%,67%,99% {opacity:1;}
}
@keyframes blink{
    34%,66%,100% {opacity:0;}
    0%,33%,67%,99% {opacity:1;}
}

/* ==========================================
	 ローディング
	 ========================================== */

.loader-wrap {
	position: fixed;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #2B83D2;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  color: #E60012;
}
.loader:after {
  left: 3.5em;
  color: #009944;
}

.loader1,
.loader1:before,
.loader1:after {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader1 {
  color: #2B83D2;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader1:before,
.loader1:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader1:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  color: #E60012;
}
.loader1:after {
  left: 3.5em;
  color: #009944;
}

@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

/* ==========================================
	点滅
   ========================================== */
.blinking{
	-webkit-animation:blink 1s ease-in-out infinite alternate;
    -moz-animation:blink 1s ease-in-out infinite alternate;
    animation:blink 1s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0.5;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0.5;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0.5;}
    100% {opacity:1;}
}


/* ==========================================
	 構造
   ========================================== */


body {
	background:
	url(../../images/bg-cloud02.png) no-repeat center top,
	url(../../images/bg-sky.jpg) #fff no-repeat center top;
	background-size:70% auto ,100% auto ;
}
#container {
	margin :0 auto;
	padding: 4% 0 0; 
}
#container #inner-container {
	margin :0 auto;
	width: 100%;
	max-width: 1240px;
	height: auto;
	text-align: center;
}
#container header {
	margin-bottom: 5%;
	padding: 0 20px;
}
#container header #title {
	margin-bottom: 0;
	padding-bottom: 4%;
}
#container header .flyer img {
		-webkit-box-shadow: 0 0 5px 0px rgba(0,0,0,0.4);
		-moz-box-shadow   : 0 0 5px 0px rgba(0,0,0,0.4);
		box-shadow        : 0 0 5px 0px rgba(0,0,0,0.4);
}

.section {
	box-sizing: border-box;
	margin: 0 auto 8em;
	padding:1em 0 7em;
	background-color: #fff;
}
.section.section2 { padding: 1em 6% 7em;}
.section h2.title {
	margin-top: 1em;
}
.section h2.title img {
	width: 100%;
	max-width: 750px;
	height: auto;
}
.section p.center {text-align: center; }

.section h1 {
	margin: 3% 0 2%;
	font-family: 'mplus-1m-bold';
	color: #E60012;
	font-size: 4rem;
	font-weight: normal;
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-shadow: 0px 1px 0px rgba(0,0,0,1);
}
.section h4 { text-align: center;}

.iframe {
    margin: 0 auto 20px;
    max-width: 640px;
    padding-top: 56.25%;
    position: relative;
    width: 100%;
}
.iframe iframe {
    height: 100% !important;
    position: absolute;
    right: 0;
    top: 0;
    width: 100% !important;
}


#footer {
	clear: both;
	width: 100%;
	margin: 0 auto 0;
	padding: 35% 5% 30%;
	color: #70331E;
	font-family:'M PLUS Rounded 1c';
	font-size: 0.8em;
	text-align: center;
	background: url(../../images/bg-stadium.jpg) no-repeat center bottom;
	background-size: 100% auto;
	text-shadow: 
		1px 1px 1px rgba(255,255,255,1),
		1px -1px 1px rgba(255,255,255,1),
		-1px 1px 1px rgba(255,255,255,1),
		-1px -1px 1px rgba(255,255,255,1);
}
#footer .navi { padding-bottom: 5%;}
#footer .navi a {
	display: inline-block;
	margin:0 .3em 1em;
	vertical-align: middle;
}
#footer .navi a:link img,
#footer .navi a:visited img { opacity: 0.9;}
#footer .navi a:hover,
#footer .navi a:hover img {
	opacity: 1;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
#footer #link { padding-bottom: 2em;}
#footer p.copyright { line-height: 1.2;}



.pre #container .header #flyer img { width: 90%;margin: 0 auto;}
.appearance { margin: 10px 0 30px;}


/* モーダルメニュー　========== */

/* メニューボタン */
#btn-menu {
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 110px;
  height: 110px;
  padding: 0;
  color: #01071A;
  z-index: 0;
  transition: all .2s ease-in;
}


/* メニュー */
#sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  overflow: scroll;
  z-index: 10000;
  transition: all .3s ease-in;
  visibility: hidden;
  opacity: 0;
}

.open-menu #sp-menu {
  visibility: visible;
  opacity: 1;
}

#sp-menu-position {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0 auto;
  width: 80%;
  transform: translate(-50%,-50%);
}

.sp-menu-list {
  list-style: none;
}
.sp-menu-list li {
	padding: 1em 0;
	cursor: pointer;
}

.sp-menu-list a {
	cursor: auto;
	display: block;
	font-size: 2.7rem;
	font-family:'M PLUS Rounded 1c';
	font-weight: bold;
	color: #fff;
}
.sp-menu-list a:hover {
	opacity: .8;
	cursor: pointer;
}


/* end モーダルメニュー　========== */



/* キャラクター */
chara img {
	display:block;
	position:absolute;
	left:50%;
	z-index:1000;
	animation:anim 5s infinite ease;
	pointer-events:none
}
.chara img.chara_01{top:520px;margin-left:-550px}
.chara img.chara_02{top:655px;margin-left:300px}
.chara img.chara_03{top:1100px;margin-left:-525px}
.chara img.chara_04{top:1250px;margin-left:405px}
.chara img.chara_05{top:2050px;margin-left:-600px}
.chara img.chara_06{top:1755px;margin-left:400px}
.chara img.chara_07{top:2950px;margin-left:300px}

@keyframes anim{
	0%,
	100%{transform:translate(0,0)}
	50%{transform:translate(0,-20px)}
}


/* ===============================
	さるフェスとは
================================== */
.section.about {
	margin: 40px auto 0;
	padding-top: 2%;
	padding-bottom: 230px;
	clear: both;
	color: #E60012;
	font-family:'M PLUS Rounded 1c',"ヒラギノ丸ゴ Pro W6","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro";
	font-size: 2.5rem;
	font-weight: 600;
	font-style: normal;
	line-height: 1.3;
	background: url(../../images/chara-lifting.png) no-repeat right bottom;
	background-position: 30% 100%;
	background-size: 200px auto;
}
.section.about .copy {
	margin-bottom: 2em;
	padding: 1.5em 0 2em;
	color: #0081CC;
	font-size: 2.8rem;
/* 	font-family: serif; */
	font-family:'M PLUS Rounded 1c';
/* 	font-style: italic; */
	text-align: center;
	line-height: 1.6;
	opacity: 0.4;
}
.section.about .copy span {
 	white-space:nowrap;
 	display: inline-block;
/* 	font-style: italic; */
}
.section.about .rocklymplic {
	margin: 0 5%;
	padding-top: 165%;
	background: url(../../images/logo-sarufes20.png) no-repeat center top;
	background-size:  100% auto;
}
.section.about .rocklymplic img {
	visibility: hidden;
}
.section.about h4 {
	margin: 1em 0 .2em;
	font-family: 'mplus-1m-bold';
	color: #000;
	font-size: 2.8rem;
	font-weight: normal;
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1.4;
}

/* 開催日時と場所 */
.section.about .dateplace {
	margin-bottom: 3%;
}
.section.about .dateplace p {
	margin: 0;
	text-align: center;
	line-height: 1.3;
}
.section.about .dateplace p.uchiage {
	margin-bottom:2.8em;
	color: #000;
	font-size: 1.3rem;
}
.section.about .dateplace strong {
	display: inline-block;
	margin: 0 .03em;
	padding: 0 ;
	font-family: 'Impact','anton','arial black','Haettenschweiler','Franklin Gothic Medium';
	font-size: 4.5em;
	font-weight: 900;
}
.section.about .dateplace strong.strong2 { font-size: 2.5em;}
.section.about .dateplace .place { color: #333;}
.section.about .dateplace strong.loft {
	margin-bottom: .4em;
	font-size: 1.5em;
	line-height: 1.3;
	letter-spacing: 0;
}
.section.about .dateplace small {
	vertical-align:text-top;
	white-space: nowrap;
	display: inline-block;
}
.section.about .dateplace small.date {
	margin-left: .1em;
	width: 1.4em;
	height: 1.4em;
	line-height: 1.4em;
	color: #fff;
	background-color: #E60012;
	-webkit-border-radius: 50%; /* Safari, Chrome用 */
	-moz-border-radius   : 50%; /* Firefox用 */
	border-radius        : 50%; /* CSS3 */
	vertical-align: 6px;
	text-align: center;
}



/* ===============================
	TICKET
================================== */
.section.ticketarea {
	margin: 0 auto 50px;
	padding: 20px 7% 10px;
	max-width: 840px;
	color: #fff;
	background-color: #E60012;

}
.section.ticketarea h4 {
	margin-top: .6em;
	margin-bottom: .8em;
	font-size: 5rem;
}
.section.ticketarea h5 {
	font-size: 2.4rem;
	font-weight: 700;
}
.section.ticketarea p  { text-align: center;}
.section.ticketarea p strong {
	display: inline-block;
	margin: 0 0.1em;
	font-size: 2.5em;
}
.section.ticketarea .normal {
	margin-bottom: 3em;
}
.section.ticketarea .premiere {
	margin-bottom: 3em;
	padding: 4%;
	border: 2px solid #fff;
	/* webkit: Safari, Chrome用 , moz: Firefox用 , CSS3 */
	-webkit-border-radius: 25px;
	-moz-border-radius   : 25px;
	border-radius        : 25px;
}
.section.ticketarea .premiere p strong { font-size: 3em;}
.section.ticketarea .premiere .goods { margin-top: 3em;}
.section.ticketarea .premiere .goods li { margin-bottom: 1em;}
.section.ticketarea .premiere .goods p strong { font-size: 1.7em;}
.section.ticketarea .premiere .goods p.pict .medal {
	margin: 0 auto;
	width: 90%;
	max-width: 400px;
	height: auto;	
}


.section.ticketarea .ticketnormal .ticlet_eplus {
	margin: .5em;
}
.section.ticketarea .ticketnormal .ticlet_eplus a.button {
	margin: 0 auto; 
	padding: 0 5%;
	width: 86%;
	max-width: 500px;
	font-weight: 600;
	background-color: #fff;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.section.ticketarea .ticketnormal .ticlet_eplus a.button:link,
.section.ticketarea .ticketnormal .ticlet_eplus a.button:visited { opacity: 0.95;}
.section.ticketarea .ticketnormal .ticlet_eplus a.button:hover {
	opacity: 1;
/*
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
*/
}

.section.ticketarea .toform { margin: 3em 0;}
.section.ticketarea .toform .button {
	padding: .5em;
	height: auto;
	font-size: 1.8rem;
	line-height: 1.15;
	letter-spacing: 0.05em;
	color: #F9EEB6;
	font-size: 2.2rem;
	font-weight: 600;
	/* 	横位置　縦位置　ぼかし　広がり　色 */
		-webkit-box-shadow: 0 -3px 1px 0px rgba(255,255,255,0.2);
		-moz-box-shadow   : 0 -3px 1px 0px rgba(255,255,255,0.2);
		box-shadow        : 0 -3px 1px 0px rgba(255,255,255,0.2);
	/* 	内側 */
		-webkit-box-shadow: 0 3px -3px 1px rgba(0,0,0,0.2) inset;
		-moz-box-shadow   : 0 3px -3px 1px rgba(0,0,0,0.2) inset;
		box-shadow        : 0 3px -3px 1px rgba(0,0,0,0.2) inset;
/*
	text-shadow:
	1px 1px 1px rgba(0,0,0,1),
	-1px -1px 1px rgba(0,0,0,1),
	-1px 1px 1px rgba(0,0,0,1),
	1px -1px 1px rgba(0,0,0,1),
	2px 2px 1px rgba(0,0,0,1),
	3px 3px 1px rgba(0,0,0,1);
*/
}
.section.ticketarea .toform a.button:link    {color: #fff; }
.section.ticketarea .toform a.button:visited {color: #fff; }
.section.ticketarea .toform a.button:hover   {color: #fff; opacity: 1; }
.section.ticketarea .toform a.button:active  {color: #fff; }

/* 通常チケット */
.section.about li .ticlet_eplus a {
	display: block;
	margin: 20px auto 8px;;
	padding: .4em;
	max-width: 500px;
	font-size: 2.1rem;
	background-color: #fff;
	/* webkit: Safari, Chrome用 , moz: Firefox用 , CSS3 */
	-webkit-border-radius: 50px;
	-moz-border-radius   : 50px;
	border-radius        : 50px;
-webkit-transition-duration: 0.3s;
-moz-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s;
}
.section.about li .ticlet_eplus a:link {}
.section.about li .ticlet_eplus a:visited {}
.section.about li .ticlet_eplus a:hover {color: #fff; background-color: #ff843d; opacity: 1;}
.section.about li .ticlet_eplus a:active {}




/* 注意 */
.section.ticketarea .attention {
	margin: 7% auto 10% ;
	max-width: 500px;

}
.section.ticketarea .attention h5 {
	font-size: 1.9rem;
	font-weight: 700;
}
.section.ticketarea .attention li {
	margin-bottom: .3em;
	max-width: 750px;
	color: #fff;
}
.section.ticketarea .attention li h6 {
	margin:.2em  0 .2em;
	font-size: 2rem;
	text-align: left;
}
.section.ticketarea .attention li p {
	padding-left: 1.5em;
	max-width: 750px;
	font-size: 1.5rem;
	line-height: 1.4;
	text-align: left;
}
.section.ticketarea .attention li strong {
	font-size: 1.3em;
	text-shadow : 0px 1px 0px rgba(0,0,0,0.5);
	border-bottom: 1px dotted #fff;
}
.section.ticketarea .attention li strong.strong2 {
	font-size: 1.3em;
}


/* ===============================
	ARTIST
================================== */
.section.artists {
	padding-top: 170px;
	background: url(../../images/chara-hurdle.png) no-repeat;
	background-position: 95% .2%;
	background-size: 140px auto;
}
/* cancel */
.section .cancel {
	margin: -1em auto 2em;
	padding: 1vh 2.5%;
	width: 96%;
	max-width: 800px;
/* 	border: 1px dotted #555; */


}
.section .cancel p {
	color: #555;
	font-size: 1.4rem;
	font-style: italic;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	text-align: center;
}
.section .cancel p strong {
/* 	color: #009944; */
	font-size: 1.2em;
	font-style: italic;
}
.section .cancel p span {font-style: italic;}


/* アーティスト表 */
.artists .list {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
/* 	align-items: stretch; */
}
.artists .list {
	padding: 0 2.5% 282px;
	background:url(../../images/chara-tsuriwa.png) no-repeat center bottom;
	background-size: 200px auto;
}


.artists .list .artist {
    position: relative;
	margin: 0 2% 4%;
    width: calc(50% - 4%);
    list-style: none;
	background: #009944;
}
.artists .list .artist.last.two {
	width: calc(100% - 4%);
}
.artists .list .artist.last.two figure {
	padding-top: 200px;
}

.artists .list .artist {
	position: relative;
    -moz-transition: -moz-transform 0.2s linear;
    -webkit-transition: -webkit-transform 0.2s linear;
    -o-transition: -o-transform 0.2s linear;
    -ms-transition: -ms-transform 0.2s linear;
    transition: transform 0.2s linear;
    background-color: aqua;
	background: #009944;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.artists .list.list2 .artist:hover {

	
	filter: 
		brightness( 105% ) /* 輝度 */
		contrast( 110% ) /* コントラスト */
		saturate( 105% ) ;/* 彩度 */

/*
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
*/
    opacity: 1;
/* 	横位置　縦位置　ぼかし　広がり　色 */
/*
	-webkit-box-shadow: 0 0 9px 0px rgba(0,0,0,0.3);
	-moz-box-shadow   : 0 0 9px 0px rgba(0,0,0,0.3);
	box-shadow        : 0 0 9px 0px rgba(0,0,0,0.3);
*/
}
.artists .list.list2 .artist:hover img {
	filter: 
		brightness( 114% ) /* 輝度 */
		contrast( 116% ) /* コントラスト */
		saturate( 120% ) /* 彩度 */	
}


.artists .list.list2 .artist.no:hover {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.artists .list .artist a:hover {
	opacity: 1;
}
.artists .list .artist a:hover .text {
	opacity: .9;
}


.artists .list .artist figure {
	position: relative;
	padding-top: 90%;
	background-image: url(../../images/chara-main.png);
	background-color: #fff;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.artists .list .artist figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 25%;
	max-width: 50px;
	height: auto;
	visibility: hidden;
}
.artists .list .artist .new {
	position: absolute;
	top: 0px;
	left: 10px;
	font-size: 2rem;
	z-index: 100;
}
.artists .list .artist .text {
	padding: .5em 1em 1em;
}
.artists .list .artist .text .nation {
	margin-bottom: .2em;
	color: #fff;
	font-size: .8em;
	text-align: center;
	line-height: 1.1;
	opacity: .7;
}
.artists .list .artist .text .nation:after {
	content: " 代表";
	margin: 0 .2em;
	font-size: .8em;
 	white-space:nowrap;
 	display: inline-block;	
}
.artists .list .artist .text .name {
	color: #fff;
	font-size: 2rem;
	font-family:'M PLUS Rounded 1c';
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
}
.artists .list .artist .text .name small { font-size: .7em;}
.artists .list .artist .text .genre {
	font-size: 1.4rem;
	font-family:'M PLUS Rounded 1c';
	line-height: 1.2;
	text-align: right;
}
.artists .list .artist .text .genre:before {
	content: "ジャンル";
	display: block;
	font-size: .8em;
	opacity: .6;
}
.artists .list .artist a:link .text .genre,
.artists .list .artist a:visited .text .genre { color: #333;}



/* ===============================
	深海・FOOD
================================== */

.section .innerframe {
	box-sizing: border-box;
	margin: 0;
	padding: 20px 20px 10px;
	max-width: 800px;
	color: #fff;
}

.section .innerframe h4.title {
	margin-bottom: 1em;
	font-size: 3rem;
	line-height: 1.2;
}
.section .innerframe h4.title small { font-size: 1.7rem;}


.section .innerframe .tott a {
	color: #fff;
	font-size: 2rem;
} 
.section .innerframe .tott a:hover {
	color: #E60012;
	opacity: 1;
}


/* -------------------------------
	めざせ！ベストランニンギスト　ランニング着こなし選手権
	------------------------------ */
.section .innerframe.running {
	margin-top: 80px;
	padding: 4em 20px 4em;
/*
	background: url(../../images/chara-volleyW.png) no-repeat right bottom;
	background-position:50% 97% ;
	background-size: 400px auto;
*/
	background-color: #FF9F07;
}
.section .innerframe.running h4 {
	color: #E60012;
	font-size: 3rem;
/* 	font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; */
}
.section .innerframe.running h5 strong {
	display: inline-block;
	margin: 0 .1em;
	color: #E60012;
	font-size: 1.2em;
}
.section .innerframe.running p.right {
	text-align: right;
}

/* -------------------------------
	深海
	------------------------------ */
.section .innerframe.shinkai {
/* 	margin-top: 80px; */
	padding: 4em 20px 200px;
	background: url(../../images/chara-tabletennisW.png) no-repeat right bottom;
	background-position: 100% 95%;
	background-size: 250px auto;
	background-color: #0081CC;
}
.section .innerframe.shinkai ul li {
	margin: 0 0 10px;
}
.section .innerframe.shinkai ul li h5 {
	display: inline;
	padding-right: .4em;
	color: #fff;
	font-size: 2.2rem;
	line-height: 1;
}
.section .innerframe.shinkai ul li h5 a { border-bottom: 1px dashed #fff;}
.section .innerframe.shinkai ul li h5 a:link    { color: #fff;}
.section .innerframe.shinkai ul li h5 a:visited { color: #fff;}
.section .innerframe.shinkai ul li h5 a:hover   { color: #fff;}
.section .innerframe.shinkai ul li h5 a:active  { color: #fff;}


.section .innerframe.shinkai ul li p {
	display: inline;
	color: #111;
	text-shadow : none;
	letter-spacing: 0.1em;
}
.section .innerframe.shinkai ul li p:before {
	content: " ... "
}


/* -------------------------------
	FOOD
	------------------------------ */

.section .innerframe.food {
	padding: 4em 20px 180px;
	background: url(../../images/chara-soccerW.png) no-repeat right bottom;
	background-position: 5% 97%;
	background-size: 130px auto;
	background-color: #FDD000;
}
.section .innerframe.food h4.title { font-size: 3.4rem;}
.section .innerframe.food ul li { margin-bottom: 1.2em;}
.section .innerframe.food ul li h5 {
	color: #fff;
	font-size: 1.8rem;
	line-height: 1.3;
}
.section .innerframe.food ul li h5 a:link,
.section .innerframe.food ul li h5 a:visited {
	color: #fff;
	border-bottom: 1px dashed #E60012;
}
.section .innerframe.food ul li h5 a:hover {
	color: #E60012;
	border-bottom: 1px dashed #E60012;
}
.section .innerframe.food ul li p {
	color: #000;
	font-size: 1.7rem;
	line-height: 1.2;
	text-align: center;
}
.section .innerframe.food ul li h5 strong {
	color: #E60012;
	font-size: 1.45em;
}
.section .innerframe.food p {
	font-family:'M PLUS Rounded 1c';
}



/* ==========================================
	 アーテストポップアップ(lity)
	 ========================================== */
body .lity {
	background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
	z-index: 19990;
	overflow-y: scroll;
}
.lity.lity-iframe .lity-container {
	margin: auto 4%;
	width: 92%;
	max-width: 700px;
}
.lity.lity-iframe .lity-container .lity-content {
/*
	-webkit-border-radius: 25px;
	-moz-border-radius   : 25px;
	border-radius        : 25px;
	overflow: hidden;
*/

}
.lity.lity-iframe .lity-container .lity-iframe-container {
	height: 74vh;
	min-height: 400px;
	max-height: 80vh;
/*
	-webkit-border-radius: 25px;
	-moz-border-radius   : 25px;
	border-radius        : 25px;
*/
}

.shinkai .lity.lity-iframe .lity-container .lity-iframe-container iframe {
    background-color: #0081CC;
}

.lity.lity-iframe .lity-container .lity-iframe-container iframe {
	background-color: #009944;/* #056CB9 */
}



.lity.lity-iframe .lity-container .lity-close {
	top: 89%;
	left: calc( 50% - 25px);
	width: 50px;
	height: 50px;
	background-color: #E60012;/*  */
	-webkit-border-radius: 50%; /* Safari, Chrome用 */
	-moz-border-radius   : 50%; /* Firefox用 */
	border-radius        : 50%; /* CSS3 */
}


/* end 	 アーテストポップアップ(lity) ====================== */







/*
.section.artists .gekidan {
	margin:5em 0 3em;
	padding: 2em;
	text-align: center;
	background-color:  #F9EEB6;
	-webkit-border-radius: 25px; /* Safari, Chrome用 */
	-moz-border-radius   : 25px; /* Firefox用 */
	border-radius        : 25px; /* CSS3 */
}
.section.artists .gekidan h4 {
	margin: 0 0 .3em;
	font-family: 'mplus-1m-bold';
	color: #F9EEB6;
	font-size: 4.2rem;
	font-weight: normal;
	text-shadow :
	1px 1px 1px rgba(0,0,0,1),
	-1px -1px 1px rgba(0,0,0,1),
	-1px 1px 1px rgba(0,0,0,1),
	1px -1px 1px rgba(0,0,0,1),
	2px 2px 1px rgba(0,0,0,1),
	3px 3px 1px rgba(0,0,0,1);
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #E50DB0;
}
.section.artists .gekidan h4 small {
	text-shadow: none;
	font-size: .4em;
	color: #111;
}
.section.artists .gekidan p {
	text-align: center;
	line-height: 1.3;
}
.section.artists .gekidan p.strong {
	display: inline-block;
	margin-bottom: 1em;
	padding: 0 .3em;
/* 	white-space: nowrap; */
	font-size: 1.3rem;
	font-style: italic;
	line-height: 1.4;
	color: #F9EEB6;
	font-size: 2.2rem;
	font-weight: 600;
	text-shadow:
	1px 1px 1px rgba(0,0,0,1),
	-1px -1px 1px rgba(0,0,0,1),
	-1px 1px 1px rgba(0,0,0,1),
	1px -1px 1px rgba(0,0,0,1),
	2px 2px 1px rgba(0,0,0,1),
	3px 3px 1px rgba(0,0,0,1);
}
.section.artists .gekidan p.strong strong {
	font-style: italic;
}
.section.artists .gekidan .blink {
	font-style: italic;
	font-size: .5em;
	vertical-align: text-top;
}
*/

/* タイムテーブル */
.section.timetable .swipe {
	margin-bottom: 1em;
	padding: 1em;
	font-size: 1.3rem;
	line-height: 1.1;
	background-color: #F9EEB6;
	-webkit-border-radius: 5px; /* Safari, Chrome用 */
	-moz-border-radius   : 5px; /* Firefox用 */
	border-radius        : 5px; /* CSS3 */
}
.section.timetable {
	padding: 1em 7% 7em;
	background: #E60012;
}
.section.timetable h1 { color: #fff;line-height: 1.1;}
.section.timetable p.pdf {
	margin: 0 auto 1em;
	text-align: center;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	line-height: 1.2;
}


.section.timetable p.pdf:hover {
}
.section.timetable p.pdf img {
	width: 70px;
	height: auto;
}
.section.timetable p.pdf:hover img {
	opacity: 1;
	filter:  drop-shadow(1px -1px 5px #fff); 
}
.section.timetable p.pdf a:hover {
	opacity: 1;
}
.section.timetable p.pdf a:link,
.section.timetable p.pdf a:visited {
	color: #fff;
}


.section.timetable p.swipe {
	margin: 10px 0;
	color: #000;
	font-size: 1.6rem;
	line-height: 1.1;
}
.timetable table {
	width: 100%;
	background-color: #fff;/* #F9EEB6 */
	-webkit-border-radius: 5px; /* Safari, Chrome用 */
	-moz-border-radius   : 5px; /* Firefox用 */
	border-radius        : 5px; /* CSS3 */


}
.timetable .scroll {
overflow: auto;　　　　/*tableをスクロールさせる*/
white-space: nowrap;　　/*tableのセル内にある文字の折り返しを禁止*/

}
.timetable .scroll::-webkit-scrollbar{　　/*tableにスクロールバーを追加*/
 height: 5px;
}
.timetable .scroll::-webkit-scrollbar-track{　　/*tableにスクロールバーを追加*/
 background: #F1F1F1;
}
.timetable .scroll::-webkit-scrollbar-thumb {　　/*tableにスクロールバーを追加*/
 background: #BCBCBC;
}
.timetable .scroll img {
	width: 100%;
	min-width: 800px;
	-webkit-box-shadow: 0 0px 4px rgba(0,0,0,0.4);
	-moz-box-shadow   : 0 0px 4px rgba(0,0,0,0.4);
	box-shadow        : 0 0px 4px rgba(0,0,0,0.4);
}


.timetable table th {
	padding: .6em .3em;
	color: #f9eeb6;
	font-size: 1.5rem;
	text-align: center;
	line-height: 1.1;
	text-shadow:
		1px 1px 1px rgba(0, 0, 0, 1),
		-1px -1px 1px rgba(0, 0, 0, 1),
		-1px 1px 1px rgba(0, 0, 0, 1),
		1px -1px 1px rgba(0, 0, 0, 1),
		2px 2px 1px rgba(0, 0, 0, 1),
		3px 3px 1px rgba(0, 0, 0, 1);
}
,
.timetable table td {
	text-align: center;
}

/* .timetable table th.time {width: 7%;} */
.timetable table th.main { background-color: #E94207;}
.timetable table td.main {
	text-align: left;
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;
	border-right: 3px solid #fff;/* #F9EEB6 */
	border-left: 3px solid #fff;/* #F9EEB6 */
	background-color: #E94207;
}
.timetable table th.face {background-color: #13B82C;}
.timetable table td.face {

	text-align: left;
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;

	border-right: 3px solid #fff;/* #F9EEB6 */
	border-left: 3px solid #fff;/* #F9EEB6 */
	background-color: #13B82C;
}
.timetable table th.food {background-color: #e29528;}
.timetable table td.food {
	text-align: left;
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;

	border-right: 3px solid #fff;/* #F9EEB6 */
	border-left: 3px solid #fff;/* #F9EEB6 */
	background-color: #e29528;
}


.timetable table th.second { background-color: #00A2E6;}
.timetable table td.second {
	text-align: left;
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;

	border-right: 3px solid #fff;/* #F9EEB6 */
	border-left: 3px solid #fff;/* #F9EEB6 */
	background-color: #00A2E6;
}
.timetable table td.second.title {
	background: linear-gradient( -185deg,#e29528,#e29528, #00A2E6, #00A2E6);
	border-left: none;
}


.timetable table td.gekidan {
	text-align: left;
	border-right: 3px solid #fff;/* #F9EEB6 */
	border-left: 3px solid #fff;/* #F9EEB6 */
	background-color: #FF9900;
}
.timetable table td.open {
	padding: .4em 0;
	vertical-align: middle;
	text-align: center;
	color: #f9eeb6;
	font-family: "mplus-1m-bold";
	font-size: 1.5rem;
	font-style: italic;
	font-weight: 500;
	line-height: 1.1;
	text-shadow:
		1px 1px 1px rgba(0, 0, 0, 1),
		-1px -1px 1px rgba(0, 0, 0, 1),
		-1px 1px 1px rgba(0, 0, 0, 1),
		1px -1px 1px rgba(0, 0, 0, 1),
		2px 2px 1px rgba(0, 0, 0, 1),
		3px 3px 1px rgba(0, 0, 0, 1);
}
.timetable table td.junbi {
	vertical-align: middle;
	text-align: center;
	background-color: #fff/* #C094E0 */
}
.timetable table td.uchiage {
	vertical-align: middle;
	text-align: center;
	color: #f9eeb6;
	font-family: "mplus-1m-bold";
	font-size: 1.7rem;
	font-style: italic;
	font-weight: 500;
	line-height: 1.1;
	background-color: #F442CB;
	text-shadow:
		1px 1px 1px rgba(0, 0, 0, 1),
		-1px -1px 1px rgba(0, 0, 0, 1),
		-1px 1px 1px rgba(0, 0, 0, 1),
		1px -1px 1px rgba(0, 0, 0, 1),
		2px 2px 1px rgba(0, 0, 0, 1),
		3px 3px 1px rgba(0, 0, 0, 1);
}



.timetable table td {
	position: relative;
	padding-right: .4em;
	font-size: 1.5rem;
	line-height: 1.1;
	text-align: center;
	border-bottom: 1px solid rgba(238,0,0,0.3);/* #F4D02E */
-webkit-border-radius: 5px; /* Safari, Chrome用 */
-moz-border-radius   : 5px; /* Firefox用 */
border-radius        : 5px; /* CSS3 */


}
.timetable table td p {
	font-size: 1.5rem;
	line-height: 1.1;
}
.timetable table td p.time {
	display: inline-block;
	white-space: nowrap;
	margin-bottom: .2em;
	padding: 0 .2em;
	color: #f9eeb6;
	font-size: 1.5rem;
	line-height: 1.1;
	background-color: #000;
}
.timetable table td h3 {
	padding-left: .4em;
	color: #f9eeb6;
	font-family: "mplus-1m-bold";
	font-size: 1.7rem;
/* 	font-style: italic; */
	font-weight: 500;
	line-height: 1.1;
	text-shadow:
		1px 1px 1px rgba(0, 0, 0, 1),
		-1px -1px 1px rgba(0, 0, 0, 1),
		-1px 1px 1px rgba(0, 0, 0, 1),
		1px -1px 1px rgba(0, 0, 0, 1),
		2px 2px 1px rgba(0, 0, 0, 1),
		3px 3px 1px rgba(0, 0, 0, 1);
}
.timetable table td h3 span {
/* 	font-style: italic; */
	font-weight: 500;
}
.timetable table td h3 a {
	color: #FFDD44;
/* 	font-style: italic; */
	font-weight: 500;
}

.timetable table td h3 a span {
/* 	font-style: italic; */
	font-weight: 500;
}

.timetable table td h3 a:hover { color: #FF5400;}
.timetable table td p.genre {
	margin-bottom: .4em;
/* 	color: #FFDD44; */
	color: #000;
	font-size: 1.25rem;
	text-align: right;
	line-height: 1;
	letter-spacing: -0.05em;
}

.timetable .shinkaiarea,
.timetable .foods {
	margin: 5em 4% 3em;
	padding: 2em;
	text-align: center;
	background-color: #fff;/* #F9EEB6 */
	-webkit-border-radius: 25px; /* Safari, Chrome用 */
	-moz-border-radius   : 25px; /* Firefox用 */
	border-radius        : 25px; /* CSS3 */
	-webkit-box-shadow: 0 0px 4px rgba(0,0,0,0.4);
	-moz-box-shadow   : 0 0px 4px rgba(0,0,0,0.4);
	box-shadow        : 0 0px 4px rgba(0,0,0,0.4);
}
.timetable .shinkaiarea h2,
.timetable .foods h4.titlefood {
  margin: 0 0 0.2em;
	color: #4193f2;
  font-size: 2.8rem;
	font-family: "mplus-1m-bold";
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-shadow:
  	1px 1px 1px rgba(0, 0, 0, 1),
  	-1px -1px 1px rgba(0, 0, 0, 1),
  	-1px 1px 1px rgba(0, 0, 0, 1),
  	1px -1px 1px rgba(0, 0, 0, 1),
  	2px 2px 1px rgba(0, 0, 0, 1),
  	3px 3px 1px rgba(0, 0, 0, 1);
}
.timetable .shinkaiarea h3,
.timetable .foods h3 {
	margin-top: 1.5em;
	padding: 0 0.3em;
/* 	color: #f9eeb6; */
	color: #FFDD44;
	font-size: 1.7rem;
/* 	font-style: italic; */
	font-weight: 600;
	line-height: 1.4;
	text-shadow:
	1px 1px 1px rgba(0, 0, 0, 1),
	-1px -1px 1px rgba(0, 0, 0, 1),
	-1px 1px 1px rgba(0, 0, 0, 1),
	1px -1px 1px rgba(0, 0, 0, 1),
	2px 2px 1px rgba(0, 0, 0, 1),
	3px 3px 1px rgba(0, 0, 0, 1);
}


.timetable .shinkaiarea h3 span,
.timetable .shinkaiarea h3 a,
.timetable .foods h3 span,
.timetable .foods h3 a {
	font-weight: 600;
}
.timetable .shinkaiarea p,
.timetable .foods p {
	text-align: center;
	font-size: 1.5rem;
}



.timetable .shinkaiarea p.time,
.timetable .foods p.time {
	font-size: 1.8rem;
	font-weight: bold;
}

/* foodのタイムテーブル */
.timetable .foods { background-color: #F1D03F;}
.timetable .foods h4.titlefood { color: #FF9900;}
.timetable .foods p.pretitle { margin-top: 1.5em;color: #000;}
.timetable .foods p.pretitle.top { margin-top: 0em;color: ;}
.timetable .foods h3 { margin-top: 0em;color: #FF9900;}
.timetable .foods h3 strong {
	font-size: 1.2em;
	color: #E60012;
}
.timetable .foods h5 {
	margin-top: 1em;
/* 	color: #E60012; */
	font-size: 2rem;
	font-weight: 600;
/* 	text-shadow: 0px 1px 0px rgba(0, 0, 0, .5); */
}
.timetable .foods h6 {
	margin-top: 1em;
	color: #046ee8;
	font-weight: 600;
	text-shadow:
	0px 1px 0px rgba(0, 0, 0, .3);
}

/*
.blink2 {
	color: #F9EEB6;
		font-style: italic;
	vertical-align: text-top;
    -webkit-animation:blink2 3.0s step-end infinite alternate;
    -moz-animation:blink2 3.0s step-end infinite alternate;
    animation:blink2 3.0s step-end infinite alternate;
}
*/


/* 点滅 */

/*
@-webkit-keyframes blink2{
    34%,66%,100% {opacity:0.7;}
    33%,67%,99% {color: #F9EEB6;}
}
@-moz-keyframes blink2{
    34%,66%,100% {opacity:0.7;}
    33%,67%,99% {color: #F9EEB6;}
}
@keyframes blink2{
    34%,66%,100% {opacity:0.7;}
    33%,67%,99% {color: #F9EEB6;}
}
*/



/* ===============================
	グッズ
================================== */
.section.goods { margin: 15px 20px;}
.section.goods ul {margin: 1.5em 0;}
.section.goods ul li {
	margin:0 auto 2em;
	padding:20px 15px;
	width: 100%;
	max-width: 600px;
	color: #fff;
	text-align: left;
	background-color: #E60012;
}
.section.goods ul li h2 {
	margin-bottom: .6em;
	color: #F1D03F;
	font-size: 2.8rem;
	line-height: 1.1;
}
.section.goods ul li figure img {
	margin: .5em auto;
}
.section.goods ul li figure.shadow { text-align: center;}
.section.goods ul li figure.shadow img {
	margin: 1em auto;
	width: 90%;
		-webkit-box-shadow: 0 2px 4px 4px rgba(0,0,0,0.1);
		-moz-box-shadow   : 0 2px 4px 4px rgba(0,0,0,0.1);
		box-shadow        : 0 2px 4px 4px rgba(0,0,0,0.1);
}
.section.goods ul li ul {
/* 	display: inline-block; */
	margin: 0 auto;
	width: 100%;
/* 	max-width: 300px;  */
	text-align: center;
}
.section.goods ul li ul li {
	margin: 0;
	padding: 0;
	width: 100%;
	text-align: center;
}

.section.goods ul li ul li strong { font-size: 1.4em;}
.section.goods ul li ul li small { font-size: .8em;}


.section.goods ul li.comingsoon {
}



/* ===============================
	アクセス
================================== */
.section.access {
	padding-top: 230px;
	background: url(../../images/chara-marathon.png) no-repeat center top;
	background-position: 20% .1%;
	background-size: 180px auto;
}
.section.access h3 {
	color: #000;
	font-size: 2em;
	letter-spacing: 0.05em;
	font-style: italic;
}
.section.access address {
	color: #E60012;
	font-size: 1.8em;
	font-family:'M PLUS Rounded 1c';
	letter-spacing: 0.1em;
}
.section.access p {
	margin: 0 auto 2em;
	text-align: center;
	max-width: 750px;
}
.section.access .map {
	margin-bottom: 30px;
}

/* ===============================
	F.A.Q
================================== */

.section.faq {
	margin: 0 auto;
	padding-top: 145px;
	max-width: 900px;
	background: url(../../images/chara-swim.png) no-repeat center top;
	background-position: 80% .25%;
	background-size: 240px auto;
}
.section.faq h3 {
	margin: 1.3em 0 .3em;
	font-family:'M PLUS Rounded 1c';
	color: #E60012;
	font-size: 2.4rem;
	font-weight: bold;
/* 	text-shadow: 0px 1px 0px rgba(0,0,0,1); */
	text-align: left;
	letter-spacing: 0.1em;
	line-height: 1.2;
}
.section p {
	font-family:'M PLUS Rounded 1c';
	text-align: left;
	letter-spacing: 0.05em;
}


/* ===============================
	STAFF
================================== */
.section.staff {
	padding-top: 250px;
	margin-bottom: 0;
	padding-bottom: 0;
	background: url(../../images/chara-judo.png) no-repeat center top;
	background-size: 220px auto;
	
}
.section.staff h5.small {
	margin-top: 2em;
	color: #000;
}
.section.staff h6 {
	margin-bottom: 0;
	font-size: 2.3rem;
	font-weight: 600;
}

.section.staff li small.nonowrap {
	white-space: normal;
}
.section.staff li small.goods {
	display: inline-block;
	line-height: 1.4;
}
.section.staff li .sns {
	margin-top: 50px;
	text-align: center;
}
.section.staff li .sns li {
	display: -moz-inline-box;/* Firefox2用 */
	display: inline-block;
	/display: inline;
	/zoom: 1;/* IE7以下用 */
	vertical-align: top;
	margin: 0 2%;
	width: 80px;
	line-height: 1;
	text-align: center;
}
.section.staff li .sns li img {
	max-width: 65px;
	height: auto;

}



/* 過去フェスバナー */
header.text {
	opacity: 0;
	animation: textfly 4s ease-in-out 1 forwards;
}
@keyframes textfly {
    0% { opacity: 0; }
   40% { opacity: 0; }
  100% { opacity: 1; }
}
h1.pre {
	animation: horizontal 2s ease-in-out infinite alternate;
}
h1.pre img {
	width: auto;
	height: 96vh;
	animation: vertical 1.7s ease-in-out infinite alternate;
}

@keyframes horizontal {
    0% { transform:translateX( -3px); }
  100% { transform:translateX(  0px); }
}
@keyframes vertical {
    0% { transform:translateY(-10px); }
  100% { transform:translateY(  0px); }
}

/* 過去フェスバナー */
.past a {
	display: inline-block;
	vertical-align: middle;
	margin:.5em .7em;
}

@media screen and (min-width:480px){ /*大きいスマホ*/
.section h2.title { margin-top: 3em;}

.section.about div.goods h5 {
	left: 20px;
	padding: 0 10px;
}

/* サルフェスとは */
.section.about .rocklymplic {
	margin-bottom: 6%;
	padding-top: 0;
	background-image: none;
}
.section.about .rocklymplic img {
	visibility: visible;
	width: 100%;
	max-width: 1000px;
}
/* 開催日時と場所 */
.section.about .dateplace strong { font-size: 5.5em;}
.section.about .dateplace strong.strong2 { font-size: 3.5em;}



}@media screen and (min-width:768px){ /*タブレット*/

h1.pre img {
	height: 110vmin;
}

h1,h2,h3,h4,h5,h6 {
	margin-bottom:0.4em;
	font-size:1.6rem;
 	font-weight: bold;
}
p { font-size: 1.7rem; line-height: 1.6;}
small { font-size: 0.85em;}
ul li { font-size: 1.5rem; line-height: 1.6;}
dl dt { font-size: 1.5rem; line-height: 1.6;}
dl dd { font-size: 1.5rem; line-height: 1.6;}

.section h1 {margin: 1.5em 0 1em;}
.section h2.title { margin-top: 4em;}


/* ===============================
	さるフェスとは
================================== */
.section.about {
	background-position: 20% 100%;
	background-size: 250px auto;
}
.section.ticketarea .toform { margin: 3em 15% ;}


/* ===============================
	ARTIST
================================== */
.artists .list .artist {
    margin: 0 .5em 1em;
    width: calc(50% - 1em);
}
.artists .list .artist figure { padding-top: 65%;}
.artists .list .artist .text .genre:before {
	display: inline-block;
	opacity: .5;
	padding-right: .2em;
}

/* タイムテーブル */
.section.timetable .swipe {
	display: none;
	visibility: hidden;
}
/* .section.timetable {padding: 1em 2.7em 7em;} */
.timetable table td p.genre {
	position: absolute;
	right: 5px;
	bottom: 0px;
}
.timetable table td p.genre.three {
	position: relative;
}


/* グッズ */
.section.goods p {text-align: center;}
.section.goods ul {margin-top: 4em;}
.section.goods ul li h2 { text-align: center;}
.section.goods ul li p {text-align: center;}
.section.goods ul li p.pictgood { text-align: center;}


/* ===============================
	深海・FOOD
================================== */
.section .innerframe { margin: 7% auto ;}
.section .innerframe.running,
.section .innerframe.shinkai,
.section .innerframe.food {
	padding: 6% 7% 15%;
	background-size: 200px auto;
	-webkit-border-radius: 25px;
	-moz-border-radius   : 25px;
	border-radius        : 25px;
}
.section .innerframe.shinkai {
	background-size: 350px auto;
}
.section .innerframe.food {
	background-position: 10% 90%;
}
.section .innerframe.running {
	padding-bottom: 6%;
}



/* ===============================
	グッズ
================================== */
.section.goods ul li { padding:3%;}

/* ==========================================
	 FOOTER
	 ========================================== */
#footer { padding: 35% 25% 30%;}


/* ==========================================
	 メニューボタン
   ========================================== */
#btn-menu {
  width: 110px;
  height: 110px;
}
#btn-menu:hover {
  width: 130px;
  height: 130px;
}
#btn-menu img {  opacity: 0.9;transition: all .1s ease-in;}
#btn-menu img:hover {  opacity: 1;}



}@media screen and (min-width:1024px){



/* モーダルメニュー　========== */
.sp-menu-list a { font-size: 3.3rem;}

/* end モーダルメニュー　========== */

p { font-size: 1.6rem; line-height: 1.6;}
/* さるフェスとは */
.section.about {}

/* ===============================
	ARTIST
================================== */
.section.artists {
	background-position: 75% 0;
	background-size: 200px auto;
}
.artists .list .artist,
.artists .list .artist.last {
	margin: 0 1% 2%;
    width: calc(33.333% - 2%);
}
.artists .list .artist.last figure {
	padding-top: 65%;
}


.section.artists .gekidan {
	background: url(../images/bg-03.png) #F9EEB6 no-repeat center bottom;
background-position-x: 10px;
}
.section.artists .apology {margin: 3em 17%;}

/* タイムテーブル */
/* .section.timetable {padding: 1em 3.7em 7em;} */

/* ===============================
	アクセス
================================== */
.section.access {
	margin-top: -50px;
	padding-top: 100px;
	background-position: 25% 0%;
	background-size: 220px auto;
}
/* ===============================
	F.A.Q
================================== */
.section.faq {
	padding-top: 40px;
	background-position: 100% 0%;
	background-size: 300px auto;
}
/* ===============================
	スタッフ
================================== */
.section.staff {
	padding-top: 300px;
	background-size: 270px auto;
}



}@media screen and (min-width:1200px){

.section.about ul.reserve  {
	margin: 0 auto;
	max-width: 590px;
}





}@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
  #container #body {
  background:none;
		-webkit-box-shadow: none; /* webkit:Safari  */
		-moz-box-shadow   : none; /* moz:firefox */
		box-shadow        : none;
  }
}


}
