@charset "utf-8";

a {
	transition: inherit;
}
/******************** index ********************/
p#warning {
	color: #000;
	font-size: 18px;
	letter-spacing: 0.05em;
	font-family: "M PLUS Rounded 1c";
	margin-bottom: 25px;
	background: url("/wp-content/uploads/2025/06/bar.png") repeat-x;
	padding: 40px 0 0;
}
div.enter {
	width: 740px;
	margin: 20px auto 0;
	display: flex;
	justify-content: space-between;
}
p.enter a, p.leave a {
	display: block;
	background: url(/wp-content/uploads/2025/06/enter.png) no-repeat top;
	width: 350px;
	height: 100px;
	text-indent: -10000px;
	overflow: hidden;
}
p.enter a:hover {
	background: url(/wp-content/uploads/2025/06/enter.png) no-repeat bottom;
}
p.leave a {
	background: url(/wp-content/uploads/2025/06/leave.png) no-repeat top;
}
p.leave a:hover {
	background: url(/wp-content/uploads/2025/06/leave.png) no-repeat bottom;
}
.right{
	color:#fff;
}
/********************/
p.concept {
	width: 100%;
	background: #333;
	color: #ff0;
	margin: 40px auto 40px;
	padding: 20px 0;
	font-family: "M PLUS Rounded 1c";
	font-weight: bold;
}
/********************/
div.links {
	width: 1200px;
	margin: 60px auto;
}
div.links a {
	margin: 5px;
}
div.links_text {
	padding: 10px 0 0;
}
div.links_text a {
	margin: 2px 5px 2px 0;
	white-space: nowrap;
}
/********************/
div.banner {
	width: 100%;
	background: #333;
	margin: 40px auto 0;
	padding: 15px;
	text-align: left;
	border: 1px solid #444;
	display: flex;
	justify-content: center;
}
div.banner div.left {
	width: 500px;
	background: #000;
	color:#fff;
	padding: 15px 10px;
}
div.banner div.right {
	margin: 0 0 0 20px;
	text-align: left;
}
div.banner dl#b88 {
	float: left;
	width: 108px;
}
div.banner dl#b200 {
	float: left;
	width: 210px;
}
div.banner dl#b468 {
	clear: left;
	width: 468px;
}
div.banner dt {
	margin-bottom: 2px;
	background: url("/wp-content/uploads/2025/06/icon_siren.png") no-repeat left;
	padding-left: 30px;
	color: #aaa;
	font-weight: bold;
}
div.banner dd {
	margin-bottom: -2px;
}


/* よく使いそうなCSS3
----------------------------------------------------*/
#selectors {
/* 角丸 */
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

/* 角丸個別 */
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topright: 15px;
	border-top-right-radius: 15px;

/* ボックスに影 */
	-webkit-box-shadow: 1px 1px 3px #999;
	-moz-box-shadow: 1px 1px 3px #999;
	box-shadow: 1px 1px 3px #999;

/* テキストに影 */
	text-shadow: 1px 1px 0px #999;

/* グラデーション */
	background: -moz-linear-gradient(top, #f5f5f5, #fff);　/* Firefox用 */  
	background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#066));　/* Safari,Google Chrome用 */  

/* リスト区切り文字 */
:after {
    content: "";
    margin : 0 1.5em;
}
:last-child:after {
    content : none;
}



/********************
* html  IE6
*:first-child+html  IE7
head~/* */body  IE8/*
html>body  Firefox
body:last-child  Opera
html:not([lang*=""])  Firefox
html:not(:only-child:only-child)  Safari
********************/