@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size:14px;
	font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height:1.6;
	color:#333;
	background:#fff;
}

.inner {
	position:relative;
	width:1000px;
	margin:0 auto;
}

header {
	box-sizing:border-box;
	position:relative;
	width:100%;
	background:#fff;
}

nav {
	width:100%;
	background:#fff;
	box-shadow:0 1px 2px #d0d8dc;
	?zoom:1;
}
nav:after {
   content:'';
   display:block;
   clear:both;
}

#contents {
	overflow:hidden;
	width:1000px;
	margin:15px auto 20px;
	background:#fff;
}

#main {
	box-sizing:border-box;
	overflow:hidden;
	float:right;
	width:68%;
}

#sub {
	box-sizing:border-box;
	overflow:hidden;
	float:left;
	width:30%;
}

footer {
	box-sizing:border-box;
	width:100%;
	margin:0 auto;
}

a {
	color:#333;
	text-decoration:underline;
}
a:hover {
	color:#ff0000;
	text-decoration:none;
}

p {
	margin:0 0 1em 0;
}

img {
	vertical-align:bottom;
}

em {
	font-weight:bold;
	font-style: normal;
}

strong {
	font-weight:bold;
	color:#ff0000;
}

table {
	width:100%;
	margin-bottom:1em;
	border-collapse:collapse;
	border:1px solid #999;
	background:#fff;
}
th {
	padding:10px;
	text-align:center;
	vertical-align:middle;
	border:1px solid #999;
	background:#eee;
}
td {
	padding:10px;
	text-align:left;
	border:1px solid #999;
}

/*================================================
 *  ヘッダー
 ================================================*/
header {
	position:relative;
	margin:0 0 10px;
}
header h1 {
	width:100%;
	margin:5px 0 0;
	font-size:12px;
}
header p {
	margin:0;
	padding:0;
}

.inner {
	position:relative;
	width:1000px;
	margin:0 auto;
}

.registration {
	position:absolute;
	top:25px;
	right:0;
	margin:0;
}
.registration p a {
	display:block;
	margin:0 0 10px;
	padding:16px 20px 14px;
	font-size:16px;
	text-decoration:none;
	text-align:center;
	color:#1b1b1b;
	background:#fff;
	border-radius:5px;
	border:1px solid #1b1b1b;
}
.registration p a:hover {
	color:#fff;
	background:#ff0000;
	border:1px solid #ff0000;
	transition:all 0.2s ease 0s;
}

/*================================================
 *  グローバルナビゲーション
 ================================================*/
@media print, screen and (min-width:768px) {
	nav {
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff0000+0,aa0000+49,890000+50,890000+50,530000+100 */
        background: #ff0000; /* Old browsers */
        background: -moz-linear-gradient(top,  #ff0000 0%, #aa0000 49%, #890000 50%, #890000 50%, #530000 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top,  #ff0000 0%,#aa0000 49%,#890000 50%,#890000 50%,#530000 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom,  #ff0000 0%,#aa0000 49%,#890000 50%,#890000 50%,#530000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#530000',GradientType=0 ); /* IE6-9 */
		box-shadow:0 1px 3px #333;
		z-index:3;
	}
	nav ul {
		margin:0;
		padding:0;
	}
	nav li {
		position:relative;
		width:17%;
		float:left;
		margin:0;
		padding:0;
		text-align:center;
		list-style:none;
	}
	nav li:first-child {
		width:15%;
	}
	nav li:before {
		content:"";
		margin-top:-10px;
		position:absolute;
		top:50%;
		left:0;
		width:1px;
		height:20px;
		background:#fff;
	}
	nav li:last-child:after {
		content:"";
		margin-top:-10px;
		position:absolute;
		top:50%;
		right:0;
		width:1px;
		height:20px;
		background:#fff;
	}
	nav li:hover:before,
	nav li:hover + li:before, 
	nav li:last-child:hover:after,
	nav li li:before,
	nav li li:after {
		display:none;
	}
	nav li:last-child li {
		left:-50%;
	}
	nav li a {
		display:block;
		padding:12px 0 10px;
		color:#fff;
		font-size:16px;
		font-weight:bold;
		text-decoration:none;
	}
	nav li ul {
		display:block !important;
		position:absolute;
		top:100%;
		left:0;
		margin:0;
		padding:0;
		border-radius:0 0 3px 3px;
		z-index:3;
	}
	nav li ul li {
		overflow:hidden;
		width:150%;
		height:0;
		-moz-transition:.2s;
		-webkit-transition:.2s;
		-o-transition:.2s;
		-ms-transition:.2s;
		transition:.2s;
	}
	nav li li:first-child {
		width:150%;
	}
	nav li ul li a {
		padding:10px 15px;
		background:#7c0c0c;
		text-align:left;
		font-weight:normal;
	}
	nav li:hover > a {
		background:#7c0c0c;
		color:#fff;
	}
	nav li:hover > a:hover {
		background:#cc0000;
	}

	.gnav {
		display:block !important;
	}

	#spMenu {
		display:none;
	}

	.showNav {
		background:#7c0c0c !important;
	}

	.showSub {
		overflow:visible;
		min-height:42px;
		border-bottom:2px solid #cc0000;
	}
	.showSub:last-child {
		border-bottom:0;
	}
	.showSub:last-child a {
		border-radius:0 0 3px 3px;
	}

	.fixed {
		position:fixed;
		top:0;
		left:0;
	}
}

/*================================================
 *  トピックパス（パンくずリスト）
 ================================================*/
#topicpath {
	font-size:12px;
	margin-bottom:10px;
	padding:2px;
}

/*================================================
 *  サブコンテンツ
 ================================================*/
.subHeading {
	margin-bottom:0.25em;
	padding:6px;
	background:#cc0000;
}
.subHeading h3 {
    margin: 0;
    padding: 2px 0 0 26px;
    background: url(../img/search.png) no-repeat 0 center;
	font-size:16px;
	font-weight:bold;
    line-height: 1.4;
	color:#fff;
}

.submenu {
	margin-bottom:40px;
	padding:0;
}
.submenu li {
	margin:0;
	padding:0;
	list-style:none;
}
.submenu li a:before {
	content:"\002756";
	color:#ff0000;
}
.submenu li a {
	display:block;
	padding:14px 8px;
	font-size:16px;
	color:#333;
	border-bottom:1px dotted #999;
	text-decoration:none;
}
.submenu li a:hover {
	background:#eee;
}

.bnr {
	overflow:hidden;
	text-align:center;
}
.bnr ul {
	overflow:hidden;
}
.bnr li {
	margin:0 0 10px 0;
	padding:0;
	list-style:none;
}
.bnr li a:hover {
	opacity:0.7;
	filter:alpha(opacity=70);
	-ms-filter:"alpha( opacity=70 )";
}
.bnr img {
	width:100%;
}

#menu_box {
   margin:0; 
   float:left;
   border:#e5e4e6 1px solid;
}
.menu {
   list-style:none;
   padding:0;
   margin:0;
   overflow: hidden;
   position: relative;
}
.menu li {
   width:190px;
   background:#ADC653;
   position: relative;
   height:50px;
}
.menu li a {
   text-decoration:none;
   color:#993300;
   font-size:12px;
   display:block;
   padding:0 10px;
   height:49px;
   line-height:49px;
   border-bottom:1px solid #fff;
   color:#5B6F25;
   font-weight:bold;
}
.menu li ul {
   margin:0;
   padding:0;
}
.menu li ul li {
   background:#dcd3b2; 
}
.menu li ul li a {
   color:#9e9478; 
}

/*================================================
 *  フッター
 ================================================*/
footer {
	clear:both;
	padding:0 0 0.5em;
	font-size:11px;
	text-align:center;
	background:#cc0000;
}
footer p {
	margin-top:1em;
	color:#fff;
}

.footmenu {
	width:100%;
	padding:20px 0;
	overflow:hidden;
	background:#eee;
}
.footmenu ul {
	position:relative;
	float:left;
	left:50%;
	margin:0;
	padding:0;
}
.footmenu li {
	position:relative;
	left:-50%;
	float:left;
	list-style:none;
	margin:0;
	padding:0 15px;
	font-size:12px;
	text-align:center;
}
.footmenu a {
	color:#333;
	text-decoration:none;
}
.footmenu a:hover {
	color:#333;
	text-decoration:underline;
}

.copyright {
	padding:0.5em 0 0;
	font-size:11px;
	color:#fff;
	border-top:1px dotted #fff;
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
	position:fixed;
	bottom:15px;
	right:15px;
}
.totop a {
	display:block;
	text-decoration:none;
}
.totop img {
	background:#666;
}
.totop img:hover {
	background:#333;
}

/*================================================
 *  クラス
 ================================================*/
.section {
	overflow:hidden;
	margin:10px 0 20px;
	padding:0;
}

.heading {
    margin: 0;
    padding: 4px 10px 5px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff0000+0,aa0000+49,890000+50,890000+50,530000+100 */
    background: #ff0000; /* Old browsers */
    background: -moz-linear-gradient(top,  #ff0000 0%, #aa0000 49%, #890000 50%, #890000 50%, #530000 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #ff0000 0%,#aa0000 49%,#890000 50%,#890000 50%,#530000 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #ff0000 0%,#aa0000 49%,#890000 50%,#890000 50%,#530000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#530000',GradientType=0 ); /* IE6-9 */
    border: 1px #7c0c0c solid;
}

.heading h2 {
    margin: 0;
    padding: 2px 0 0 10px;
    border-left: 5px #fff solid;
	font-size:20px;
	font-weight:bold;
    line-height: 1.2;
	color:#fff;
}

.imgL {
	float:left;
	margin:0 15px 0 0;
}
.imgL img {
	border:1px solid #999;
}

p.categoryIco {
	margin:0 0 5px 0;
}
p.categoryIco img {
	max-width:102px;
	border:none;
}

.notice {
	overflow:hidden;
	margin:10px 0 30px;
	padding:15px;
	border:1px solid #999;
}
.notice h3 {
    margin:0 0 0.5em;
    padding: 0;
	font-size:14px;
	font-weight:bold;
    line-height: 1.2;
}
.notice p {
    margin:0 0 10px;
    padding: 0;
}
.notice ul {
	margin:0;
    padding:0 0 0.5em 1.2em;
}
.notice ul li {
	list-style:disc;
}

.text1 {
	margin:0 0 20px;
	padding:0;
	font-size:20px;
	font-weight:bold;
    line-height: 1.4;
}
.text2 {
	margin:0 0 0.5em;
	padding:0;
	font-size:16px;
	text-align:center;
    line-height: 1.4;
}
.text3 {
	margin:0 0 0.5em;
	padding:0;
	font-size:16px;
	text-align:center;
    line-height: 1.4;
}

.text4 {
	margin:0 0 1em;
	padding:0;
	font-size:16px;
	font-weight:bold;
	text-align:center;
    line-height: 1.4;
}
.text4 a {
	color:#cc0000;
}

/*================================================
 *  新着情報
 ================================================*/
.news {
    margin-bottom:20px;
    padding: 0;
}
.news dl {
    height: 180px;
    overflow: auto;
    margin: 0;
    padding: 5px 10px 10px;
    border-top: none;
    border-left: 1px #999 solid;
    border-right: 1px #999 solid;
    border-bottom: 1px #999 solid;
}
.news dt {
    width: 6.7em;
    float: left;
    padding: 10px 0 5px 5px;
    line-height: 1.4;
}
.news dd {
    margin: 0;
    padding: 10px 5px 5px 6.6em;
    border-bottom: 1px #ccc dotted;
    line-height: 1.4;
}

/*================================================
 *  一押し！痴女
 ================================================*/
.ichioshi {
	overflow:hidden;
	margin:10px 0 20px;
	padding:15px;
	border:5px solid #e5d096;
	background:url(../img/ichioshi_bg.jpg) center bottom no-repeat;
}

.prof {
	overflow:hidden;
	display:block;
	margin:0;
}
.prof a {
    text-decoration:none;
}
.prof a:hover {
    text-decoration:underline;
}
.prof li {
	margin:0;
	padding:8px 0 4px 3px;
	border-bottom:1px dotted #666;
}
.prof p.tenpoName {
	margin-bottom:0.5em;
	font-size:18px;
	font-weight:bold;
}
.prof p.name {
	margin-bottom:0.25em;
	padding:0 0 0 3px;
	font-size:22px;
	font-weight:bold;
	border-bottom:1px dotted #666;
}
.prof p.size {
	margin-bottom:2%;
	padding:0 0 0 3px;
	font-size:16px;
	font-weight:bold;
	border-bottom:1px dotted #666;
}
.prof p.type {
	margin-bottom:2%;
	padding:0 0 0 3px;
	font-size:16px;
	font-weight:bold;
	border-bottom:1px dotted #666;
}


/*================================================
 *  痴女～最強、的 PICK UP
 ================================================*/
.pickup {
	overflow:hidden;
	margin:2% -2% 0 0;
}

.picTenpo {
	overflow:hidden;
	float:left;
	width:44.8%;
	margin:0 2% 2% 0;
	padding:10px;
	border:1px solid #999;
	background:#fff;
}
.picTenpo p {
	margin:0 0 1em;
	padding:0;
}
.picTenpo p img {
	width:100%;
	max-width:300px;
	border:none;
}
.picTenpo h3 {
	margin-bottom:0.5em;
	padding:0;
	font-size:14px;
	font-weight:bold;
    line-height: 1.2;
}
.picTenpo img {
	max-width:100px;
	border:1px solid #999;
}
.picTenpo a img:hover {
	opacity:0.7;
	filter:alpha(opacity=70);
	-ms-filter:"alpha( opacity=70 )";
}
.picTenpo ul {
	overflow:hidden;
}
.picTenpo li {
	overflow:hidden;
    padding: 0;
    line-height: 1.6;
	word-wrap:break-word;
}
.picTenpo li.pr {
	overflow:hidden;
	margin-top:0.2em;
    padding-top: 0.4em;
    line-height: 1.4;
	border-top:1px dotted #666;
}

.picImg {
	float:left;
	margin:0 10px 0 0;
}
.picImg p.categoryIco {
	margin:0 0 5px 0;
}
.picImg p.categoryIco img {
	max-width:102px;
	border:none;
}

/*================================================
 *  詳細ページ
 ================================================*/
p.update {
	margin:1em 0 0;
	padding:0;
	text-align:right;
}

.detail {
	overflow:hidden;
	margin:10px 0 20px;
	padding:15px 15px 5px;
	border:1px solid #999;
}

.detailProf {
	overflow:hidden;
	display:block;
	margin:0 0 1.5em;
}
.detailProf a {
    text-decoration:none;
}
.detailProf a:hover {
    text-decoration:underline;
}
.detailProf li {
	margin:0;
	padding:8px 0 4px 3px;
	border-bottom:1px dotted #666;
}
.detailProf p.tenpoName {
	margin-bottom:0.5em;
	font-size:18px;
	font-weight:bold;
}
.detailProf p.name {
	margin-bottom:0.25em;
	padding:0 0 0 3px;
	font-size:22px;
	font-weight:bold;
	border-bottom:1px dotted #666;
}
.detailProf p.size {
	margin-bottom:2%;
	padding:0 0 0 3px;
	font-size:16px;
	font-weight:bold;
	border-bottom:1px dotted #666;
}
.detailProf p.type {
	margin-bottom:2%;
	padding:0 0 0 3px;
	font-size:16px;
	font-weight:bold;
	border-bottom:1px dotted #666;
}

.thumbnail {
	clear:both;
	overflow:hidden;
}
.thumbnail p {
	text-align:center;
}
.thumbnail ul {
	overflow:hidden;
	margin:3% -1.96% 0 0;
}
.thumbnail li {
	list-style:none;
	float:left;
	width:18%;
	margin:0 1.96% 0 0;
}
.thumbnail li img {
	width:100%;
	margin:0 0 5px;
	border:1px solid #999;
}

/*================================================
 *  目安箱
 ================================================*/
.meyasubako {
	overflow:hidden;
	margin:10px 0 30px;
	padding:15px;
	background:#ffffcc;
	border-radius:5px;
}
.meyasubako p {
	margin:0;
	padding:0;
}

.post {
	width:250px;
	margin:0 auto 30px;
}
.post p a {
	display:block;
	margin:0 0 10px;
	padding:14px 20px 12px;
	font-size:22px;
	font-weight:bold;
	text-decoration:none;
	text-align:center;
	color:#1b1b1b;
	background:#fff;
	border-radius:5px;
	border:1px solid #1b1b1b;
}
.post p a:hover {
	color:#fff;
	background:#ff0000;
	border:1px solid #ff0000;
	transition:all 0.2s ease 0s;
}

.jyoken {
	overflow:hidden;
	margin:10px 0 30px;
	padding:15px;
	background:#ffe5e5;
	border-radius:5px;
}
.jyoken p {
	margin:0;
	padding:0;
}
.jyoken ol {
	margin:0 0 20px;
	padding:0;
}
.jyoken ol li {
	list-style:square;
}
.jyoken li {
	margin-left:1.2em;
}

table.comrade {
	margin-bottom:1em;
	border-collapse:collapse;
	border:1px solid #999;
	background:#fff;
}
table.comrade th {
	padding:10px;
	text-align:left;
	vertical-align:top;
	border-width: 1px 0;
    border-color: #999;
    border-style: solid;
	background:#fff;
}
table.comrade td {
	padding:10px;
	text-align:left;
	border-width: 1px 0;
    border-color: #999;
    border-style: solid;
}
table.comrade td.mid {
    color: #0000ff;
}

.high li {
	margin:0;
    padding: 3px 0 0 18px;
    background: url(../img/point.gif) no-repeat 0 center;
    font-size: 14px;
    line-height: 1.6;
}

.toukojoho {
	overflow:hidden;
	margin:10px 0 30px;
	padding:15px;
	background:#eee;
	border-radius:5px;
}
.toukojoho p {
	margin:0;
	padding:0;
}

/*================================================
 *  管理人一押し店
 ================================================*/
.kanriIchioshi {
	overflow:hidden;
	margin:20px 0;
	padding:15px;
	border:5px solid #ddd;
	background:#fff;
}
.kanriIchioshi h3 {
	margin-bottom:10px;
	padding:3px 2px;
	font-size:16px;
    line-height: 1.2;
	border-bottom:1px solid #999;
}

.kanriIchioshi.imgL {
	float:left;
	margin:0 0.5em 0.5em 0;
}
.kanriIchioshi img {
	width:100%;
	max-width:250px;
}

/*================================================
 *  エリア検索
 ================================================*/
.area {
	overflow:hidden;
	margin:2% -2% 0 0;
}
.areaTenpo {
	overflow:hidden;
	float:left;
	width:44.8%;
	margin:0 2% 2% 0;
	padding:10px;
	border:1px solid #999;
	background:#fff;
}
.areaTenpo h3 {
	margin-bottom:0.5em;
	padding:0;
	font-size:14px;
	font-weight:bold;
    line-height: 1.2;
}

.areaImg {
	float:left;
	margin:0 10px 0 0;
}

.areaTenpo img {
	max-width:100px;
	border:1px solid #999;
}
.areaTenpo a img:hover {
	opacity:0.7;
	filter:alpha(opacity=70);
	-ms-filter:"alpha( opacity=70 )";
}
.areaTenpo li {
	overflow:hidden;
    padding: 0;
    line-height: 1.6;
}
.areaTenpo li.pr {
	overflow:hidden;
	margin-top:0.2em;
    padding-top: 0.4em;
    line-height: 1.4;
	border-top:1px dotted #666;
}

.araTokyo {
	overflow:hidden;
	margin:15px 0;
}

.araTokyo ul {
	overflow:hidden;
	margin:0 -2% 0 0;
}
.araTokyo li a {
    display:block;
	list-style:none;
	float:left;
	width:48%;
	margin:0 2% 2% 0;
    padding: 10px 0 8px;
	background:#eee;
	font-size:16px;
	text-align:center;
	text-decoration:none;
}
.araTokyo li:nth-child(2n+1) {
	clear:both;
}

ul.tokyo {
	overflow:hidden;
	margin:0;
    padding: 10px;
}

ul.tokyo li {
	float:none;
	width:100%;
	list-style:disc;
	margin:0 0 0 10px;
    padding:0;
}

h2.tokyo {
    margin-top: 15px;
    padding: 5px 8px 2px;
	font-size:16px;
	font-weight:bold;
    line-height: 1.2;
	color:#333;
	background:#eee;
	border:1px solid #ccc;
}

/*================================================
 *  リンク案内
 ================================================*/
.linkInfo p {
    margin:0 0 0.5em;
    padding: 0;
}

/*================================================
 *  相互リンク
 ================================================*/
.sogoLink {
	overflow:hidden;
	margin:10px 0 50px;
	padding:0;
}
.sogoLink p.title {
    margin:0 0 0.5em;
    padding:0 0 5px;
	font-size:18px;
	font-weight:bold;
    line-height: 1.2;
	border-bottom:2px solid #999;
	text-align:center;
}

.sogoBnr {
	overflow:hidden;
}
.sogoBnr h3 {
    margin:0.5em 0;
	font-weight:bold;
    line-height: 1.2;
}
.sogoBnr ul {
	overflow:hidden;
	margin:1% -2.2% 0 0;
}
.sogoBnr li {
	list-style:none;
	float:left;
	width:12%;
	margin:0 2.2% 1.5% 0;
}
.sogoBnr li img {
	width:100%;
	min-width:88px;
}

/*================================================
 *  お問い合わせ
 ================================================*/
.contact table {
	width:100%;
	margin-bottom:1em;
	border-collapse:collapse;
	border:1px solid #999;
	background:#fff;
}
.contact table th {
	padding:10px;
	text-align:left;
	vertical-align:middle;
	border:1px solid #999;
	background:#eee;
}
.contact table td {
	padding:10px;
	text-align:left;
	border:1px solid #999;
}

/*================================================
 *  登録店舗ログイン
 ================================================*/
.login {
	overflow:hidden;
	margin:10px 0 30px;
	padding:15px;
	border:1px solid #999;
	border-radius:5px;
}
.login h3 {
	margin:0 0 0.5em;
	padding:0;
    font-size: 16px;
	font-weight:bold;
}
.login p {
	margin:0 0 0.5em;
	padding:0;
}

p.notes {
	margin:1em 0;
	padding:0;
	color:#cc0000;
}

/*================================================
 *  店舗新規登録
 ================================================*/
ul.linkBnr {
	overflow:hidden;
	margin:0;
    padding: 10px;
}
ul.linkBnr li {
	width:100%;
	list-style:none;
	margin:0;
    padding:0;
}

ul.not li {
	margin:0 0 0 1em;
    padding:0;
    list-style-type: upper-roman;
}

ul.link {
	margin:0 0 1em;
}

/*================================================
 *  フォーム部品
 ================================================*/
form.contact th span.supplement {
    display:block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.4;
}
form.contact td span.supplement {
    display:block;
    margin-top: 5px;
    color: #808080;
    font-size: 12px;
    line-height: 1.4;
}
form.contact input,
form.contact select,
form.contact textarea {
    margin-bottom: 2px;
}

span.required {
    color: #cc0000;
}

/* --- フォーム部品のサイズ --- */
/* --- （長めのテキスト入力欄） --- */
#name, #url, #email, #address, #tenpo,
#girl, #nickname, #linkpage, #city,
#sp, #mobile, #b88, #b200, #b300 {
    width: 300px;
}
/* --- （短めのテキスト入力欄） --- */
#tel, #tel1, #tel2, #pw {
    width: 200px;
}
/* --- （複数行のテキスト入力欄） --- */
#message {
    width: 420px;
    height: 10em;
}

/* --- ボタン --- */
form.contact p.button {
    margin: 20px 0 0;
    text-align: center;
}

input { vertical-align: middle; }

/*================================================
 *  スライドショー
 ================================================*/
/* スライドショー */
.slide {
	display:none;
	position:relative;
	overflow:hidden;
	margin:0 0 20px;
}

.slidePrev {
	position:absolute;
	cursor:pointer;
	z-index:2;
}

.slideNext {
	position:absolute;
	cursor:pointer;
	z-index:2;
}

.slidePrev img {
	position:absolute;
	width:60px !important;
	height:50px !important;
}

.slideNext img {
	position:absolute;
	width:60px !important;
	height:50px !important;
}

.slideInner {
	position:relative;
	margin:0 0 5px 0;
	padding:0;
}
.slideInner li {
	float:left;
	margin:0;
	padding:0;
	list-style:none;
}
.slideInner li img {
	margin:0 5px;
	padding:0;
}

.filterPrev {
	position:absolute;
	left:0;
	opacity:0.5;
	filter:alpha(opacity=50);
	background-color:#fff;
}

.filterNext {
	position:absolute;
	right:0;
	opacity:0.5;
	filter:alpha(opacity=50);
	background-color:#fff;
}

.controlNav {
	position:relative;
	float:left;
	left:50%;
}
.controlNav span {
	position:relative;
	left:-50%;
	float:left;
	margin:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	width:10px;
	height:10px;
	overflow:hidden;
	background:#ccc;
	text-indent:-9999px;
	vertical-align:middle;
}
.controlNav span:hover {
	background:#999;
	cursor:pointer;
}
.controlNav span.current {
	background:#cc0000;
}

/*================================================
 *  タブレット向けデザイン
 ================================================*/
/* スクロールバーを考慮して20px大きいサイズで切り替え */
@media screen and (max-width:979px) {
	.inner {
		box-sizing:border-box;
		width:100%;
		padding:0 10px;
	}
	
	header {
		box-sizing:border-box;
		padding:5px 0;
	}
    header p img {
		width:100%;
        margin:0 0 10px;
        padding:0;
    }

	#contents {
		box-sizing:border-box;
		width:100%;
		padding:0 10px;
	}
	
    .registration {
        position:static;
        top:0;
        right:0;
        margin:0;
    }
    .registration p a {
        display:block;
        margin:0 0 10px;
        padding:10px 0 9px;
    }
	
    .ichioshi {
        text-align:center;
    }
	
    .imgL {
        float:none;
        margin:0 0 15px 0;
    }
    .imgL img {
		width:100%;
		max-width:300px;
    }
	
    .prof {
        text-align:left;
    }

    .pickup {
        margin:2% 0 0 0;
    }
    .picTenpo {
        float:none;
		box-sizing:border-box;
		width:100%;
        margin:0 0 4% 0;
        padding:10px;
    }
	
    .area {
        margin:2% 0 0 0;
    }
    .areaTenpo {
        float:none;
		box-sizing:border-box;
		width:100%;
        margin:0 0 4% 0;
        padding:10px;
    }

	footer {
		width:100%;
	}
}

/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:319px) {
    .picTenpo li {
        font-size:12px;
    }
}
 
@media screen and (max-width:767px) {
	.lock {
		overflow:hidden;
	}

	header {
		z-index:2;
		box-sizing:border-box;
		position:absolute;
		top:0;
		left:0;
		width:100%;
		padding:5px 0 10px;
	}
	
    header h1 {
        width:85%;
        margin:5px 0;
    }

    header p img {
		width:100%;
        margin:0 0 10px;
        padding:0;
    }
	
    .inner {
		box-sizing:border-box;
        position:static;
		width:100%;
		padding:0 10px;
    }

    .registration {
        position:static;
        top:0;
        right:0;
        margin:0;
    }
    .registration p a {
        display:block;
        margin:0 0 10px;
        padding:10px 0 9px;
    }

	#main {
		float:none;
		width:100%;
	}

	#sub {
		float:none;
		width:100%;
	}

	nav {
		background:#710000;
	}
	nav ul {
		margin:0;
		padding:0;
		}

	nav .inner > ul {
		z-index:2;
		overflow:auto;
		position:fixed;
		top:53px;
		right:0;
		width:100%;
		height:88%;
		height:-webkit-calc(100% - 53px);
		height:calc(100% - 53px);
	}
	nav li {
		position:relative;
		width:100%;
		float:none;
		margin:0;
		text-align:left;
		list-style:none;
		border-bottom:1px solid #cc0000;
		background:#9b0f0f;
	}

	nav li:first-child {
		border-top:0;
	}
	nav li:last-child {
		border-bottom:0;
	}

	nav li a {
		display:block;
		padding:10px 30px;
		color:#fff;
		text-decoration:none;
		background:#9b0f0f;
	}
	nav li a:hover {
		color:#fff;
		background:#710000;
	}
	nav ul ul {
		display:none;
		position:relative;
	}
	nav li li a {
		box-sizing:border-box;
		width:100%;
		padding:10px 30px 10px 50px;
		text-align:left;
	}

	.subnav > a:before {
		display:block;
		content:"";
		position:absolute;
		-webkit-transform:rotate(45deg);
		transform:rotate(45deg);
		top:20px;
		right:30px;
		width:10px;
		height:10px;
		margin-top:-5px;
		background:#f1f1f1;
	}
	.subnav > a:after {
		display:block;
		content:"";
		position:absolute;
		-webkit-transform:rotate(45deg);
		transform:rotate(45deg);
		top:20px;
		right:30px;
		width:10px;
		height:10px;
		margin-top:-10px;
		background:#9b0f0f;
	}
	.subnav a:hover:after {
	  background:#710000;
	}

	.active > a:before {
		margin-top:0;
	}
	.active > a:after {
		margin-top:5px;
	}

	.gnav {
		display:none;
	}

	#spMenu {
		display:block;
		z-index:2;
		position:fixed;
		top:10px;
		right:10px;
	}
	#spMenu:hover {
		cursor:pointer;
	}

	#navBtn {
		display:inline-block;
		position:relative;
		width:30px;
		height:30px;
		border-radius:5%;
		background:#710000;
	}
	#navBtnIcon {
		display:block;
		position:absolute;
		top:50%;
		left:50%;
		width:14px;
		height:2px;
		margin:-1px 0 0 -7px;
		background:#f1f1f1;
		transition:.2s;
	}
	#navBtnIcon:before,
	#navBtnIcon:after {
		display:block;
		content:'';
		position:absolute;
		top:50%;
		left:0;
		width:14px;
		height:2px;
		background:#f1f1f1;
		transition:0.3s;
	}
	#navBtnIcon:before {
		margin-top:-6px;
	}
	#navBtnIcon:after {
		margin-top:4px;
	}
	#navBtn .close {
		background:transparent;
	}
	#navBtn .close:before,
	#navBtn .close:after {
		margin-top:0;
	}
	#navBtn .close:before {
		transform:rotate(-45deg);
		-webkit-transform:rotate(-45deg);
	}
	#navBtn .close:after {
		transform:rotate(-135deg);
		-webkit-transform:rotate(-135deg);
	}
	
    .ichioshi {
        text-align:center;
    }
	
    .imgL {
        float:none;
        margin:0 0 15px 0;
    }
    .imgL img {
		width:100%;
		max-width:300px;
    }
	
    .prof {
        text-align:left;
    }
	
    .pickup {
        margin:2% 0 0 0;
    }
    .picTenpo {
        float:none;
		box-sizing:border-box;
		width:100%;
        margin:0 0 4% 0;
        padding:10px;
    }
	
    table.comrade th {
        display: inline-block;
    }
	
    table {
        border:1px solid #999;
    }
	
    table.comrade {
        border:1px solid #999;
    }
    table.comrade th {
        width:auto;
        border-width: 0;
    }
    table.comrade td {
        border-width: 1px;
    }
	
    .area {
        margin:2% 0 0 0;
    }
    .areaTenpo {
        float:none;
		box-sizing:border-box;
		width:100%;
        margin:0 0 4% 0;
        padding:10px;
    }
	
    .araTokyo ul {
        margin:2% 0 0 0;
    }
    .araTokyo li a {
        list-style:none;
        float:none;
        width:100%;
        margin:0 0 2% 0;
    }
	
    .bnr {
		box-sizing:border-box;
		width:100%;
    }
    .bnr img {
		width:100%;
        max-width:300px;
    }
	
    .detail {
        text-align:center;
    }
	
    .detailProf {
        text-align:left;
    }
	
	.thumbnail li {
		width:47.8%;
	}
	
    #link img.small {
        width:100%;
        max-width:88px;
    }
    #link img.medium {
        width:100%;
        max-width:200px;
    }
    #link img.large {
        width:100%;
        max-width:300px;
    }
	.sogoBnr {
		box-sizing:border-box;
		width:100%;
        text-align:center;
    }
	.sogoBnr h3 {
        text-align:left;
	}
	.sogoBnr li {
		width:31%;
	}
	.sogoBnr img {
        width:100%;
        max-width:88px;
    }
	
    .contact {
		box-sizing:border-box;
		width:100%;
    }
	
    #name, #url, #email, #address, #tenpo,
    #girl, #nickname, #linkpage, #city,
    #sp, #mobile, #b88, #b200, #b300 {
        width: 98%;
    }
	
    #tel, tel1, #tel2, #pw {
        width: 98%;
    }
	
    #message {
        width: 98%;
        height: 10em;
    }
}

