@charset "utf-8";
/* CSS Document */
body#other_wrap{
	background-repeat: repeat;
	padding-bottom: 100px;
}

h1#other{
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	background-color: #093;
	padding: 10px;
	margin-bottom: 35px;
	border-radius: 5px;        /* CSS3草案 */
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
	-moz-border-radius: 5px;   /* Firefox用 */
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	letter-spacing: 5px;
	text-align: center;
	margin-top: 35px;
	color: #FFF;
	font-size: 18px;
}



ul#foot_nav{
	width: 955px;
	height: 45px;
	margin-top: 45px;
	margin-bottom: 0px;
	color: #333;
	margin-right: 45px;
	margin-left: auto;
}
ul#foot_nav li{
	float: right;
	width: auto;
	display: block;
	margin-right: 25px;
	font-size: 0.8em;
	margin-top: 15px;
	margin-bottom: 0px;
	color: #333;
}
ul#foot_nav li a{
	text-decoration: none;
	color: #333;
}
ul#foot_nav li a:hover{
	background-color: #FFF;
	font-size: 1em;
	color: #F00;
}
/*■■■■■■■■■■■■■■■■■■レビュー*/
.revuwrap{
	width: 90%;
	margin-right: auto;
	margin-left: 5%;
	height: auto;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #F0F0F0;
	margin-bottom: 2%;
	float: left;
	padding-bottom: 2%;
}
.revuwrap img{
	vertical-align: middle;
	margin-right: 1%;
}
.revuwrap {}
.revu_tit{
	font-size: 1em !important;
	color: #F30;
	font-weight: bold;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #F90;
	margin-bottom: 1%;
	float: left;
	width: 100%;
}
.revu_name{
	font-size: 0.8em !important;
	color: #000;
	font-weight: normal;
	float: right;
	width: 100%;
	text-align: right;
}

.revu_star{
	color: #F90;
	font-size: 1.5em;
	float: left;
	width: 100%;
}
.revuwrap p{
	font-size: 0.8em;
	line-height: normal;
	float: left;
	width: 100%;
}




/*■■■■■■■■■■■■■■■■■■popup*/

#content_popup{
	width: 750px;
	margin-right: auto;
	margin-left: auto;
	height: auto;
	background-repeat: no-repeat;
	background-position: center top;
	margin-top: 30px;
	margin-bottom: 30px;
	background-color: #FFF;
	padding-bottom: 60px;
	padding-top: 30px;
	border: 1px outset #CCC;
	
}
#content_popup p.pagetitle{
	text-align: center;
	width: 80%;
	font-size: 34px;
	margin-top: 35px;
	border-top-width: 3px;
	border-bottom-width: 3px;
	border-top-style: double;
	border-bottom-style: double;
	border-top-color: #666;
	border-bottom-color: #666;
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	height: auto;
}

#content_popup ul{
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	font-size: 14px;
	text-align: left;
	margin-top: 35px;
	margin-bottom: 35px;
}

#content_popup ul li ul.item{}

#content_popup ul li ul.item li{
	list-style-type: decimal;
	font-size: 13px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
}

#content_popup p{
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	font-size: 14px;
	
}
.red{
	text-align: left;
	width: 80%;
	color: #F00;
	font-weight: bold;
}

/*■■■■■■■■■■■■■■■■■■吹き出し*/

#tooltip{
	margin-top: 120px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 30px;
}
#tooltip li{
	width:230px;
	height:auto;
	display:block;
	float:right;
	position:relative;
	margin-right: 78px;
	font-weight: bold;
	margin-top: 20px;
}

#tooltip li > div {
	width: 380px;
	min-height: 20px;
	position: absolute;
	top:-120px;
	padding: 5px;
	visibility:hidden;
	opacity: 0;
	background: #ffffff;
	font-size:1em;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 0 8px gray;
	-webkit-box-shadow: 0 0 8px gray;
    filter: progid:DXImageTransform.Microsoft.Shadow(color='#272229', Direction=135, Strength=3); 
	box-shadow: 0 0 8px gray;
	　-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-left: -95px;
	
	border: 1px solid #999;
	
	
}
#tooltip li > div:after {
	content:"\25B8";
	display:block;
	font-size:2em;
	height:0;
	line-height:0;
	position:absolute;
	color:#fff;
	bottom:-3px;
	left:1px;
	text-align:center;
	-moz-transform:rotate(90deg);
	-webkit-transform:rotate(90deg);
	width:100%;
	text-shadow: 3px 0 2px #ccc;
	
}
#tooltip li:hover > div {
    visibility:visible;
    opacity: 1;
      top:-120px;

    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out; 
    -o-transition: all 0.5s ease-in-out; 
    transition: all 0.5s ease-in-out;
}
/*■■■■■■■■■■■■■■■■■■特定商取引に関する法律に基づく表記 他*/

table.kisoku{
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	font-size: 12px; /* セルの枠線（太さ・色・スタイル） */
	font-weight: normal;
	background-color: #666;
}


table.kisoku th{
	background-color: #FFFDDF;
	font-weight: normal;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.kisoku tr td {
	padding: 15px;
	background-color: #FFFEF7;
	margin: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	line-height: 21px;
	
}


p.other_text{
	height: auto;
	width: 770px;
	margin-right: auto;
	margin-left: auto;
	font-size: 12px;
	color: #333;
	line-height: 25px;
	background-color: #FFF;
	padding: 15px;
	border: 1px solid #999;
}#other_wrap .other_text .title {
	color: #666;
	font-weight: bold;
	width: 770px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999;
	margin-bottom: 10px;
	float: left;
	padding-bottom: 5px;
}
