@charset "UTF-8";
/*
	■style_base2018.css 
		TOP & Informarion
*/
 
/*
	リセット(ress.css) 
		minified v1.2.2
*/

/*
The MIT License (MIT)

Copyright (c) 2016 [Filipe Linhares](http://filipelinhares.com)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

/*!
 * ress.css ・ v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */html{box-sizing:border-box;overflow-y:scroll;-webkit-text-size-adjust:100%}*,:after,:before{background-repeat:no-repeat;box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{padding:0;margin:0}audio:not([controls]){display:none;height:0}hr{overflow:visible}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}summary{display:list-item}small{font-size:80%}[hidden],template{display:none}abbr[title]{border-bottom:1px dotted;text-decoration:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}input{border-radius:0}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer}[disabled]{cursor:default}[type=number]{width:auto}[type=search]{-webkit-appearance:textfield}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:0;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{outline:1px dotted ButtonText}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,select{text-transform:none}button,input,select,textarea{background-color:transparent;border-style:none;color:inherit}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;max-width:100%;white-space:normal}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}img{border-style:none}progress{vertical-align:baseline}svg:not(:root){overflow:hidden}audio,canvas,progress,video{display:inline-block}@media screen{[hidden~=screen]{display:inherit}[hidden~=screen]:not(:active):not(:focus):not(:target){position:absolute!important;clip:rect(0 0 0 0)!important}}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled]{cursor:default}::-moz-selection{background-color:#b3d4fc;color:#000;text-shadow:none}::selection{background-color:#b3d4fc;color:#000;text-shadow:none}
 
/*
	共通 
*/
	 
html 
{
	font: 62.5%/1.6 sans-serif;
	word-spacing: normal;
}
/*
	letter-spacing: .1rem;
line-heightも必要なところでやった方が良い。
*/
 
body 
{
	font-size: 1.6rem;

	font-family:
		'Hiragino Kaku Gothic Pro',
		'ヒラギノ角ゴ Pro W3',
		'Meiryo',
		'メイリオ',
		'Osaka',
		'MS PGothic',
		'ＭＳ Ｐゴシック',
		sans-serif;

	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
}
 
/*
	p 
*/

/* ノベルモード字下げ */
.novel p,
p.novel
{
	text-indent: 1em;
}
 
/*
	ul, ol, li 
*/
	 
li 
{
	margin: 0;
	padding: 0;
}
 
ul 
{
	list-style: none;
	padding-left: 0;
	display: table;
}

/*
ul li:after
{
	content: "";
	display: block;
	margin-bottom: 0.5em;
}

ul li
{
	display: table-row;
}
*/
 
ul.mark li::before 
{
	display: table-cell;
	padding-right: 0.2em;
}

ul.mark li
{
	display: table-row;
	margin-bottom: 0.5em;
}

/* symbols */
ul.mark.circle li::before { content: '●'; }
ul.mark.square li::before { content: '■'; }
ul.mark.attention li { content: '※'; color: #FC5672; }
ul.mark.attention li::before { content: '※'; color: #FC5672; font-weight: bold; }
ul.mark.bullet li::before { content: '\26AB'; }

ul.mark.square li::before { content: '■'; }
ul.mark.square ul li::before { font-size: 1.4rem; }
ul.mark.square ul ul li::before { font-size: 1.2rem; }
ul.mark.square ul ul ul li::before { font-size: 1.0rem; }
 
/* インラインリスト */ 

ul.inline
{
	overflow: hidden;
}

ul.inline > li
{
	float: left;
	display: block;
}

/* カンマ区切り */
ul.inline.comma > li:not(:last-child)::after
{
	content: ',';
	margin-right: .5rem;
}

/* スラッシュ区切り */
ul.inline.slash > li:not(:last-child)::after
{
	content: '/';
}
ul.inline.slash.margin > li:not(:last-child)::after
{
	margin-right: .5rem;
	margin-left: .5rem;
}


/* 不等号区切り */
ul.inline.lt > li:not(:last-child)::after
{
	content: '>';
	margin-right: .5rem;
	margin-left: .5rem;
}

ul.inline.gt > li:not(:last-child)::after
{
	content: '<';
	margin-right: .5rem;
	margin-left: .5rem;
}
 
/* ol - JSで対応すること */ 
/*

○面倒臭いが一番マシな方法。
list-style-position: inside;でブラウザの機能にリストナンバーのインデントを任せる。
リスト入れ子のインデントは指定しておき、JS有効であれば打ち消す。
jQueryでliの中身をまるごとdiv.wrapperに包む。
*/

/*
ol
{
	margin: 0;
	padding: 0;
}

ol > li
{
	list-style-position: inside;
}


ol > li > .wrapper
{
	display: inline-block;
	vertical-align: top;
}
*/




ol
{
  list-style: none;
  padding-left: 0;
  display: table;
}

ol li:after
{
  content: "";
  display: block;
  margin-bottom: 0.5em;
}

ol li
{
  display: table-row;
  counter-increment: table-ol;
}

ol li:before
{
  content: counter(table-ol) ".";
  display: table-cell;
  padding-right: 0.4em;
  text-align: right;
}

ol li
{
  margin-bottom: 0.5em;
}
  
/*
	dl, dt, dd 
*/

dl
{
}

dt
{
}

dd
{
	margin: 0 0 0 1em;
}


dl.table
{
	line-height: 1.4;
}

dl.table > dt
{
	float: left;
	margin: 0;
	padding: 0;
	padding: .3em .5em;
	white-space: normal;
}

dl.table > dd
{
	margin: 0;
	padding: .3em .5em;
	white-space: normal;
}

/* .half */
dl.table.half > dt
{
	width: 100%;
}

dl.table.half > dd
{
	width: 100%;
}

@media screen and (min-width: 640px) {

	dl.table.half > dt
	{
		width: 50%;
	}

	dl.table.half > dd
	{
		width: 50%;
		margin: 0 0 0 50%;
	}

}

/*
dl.table.header-color > dt
{
	background: #EEE;
}
*/
	 
/* theme */ 

dl.theme
{

}

dl.theme dt
{
	margin: 0 .5em;
	border-style: none solid solid none;
	border-width: 0 2px 1px 0;
	border-color: #006;
	padding: .1em .3em;
	text-align: right;
}

dl.theme dd
{
	margin: 0 .5em 1em;
	border-style: none none none solid;
	border-width: 1px 3px;
	border-color: #006;
	padding: .3em .5em;
	line-height: 1.6;
}
  
/* margin, size */ 

p + p,
p + ul,
p + ol,
p + dl
{
	margin-top: 2rem;
}
	 
/* 
	.aspect
*/

.aspect
{
	position: relative;
	width: 100%;
}

.aspect:before {
    content: '';
    display: block;
}

.aspect > *
{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.aspect > iframe
{
	width: 100%;
    height: 100%;
}

.aspect.w1h1		{ padding-top: 100%; }
.aspect.w3h2		{ padding-top: 66.6666666%; }
.aspect.w4h3		{ padding-top: 75%; }
.aspect.w16h10		{ padding-top: 62.5%; }
.aspect.w16h9		{ padding-top: 56.25%; }
  
/*
	clearfix 
*/

.clearfix::after
{
	content: "";
	display: block;
	clear: both;
}
 
/*
	without style 
*/

.wostyle
{
	display: none;
}
  
/*
	メイン 
*/

html
{
	background-color: #FFF;
	color: #524E4D;
}

body
{
	margin: 0 auto;
	/*line-height: 1.8;*/
}

a[href]
{
	/* リンクの折り返しを防ぐ */
	/*white-space: normal;*/
	/* theme */
	padding: 0;
	color: #C00;
}

a[href]:visited
{

}

a[href]:hover
{
	/* theme */
	color: #D00;
	background-color: #FFE559;
}

a[href]:focus
{

}

a[href]:active
{

}

/* image display fixed */
img
{
	border: 0;
	vertical-align: middle;
}
	 
/*
	サイトグループ ナビゲーション 
*/

#group-navigation
{
	position: relative;
	overflow: hidden;
	margin: 0;
	border-bottom: solid 1px #000;
	padding: 0 1em 0 36px;
	background: #444 url('group_navigation.png') left center no-repeat;
	color: #FFF;
	box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.3);
	font-size: small;
	font-family:
		'Hiragino Kaku Gothic Pro',
		'ヒラギノ角ゴ Pro W3',
		'Meiryo',
		'メイリオ',
		'Osaka',
		'MS PGothic',
		'ＭＳ Ｐゴシック',
		sans-serif;
	z-index: 10000;
}

#group-navigation ul
{
	overflow: hidden;
	margin: 0;
	padding: 0 0 1px;
}

#group-navigation li
{
	display: block;
	float: left;
}

#group-navigation li + li
{
	margin-left: 5px;
}

#group-navigation a
{
	display: block;
	line-height: 1;
	border-bottom: solid 3px #666 !important;
	padding: 5px 15px 2px;
	vertical-align: bottom;
	text-decoration: none !important;
	color: #FFF !important;
}

#group-navigation a:hover
{
	background: #444 !important;
	color: #F00 !important;
}

#group-navigation .current a
{
	color: #FFF;
	border-bottom: solid 3px #F8B300 !important;
}
 
/*
	サイトタイトル 
*/

body > header
{
	position: relative;
	margin: 0 auto;
	padding: 10px 10px 0;
	background: #F8B300;
}

#site-title
{
	clear: both;
	display: flex;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
}

#site-title-string
{
	display: block;
	float: left;
	width: auto;
	margin: 0 auto 0 0;
	text-decoration: none;
	color: #C00;
}

#site-title-string:hover
{
	background: transparent !important;
	color: #C00;
}

#site-title-string > h1,
#site-title-string > span
{
	height: 20px;
	line-height: 20px;
	padding: 0 0 0 32px;
	background: transparent url('images/logo_circus.png') top left no-repeat;
	font-size: 1.6rem;
	font-weight: bold;
}

	 
@media screen and (max-width: 524px) 
{

	#site-title
	{
		flex-flow: column;
	}

}
  
/*
	メニュー 
*/

#site_menu
{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	clear: both;
	width: 100%;
	max-width: 1000px;
	height: 28px;
	margin: 0 auto 0;
	border: 0;
	padding: 0 0 2px;
	list-style-type: none;
}

#site_menu ul
{
	margin: 0;
	padding: 0;
	overflow: hidden;
	list-style-type: none;
}

#site_menu li
{
	display: inline-block;
	float: left;
	width: auto;
	margin: 0;
	padding: 0;
}

#site_menu a
{
	box-sizing: border-box; /* IE8↑ Webkit537.4↑ Op12↑*/
	-moz-box-sizing: border-box; /* Fx4↑ */
	display: block;
	width: 200px;
	height: 28px;
	line-height: 28px;
	margin: 0;
	/** /
	border-left: solid 1px #FFCF00;
	border-right: solid 1px #D8A300;
	/**/
	padding: 0;
	background: #F8B300 top center no-repeat;
	/*
	background: -moz-linear-gradient(#F8B300, #F8B300 35%, #FDD262);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0, #F8B300),color-stop(.35, #F8B300),color-stop(1, #FDD262));
	*/
	color: #FFF;
	text-align: center;
	text-decoration: none !important;
	text-shadow: -1px -1px 0 #985300;
	font-size: large;
	font-weight: bold;
}

#site_menu a:hover
{
	background-color: #FC8F0F;
	background-position: bottom center;
	/*
	background-color: -moz-linear-gradient(#FC8F0F, #FDD262);
	background-color: -webkit-gradient(linear,left top,left bottom,color-stop(1, #FC8F0F),color-stop(0, #FDD262));
	*/
}

#site_menu li:first-child a
{
	width: 200px;
	border-left: none !important;
}

#site_menu li:last-child a
{
	border-right: none !important;
}



#site_menu .news
{
	background-image: url('images/menu2/menu_news.png');
}
#site_menu .product
{
	background-image: url('images/menu2/menu_products.png');
}
#site_menu .event
{
	background-image: url('images/menu2/menu_event.png');
}
#site_menu .goods
{
	background-image: url('images/menu2/menu_goods.png');
}
#site_menu .support
{
	background-image: url('images/menu2/menu_support.png');
}


 
/*
	新メニュー 
*/

#site-menu
{
	clear: both;
	width: 100%;
	max-width: 1000px;
	height: auto;
	margin: 0 auto;
	padding: 0;
	list-style-type: none;
}

#site-menu ul
{
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#site-menu li
{
	display: block;
	width: calc(100% / 6 - .3rem);
	margin: 0;
	padding: 0;
}

#site-menu li:first-child
{
	width: calc(100% / 6) !important;
}

#site-menu li + li
{
	padding-left: .3rem;
	background: url('images/menu3/menu_border.png') left center no-repeat;
	background-size: contain;
}

#site-menu a
{
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 15% 0 0;
	background-position: top center;
	background-size: cover;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	font-size: large;
	font-weight: bold;
}

#site-menu a:hover
{
	background-color: transparent;
	background-position: bottom center;
}

#site-menu .news
{
	background-image: url('images/menu3/menu_news.png');
}
#site-menu .product
{
	background-image: url('images/menu3/menu_products.png');
}
#site-menu .event
{
	background-image: url('images/menu3/menu_event.png');
}
#site-menu .goods
{
	background-image: url('images/menu3/menu_goods.png');
}
#site-menu .netorder
{
	background-image: url('images/menu3/menu_netorder.png');
	background-position: top center !important;
}
#site-menu .yaneura
{
	background-image: url('images/menu3/menu_yaneura.png');
}
#site-menu .support
{
	background-image: url('images/menu3/menu_support.png');
}


	 
@media screen and (max-width: 824px) and (min-width: 525px) 
{

	#site-menu ul
	{
		flex-flow: wrap;
		margin-top: -1rem;
		padding: .5rem 0;
	}

	#site-menu li
	{
		display: block;
		width: calc(100% / 3 - .3rem);
		margin: 1rem 0 0;
		padding: 0;
	}

	#site-menu li:nth-child(3n + 1)
	{
		width: calc(100% / 3) !important;
		padding-left: 0;
		background: none;
	}

}

@media screen and (max-width: 524px)
{

	#site-menu ul
	{
		flex-flow: wrap;
		margin-top: -1rem;
		padding: .5rem 0;
	}

	#site-menu li
	{
		display: block;
		width: calc(100% / 2 - .3rem);
		margin: 1rem 0 0;
		padding: 0;
	}

	#site-menu li:nth-child(2n + 1)
	{
		width: calc(100% / 2) !important;
		padding-left: 0;
		background: none;
	}

}
 	 
/*
	フッター 
*/

	footer
	{
		display: flex;
		flex-flow: column;
		align-items: center;
		min-height: 20px;
		
		margin: 0 auto;
		padding: 0 1rem;
		
		background: #F8B300;
		font-size: .8rem;
	}
		
		footer .menu
		{
			margin: 0 auto 1em;
			text-align: center;
			list-style-type: none;
			font-size: small;
		}
			
			footer .menu li
			{
				display: inline-block;
			}
			
			footer .menu li:after
			{
				content: "｜";
			}
			
			footer .menu li:last-child:after
			{
				content: "";
			}
			
		footer .attention
		{
			margin: 0;
			line-height: 1.2;
			text-align: center;
			font-size: small;
		}
			
			footer .attention p
			{
				margin: 0 0 .2rem;
				padding: 0;
			}
			
		footer .copyrights
		{
			margin: 1em 0;
			text-align: center;
			font-size: small;
		}
  
#infopage-contents img
{
	width: 100%;
	height: auto;
}
