@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/




/*
Theme Name: simplicity2-child
Author: admin
Template: simplicity2
*/


/*検索結果を表示するiframeの設定*/
iframe.searchresultarea {
    border: none;
    width: 100%;
    height: 1000px;
    border: 0;
    /*seamless;*/
　　overflow: visible;
}
*.logbox
{
    border: solid 1px #808080;
    width: 240px;
    height: 120px;
    padding: 0.5em;
    overflow: auto;
}

/*以下フォームの編集*/
/*まず、フォーム全体の囲み罫や背景などを指定*/
form#form1 {
	padding: 10px;
	margin-bottom: 15px;
    margin: 0 auto;
	border: 1px solid #ccc;
	color: #666;
	background: #F0F8F1;
    width: 97%;
	/*↓背景グラデーションの指定*/
	background: -moz-linear-gradient(top, #FBFCFC, #F0F8F1);
	background: -webkit-linear-gradient(top, #FBFCFC, #F0F8F1);
	background: linear-gradient(#FBFCFC, #F0F8F1);
    /*    text- */
}

/*リスト要素<ul>を初期化*/
form#form1 ul {
	padding:0;
	margin:0
}
/*<li>も初期化し、ボーダーなどを指定*/
form#form1 ul li {
	list-style:none;
	margin:0px;
	padding:10px;
	border-top: 2px solid #FFF;
	font-size: 12px;
        /*display: inline;*/
}
/*最初の<li>にはボーダーをつけない（:first-child疑似クラスによる指定）*/
form#form1 ul li:first-child {
	border-top:none;
}

/* span要素をブロック化しフロートでフォーム部品と横に並べる*/
form#form1 ul li span {
	/*width: 17em;*/
        width: 50px;
	padding:3px 5px;
	margin:3px;
	/*display:block;20170320コメントアウト解除
	float:left;*/
/* floatでなく、CSS3 の「display: inline-block」を使う手もアリ*/
	display: inline-block;
}

/*「:after」で <li>の末尾でフロートをクリア*/
form#form1 ul li:after {
	content:".";
	display:block;
	height:0;
	visibility:hidden;
	clear:both;     /*←フロートをクリア*/
}

/* テキスト入力部品の見た目を統一する */
form#form1 ul li .namefield, form#form1 select {
	width:130px;
	padding:3px 5px;
	margin:3px;
	color:#666;
	border: solid 1px #ccc;
    float:left;
    display: inline-block;
    /*テキストエリア内にシャドウをつける。最初にbackground初期化が必要*/
    background: #fff;
	-webkit-box-shadow: 2px 3px 5px -2px #ddd inset;
	-moz-box-shadow: 2px 3px 5px -2px #ddd inset;
	box-shadow: 2px 3px 5px -2px #ddd inset;
	/*角丸にする*/
	border-radius:6px;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
}

form#form1 label.titlelabel {
	width:65px;
    display: inline-block;
	float: left;
}

form#form1 label.inlabel {
    display: inline-block;
	float: left;
    padding:8px 0 0 0;
}

form#form1 label.birthdaylabel {
    display: inline-block;
	float: left;
	font-size: 9px;
    padding:12px 0 0 0;	
}

form#form1 select.form1select {
	/*selectは250では大きすぎるので*/
	width:60px;
}

form#form1 select[disabled] {
            background-color: #ccc;
            color: #333;
            border-color: #333;
            cursor: default;
			width:70px;
}

form#form1 select.selectbirthday {
	/*selectは250では大きすぎるので*/
	width:50px;
}

form#form1 select.selectyear {
	/*selectは250では大きすぎるので*/
	width:65px;
}

form#form1 select.selectmonthday {
	/*selectは250では大きすぎるので*/
	width:50px;
}

form#form1 select.selectsort {
	/*selectは250では大きすぎるので*/
	width:120px;
}

/*form#form1 input.namefield{
	width: 130px;
	height: 24px;
	font-size: 14px;
    background-color: #fff;
}*/

/*チェックボックス、ラジオボタンのブロックの指定*/
form#form1 ul li p {
	margin:5px 0 0 40px;
        display: block;
}
/*inputをインライン化 20170320追加*/
form#form1 ul li input{
        display: inline-block;
        /*float:left;*/
}

/*チェックボックス、ラジオボタンの label要素を横に並べる*/
/*form#form1 ul li /*p 2017/03/25削除*//*label {*/
	/*margin-right: 2em;*/
/*	display:block;
	float: left;
}*/
/*input要素とテキストがくっつかないように右にマージンを少し*/
form#form1 ul li /*p 2017/03/25削除*/label input {
	margin-right:0.5em;
}
/*チェックボックス、ラジオボタンの label要素にロールオーバー時の変化を指定する*/
form#form1 ul li p label:hover {
	background : #FFF;
	color: #096;
	font-weight:bold;
}
/*チェックボックスの<label>の横幅を統一する（<p>にクラス名.checkをつけて）*/
form#form1 ul li p.check label {
	width: 9em;
}
/*送信・リセットボタンの体裁を指定（[type="○○"]で属性の値でセレクト）*/
form#form1 ul li input[type="submit"] /*,
form#form1 ul li input[type="reset"]*/ {
	cursor:pointer;     /*←これでカーソルを指先型に変化させる*/
	font-size:130%;
	font-weight: bold;
	width:150px;
	padding: 5px 0;
	margin-right:0.5em;
        margin: 0 auto;
	border-style:none;
	color: #fff;
　　　　text-align: center;
	background:#90E733;
/*↓背景グラデーションの指定です*/
	background: -moz-linear-gradient(top, #90E733, #428000 50%, #90E733);
	background: -webkit-linear-gradient(top, #90E733, #428000 50%, #90E733);
	background: linear-gradient(#90E733, #428000 50%, #90E733);
/*↓以下、ボックスの角丸、シャドウ、テキストシャドウの指定*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 2px 2px 3px 1px #666;
	-webkit-box-shadow: 2px 2px 3px 1px #666;
	box-shadow: 2px 2px 3px 1px #666;
	text-shadow: 1px 1px 2px #000; 
}
form#form1 ul li input[type="reset"] {
	cursor:pointer;     /*←これでカーソルを指先型に変化させる*/
	font-size:130%;
	font-weight: bold;
	width:100px;
	padding: 5px 0;
	margin-right:0.5em;
        margin: 0 auto;
	border-style:none;
	color: #fff;
　　　　text-align: center;
	background:#90E733;
/*↓背景グラデーションの指定です*/
	background: -moz-linear-gradient(top, #dae6f5, #043f8a 50%, #dae6f5);
	background: -webkit-linear-gradient(top, #dae6f5, #043f8a 50%, #dae6f5);
	background: linear-gradient(#dae6f5, #043f8a 50%, #dae6f5);
/*↓以下、ボックスの角丸、シャドウ、テキストシャドウの指定*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 2px 2px 3px 1px #666;
	-webkit-box-shadow: 2px 2px 3px 1px #666;
	box-shadow: 2px 2px 3px 1px #666;
	text-shadow: 1px 1px 2px #000; 
}

form#form1 ul li input[type="submit"]:hover ,
form#form1 ul li input[type="reset"]:hover {
/*↓ここではロールオーバー時の透明度を変更。もちろんグラデーションを指定してもOK*/
	opacity: 0.8;
	font-size:135%;
}

/*検索結果表示エリア(iframe)のスタイル*/
body {
    background-color: #FFFFFF;
    color: #303030;
    font-family: Meiryo,Arial,sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

/*input.worksfield{
	width: 130px;
	height: 24px;
	font-size: 14px;
}/**/

.fanzasaleinfolink {
	font-size: 16px;
}
/*検索結果を表示するiframeの設定*/
.searchresultarea {
  position: relative;
  width: 100%;
  /*height: 4000px;*/
  /*padding: 75% 0 0 0;*/
}
.searchresultarea iframe{
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*frameborder: 0;*/
    /*padding: 10px;*/
    /*border: none;*/
    /*seamless;*/
    overflow: visible;
}

#searchresult {
	margin: 0px;
	padding: 0px;
	display: table;
}
#searchresult2 {
	margin: 0px;
	padding: 0px;
}

#searchresult .adata {
	width: 95%;
	/*height: 300px;*/
	display: table-row;/**/
	/*table-layout: fixed;*/
	margin: 10px auto; 
	padding: 10px 5px;
	/*background-color: #fbeff8;/*#ffebeb;/*#F5FFFA;*/
	/*border: hidden;/*ridge 3px #0000CC;*/  
	border-radius: 10px; /* ボックスの四つ角を丸くする */
	/*background-color: #99CCFF;*/
	/*グラデーション表示用*/
    background-image: linear-gradient(135deg, #ffffff 0, #fbeff8 50%, #ffffff 100%);/**/
    /*background-image: linear-gradient(135deg, #fbeff8 0, #ffffff 50%, #fbeff8 100%);/**/
	/*background-image: linear-gradient(135deg, #fce8f7 0, #ffffff 16%, #fce8f7 33, #ffffff 50%, #fce8f7 66, #ffffff 83%, #fce8f7 100%);*/
    /*background-image: linear-gradient(135deg, #ffffff 0, #fbeff8 50%, #ffffff 100%);/**/
 　 /*color: #fff;*/
}
#searchresult2 .adata2 {
	/*width: 98%;*/
	margin: 10px 0px 0px 0px; 
	padding: 20px 0px;
	border-radius: 10px; /* ボックスの四つ角を丸くする */
    background-image: linear-gradient(135deg, #fbeff8 0, #ffffff 50%, #fbeff8 100%);/**/
    /*background-image: linear-gradient(135deg, #ffffff 0, #fbeff8 50%, #ffffff 100%);/**/
    display: flex;
    justify-content: space-between;
	-moz-box-shadow: 2px 2px 3px 1px #999;/*#666*/
	-webkit-box-shadow: 2px 2px 3px 1px #999;
	box-shadow: 2px 2px 3px 1px #999;
}
/*#searchresult .adata:hover {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
  transform: translateY(-0.1875em);
}/**/
#searchresult .adata:hover {
    filter:alpha(opacity=70);/* IE 6,7*/
    -ms-filter: "alpha(opacity=70)";/* IE 8,9 */
    -moz-opacity:0.7;/* FF , Netscape */
    -khtml-opacity: 0.7;/* Safari 1.x */
    opacity:0.7;
    zoom:1;/*IE*/
}
#searchresult2 .adata2:hover {
    filter:alpha(opacity=70);/* IE 6,7*/
    -ms-filter: "alpha(opacity=70)";/* IE 8,9 */
    -moz-opacity:0.7;/* FF , Netscape */
    -khtml-opacity: 0.7;/* Safari 1.x */
    opacity:0.7;
    zoom:1;/*IE*/
}
#searchresult .adata:after {
	/*clear: both;*/
}
/* boxの影 (filterプロパティ未対応のブラウザ) */
/* filterが効かない場合黒い影をつける */
/*#searchresult .adata::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
  z-index: -1;
}/**/
/* boxの影 (filterプロパティ対応済のブラウザ) */
/*@supports (-webkit-filter: blur(20px)) {
 #searchresult .adata::before {
    background-image: linear-gradient(135deg, #fbeff8 0, #ffffff 50%, #fbeff8 100%);
    -webkit-filter: blur(20px);
    filter: blur(20px);
    transform: translateY(20px);
    box-shadow: none;
  }
}/**/
#searchresult .adata p img {
	display: table-cell;
	margin: 15px;
	width: 35%; 
	/*height:100px;*/
	/*vertical-align: top;*/
	/*vertical-align: middle;*/
	/*float: left;*/
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	/*-webkit-box-align: center;*/ /* safari, Chrome対応 */
	/*-moz-box-align: center;*/    /* Firefox対応 */
	/*-o-box-align: center;*/      /* Opera対応 */
	/*-ms-box-align: center; */    /* IE対応 */
	/*box-align: center;*/         /* ベンダープレフィックス無しも併記する */
}
#searchresult2 .adata2 .desc2 img.faceimg {
	/*width: 35%;*/
	max-width: 100px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-moz-box-shadow: 2px 2px 3px 1px #999;
	-webkit-box-shadow: 2px 2px 3px 1px #999;
	box-shadow: 2px 2px 3px 1px #999;
}
#searchresult .adata .desc {
	margin: 5px 15px;
	padding: 0px 4px;
	vertical-align: top;
	/*display: table-cell;
	margin: 0px;
	padding: 0px 4px;
	width: 25%;
	vertical-align: top;
	text-align: left;/**/
}
#searchresult2 .adata2 .desc2 {
	margin: 5px 15px;
	padding: 0px 4px;
	vertical-align: top;
	display: inline-block;
	width: 70%;
	/*margin: 0px;
	padding: 0px 4px;
	width: 25%;
	vertical-align: top;
	text-align: left;/**/
}
#searchresult .adata .desc p{
	font-size: 120%;
	font-weight: bold;
	line-height: 1.1;
}
#searchresult2 .adata2 .desc2 p ruby{
	font-size: 120%;
	font-weight: bold;
	line-height: 1.1;
}

#searchresult2 .adata2 .desc2 ul {
	margin: 5px 15px;
	padding: 0px 0px 0px 5px;
	list-style: "♥ ";
}
#searchresult2 .adata2 .desc2 ul li {
	color: #9b1c38;
}
#searchresult .adata .desc .twitterimg{
	display:inline-block;
	height: 12px;/**/
	/*line-height: 1.1;*/
	vertical-align: middle;
}

#searchresult2 .adata2 .desc2 .twitterimg{
	display:inline-block;
	height: 12px;/**/
	/*line-height: 1.1;*/
	vertical-align: middle;
}
#searchresult2 .adata2 .detaillink {
	display: block;
	cursor:pointer;     /*←これでカーソルを指先型に変化させる*/
	font-size:90%;
	font-weight: bold;
	width:100px;
	height: 15px;
	line-height: 15px;
	padding: 5px 10px;
	margin: 0px;
	border-style:none;
	color: #fff;
　　text-align: center;
	text-align: -moz-center;
    text-align: -webkit-center;
	/*background:#90E733;
/*↓背景グラデーションの指定です*/
	background: -moz-linear-gradient(top, #e9869c, #9b1c38 50%, #e9869c);
	background: -webkit-linear-gradient(top, #e9869c, #9b1c38 50%, #e9869c);
	background: linear-gradient(#e9869c, #9b1c38 50%, #e9869c);
/*↓以下、ボックスの角丸、シャドウ、テキストシャドウの指定*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 2px 2px 3px 1px #666;
	-webkit-box-shadow: 2px 2px 3px 1px #666;
	box-shadow: 2px 2px 3px 1px #666;
	text-shadow: 1px 1px 2px #000; 
	
	/*
	display: inline-block;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	width: 70%;
	height: 25px;
	line-height: 25px;
	margin: 5px 15px;
	padding: 0px 0px;
    background-image: linear-gradient(135deg, #ffffff 0, #9b1c38 50%, #ffffff 100%);
    background-image: linear-gradient(135deg, #9b1c38 0, #ffffff 50%, #9b1c38 100%);
	text-align: center;
	border: 1px solid;
	border-color: #7D7D7D;/*C0C0C0;
	color: #9b1c38;
	font-weight: bold;*/
}
#searchresult .adata .desc ul {
	margin: 0px;
	padding: 0px 4px;
	/*display: table-cell;
	width: 70px;
	vertical-align: top;*/
	font-size: 10px;
	color: #4B0082;
}
#searchresult .adata .desc ul li {
	/*width: 70px;*/
	padding: 1px 0px;
	margin: 0px;
}
#searchresult .adata .dmmad {
	display: table-cell;
	width: 50%;
	/*max-width: 100%;*/
	/*width: auto;*/
	/*width: 150px;*/
	/*margin: auto;*/
	margin: 5px;
	/*vertical-align: top;*/
	vertical-align: middle;
	/*float: left;*/
	text-align: center;
}
#searchresult2 .adata2 .dmmad2 {
	/*display: inline-block;*/
	/*float: right;*/
	width: 30%;
	margin: 5px 20px 5px 5px;
	vertical-align: middle;
	text-align: center;
}
#searchresult .adata .dmmad img {
	/*max-width: 100%;*/
	/*width: auto;*/
	height: auto;
	margin: 15px auto 0px auto;
}
#searchresult2 .adata2 .dmmad2 img {
	max-width: 100%;
	vertical-align: middle;
	/*width: 100%;*/
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
#searchresult .adata .dmmad p {
	/*max-width: 150px;*/
	/*width: auto;*/
	font-size: 8px;
	/*line-height: 9px;*/	
	margin: 0px auto 15px auto;
	padding: 0px;
	/*overflow: hidden;
	-o-text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;*/
}
#searchresult2 .adata2 .dmmad2 p {
	max-width: 90%;
	font-size: 80%;
	margin: 3px auto 15px auto;
	padding: 0px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dmmsidead {
	width: 95%;
	margin: 12px 2px 0px 2px;
}
.dmmsidead span {
	font-size: 12px;
	margin: 0px;	
	padding: 0px;
	display: block; /*ここ以下はテキストを1行にしてはみ出しを「…」にするために追加*/
	max-width: 100%;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dmmsidead img{
	width: 100%;
	margin: 0px;	
}

.actressdetailbody{
	margin: 0px; 
	padding: 0px;
	/*background-color: #fbeff8;*/
    background-image: linear-gradient(90deg, #fbeff8 0, #ffffff 50%, #fbeff8 100%);/**/
}

#actressdetail {
	/*width: 90%;*/
	/*width: 100%;*/
	/*height: 300px;*/
	/*display: table-row;*/
	/*table-layout: fixed;*/
	margin: 0px 0px; 
	padding: 10px 15px;
	/*background-color: #fbeff8;/*#ffebeb;/*#F5FFFA;*/
	border: hidden;/*ridge 3px #0000CC;*/  
	/*background-color: #99CCFF;*/
}
#actressdetail .photoandname {
	display: inline-block;
	width: 110px;/*30%;*/
	margin: 0px 10px 0px 0px;
}
#actressdetail .photoandname>img {
	/*display: table-cell;*/
	margin: 15px 15px 5px 0px;
	max-width: 100px; 
	/*height:100px;*/
	/*vertical-align: top;*/
	/*vertical-align: middle;*/
	/*float: left;*/
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	/*-webkit-box-align: center;*/ /* safari, Chrome対応 */
	/*-moz-box-align: center;*/    /* Firefox対応 */
	/*-o-box-align: center;*/      /* Opera対応 */
	/*-ms-box-align: center; */    /* IE対応 */
	/*box-align: center;*/         /* ベンダープレフィックス無しも併記する */
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-moz-box-shadow: 2px 2px 3px 1px #999;
	-webkit-box-shadow: 2px 2px 3px 1px #999;
	box-shadow: 2px 2px 3px 1px #999;
}
#actressdetail .photoandname .desc {
	margin: 0px 15px 5px 0px;
	padding: 0px 4px;
	vertical-align: top;
	/*display: table-cell;
	margin: 0px;
	padding: 0px 4px;
	width: 25%;
	vertical-align: top;
	text-align: left;/**/
}
#actressdetail .photoandname .desc p{
	font-size: 115%;
	font-weight: bold;
	line-height: 1.1;
	text-align: center;
}
#actressdetail .workslink {
	display: block;
	cursor:pointer;     /*←これでカーソルを指先型に変化させる*/
	font-size:90%;
	font-weight: bold;
	width:90px;
	height: 13px;
	line-height: 15px;
	padding: 5px 10px;
	margin: 0px;
	border-style:none;
	color: #fff;
　　text-align: center;
	text-align: -moz-center;
    text-align: -webkit-center;
	/*background:#90E733;
/*↓背景グラデーションの指定です*/
	background: -moz-linear-gradient(top, #e9869c, #9b1c38 50%, #e9869c);
	background: -webkit-linear-gradient(top, #e9869c, #9b1c38 50%, #e9869c);
	background: linear-gradient(#e9869c, #9b1c38 50%, #e9869c);
/*↓以下、ボックスの角丸、シャドウ、テキストシャドウの指定*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 2px 2px 3px 1px #666;
	-webkit-box-shadow: 2px 2px 3px 1px #666;
	box-shadow: 2px 2px 3px 1px #666;
	text-shadow: 1px 1px 2px #000; 
}
#actressdetail .descdetail {
	padding: 5px 0px 0px 0px;
	margin: 0px 0px 0px 15px;
	display: inline-block;
	width: 50%;
	vertical-align: top;
}
#actressdetail .descdetail ul{
	padding: 0px 0px 0px 1px;
	margin: 0px;
	list-style-type: none;
}
#actressdetail .descdetail ul li.detaillist{
	border-bottom: 1px solid #cccccc;
	padding: 10px 0px 0px 0px;
}
#actressdetail .actressdetaildesc {
	font-size: 80%;
	line-height: 1;
	margin: 10px 0px 0px 0px;
}
#actressdetail .descdetail .descdetailitem {
	font-size: 80%;
	display: inline-block;
	width: 55px;
	font-weight: bold;
	padding: 0px 0px 0px 0px;
	/*line-height: 1.1;*/
	color: #000080;
	/*border-bottom: 1px solid grey;*/
}
#actressdetail .twitterimg{
	display:inline-block;
	height: 12px;/**/
	/*line-height: 1.1;*/
	vertical-align: middle;
}
#actressdetail .dmmaddetail {
	margin: 2px 0px 0px 0px;
	display: flex;/**/
	flex-wrap: wrap;
	align-items: center;
	/*float: left;/**/
	/*display: table-cell;/**/
}/**/




/*
 * セール情報ページの旧CSS
 * 新CSSの安定稼働後削除可能
 * ここから
 */

#actressdetail .dmmaddetail a{
	padding: 1px 1px 1px 1px;
	/*width: 19.5%;*/
}
#actressdetail .dmmaddetail .dmmsalesadunit {
	width: 31%;
	margin: 5px 3px;
    position: relative;
    z-index: 1; /* 必要であればリンク要素の重なりのベース順序指定 */
	/*display: flex;/**/
	/*float: left;/**/
	/*display: table-cell;/**/
}/**/
/*#actressdetail .dmmaddetail .dmmsalesadunit .dmmadimg {
	margin: 5px 5px;
	width: auto;
	height: auto;
}/**/
#actressdetail .dmmaddetail .dmmsalesadunit img {
	/*margin: 5px 5px;*/
	width: 100%;
	height: 70%;
}/**/
/*#actressdetail .dmmaddetail .dmmadimg:hover {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
  transform: translateY(-0.1875em);
}/**/
#actressdetail .dmmaddetail .dmmsalesadunit .dmmadimg:hover {
    filter:alpha(opacity=70);/* IE 6,7*/
    -ms-filter: "alpha(opacity=70)";/* IE 8,9 */
    -moz-opacity:0.7;/* FF , Netscape */
    -khtml-opacity: 0.7;/* Safari 1.x */
    opacity:0.7;
    zoom:1;/*IE*/
}
#actressdetail .dmmaddetail .dmmsalesadunit a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2; /* 必要であればリンク要素の重なりのベース順序指定 */
}/**/
#actressdetail .dmmaddetail .dmmsalesadunit:hover {
    filter:alpha(opacity=70);/* IE 6,7*/
    -ms-filter: "alpha(opacity=70)";/* IE 8,9 */
    -moz-opacity:0.7;/* FF , Netscape */
    -khtml-opacity: 0.7;/* Safari 1.x */
    opacity:0.7;
    zoom:1;/*IE*/
}
#actressdetail .dmmaddetail .dmmsalesadunit .dmmaddetaildesc{
	font-size: 100%;
	/*font-size: 70%;*/
	line-height: 1;
	vertical-align: top;
	margin: 0px 0px 5px 0px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}/**/
#actressdetail .dmmaddetail .dmmsalesadunit .dmmsalesinfodesc{
	font-size: 100%;
	/*font-size: 70%;*/
	line-height: 1;
	vertical-align: top;
	margin: 0px 0px 5px 0px;
	/*overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;/**/
	color: #ff4500;
}
#actressdetail .dmmaddetail .dmmsalesadunit .dmmaddetaildesc .saleprice{
	font-size: 120%;
	color: #b22222;
	font-weight: bold;
}

/*
 * セール情報ページの旧CSS
 * 新CSSの安定稼働後削除可能
 * ここまで
 */




/*
 * セール情報ページの新CSS
 * ここから
 */
.searchresultbody {
	margin: 0px;
	font-size: 13px;
    line-height: 1.5;
}

#dmmsaleinfowrapper {
	/*width: 90%;*/
	/*width: 100%;*/
	/*height: 300px;*/
	/*display: table-row;*/
	/*table-layout: fixed;*/
	margin: 0px; 
	padding: 0px;
	/*background-color: #fbeff8;/*#ffebeb;/*#F5FFFA;*/
	border: hidden;/*ridge 3px #0000CC;*/  
	/*background-color: #99CCFF;*/
}
#dmmsaleinfowrapper .dmmadlist {
	margin: 2px 0px 0px 0px;
	display: flex;/**/
	flex-wrap: wrap;
	align-items: center;
	/*float: left;/**/
	/*display: table-cell;/**/
}/**/
#dmmsaleinfowrapper .dmmadlist a{
	padding: 1px 1px 1px 1px;
	/*width: 19.5%;*/
}
#dmmsaleinfowrapper .dmmadlist .dmmsalesadunit {
	width: 31%;
	margin: 5px 3px;
    position: relative;
    z-index: 1; /* 必要であればリンク要素の重なりのベース順序指定 */
	/*display: flex;/**/
	/*float: left;/**/
	/*display: table-cell;/**/
}/**/
#dmmsaleinfowrapper .dmmadlist .dmmsalesadunit img {
	/*margin: 5px 5px;*/
	width: 100%;
	height: 70%;
}/**/
/*#actressdetail .dmmaddetail .dmmadimg:hover {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
  transform: translateY(-0.1875em);
}/**/
#dmmsaleinfowrapper .dmmadlist .dmmsalesadunit .dmmadimg:hover {
    filter:alpha(opacity=70);/* IE 6,7*/
    -ms-filter: "alpha(opacity=70)";/* IE 8,9 */
    -moz-opacity:0.7;/* FF , Netscape */
    -khtml-opacity: 0.7;/* Safari 1.x */
    opacity:0.7;
    zoom:1;/*IE*/
}
#dmmsaleinfowrapper .dmmadlist .dmmsalesadunit a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2; /* 必要であればリンク要素の重なりのベース順序指定 */
}/**/
#dmmsaleinfowrapper .dmmadlist .dmmsalesadunit:hover {
    filter:alpha(opacity=70);/* IE 6,7*/
    -ms-filter: "alpha(opacity=70)";/* IE 8,9 */
    -moz-opacity:0.7;/* FF , Netscape */
    -khtml-opacity: 0.7;/* Safari 1.x */
    opacity:0.7;
    zoom:1;/*IE*/
}
#dmmsaleinfowrapper .dmmadlist .dmmsalesadunit .dmmaddetaildesc{
	font-size: 100%;
	/*font-size: 70%;*/
	line-height: 1;
	vertical-align: top;
	margin: 0px 0px 5px 0px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}/**/
#dmmsaleinfowrapper .dmmadlist .dmmsalesadunit .dmmsalesinfodesc{
	font-size: 100%;
	/*font-size: 70%;*/
	line-height: 1;
	vertical-align: top;
	margin: 0px 0px 5px 0px;
	/*overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;/**/
	color: #ff4500;
}
#dmmsaleinfowrapper .dmmadlist .dmmsalesadunit .dmmaddetaildesc .saleprice{
	font-size: 120%;
	color: #b22222;
	font-weight: bold;
}
/*
 * セール情報ページの新CSS
 * ここまで
 */





#actressdetail .dmmaddetail .fanzafreesample{
	font-size: 90%;
	/*line-height: 1;*/
    max-width: 560px;
    width: 100%; /* 追加：幅を明示的に100%に設定 */
    /*height: 368px;*/
	/*width: 100%;*/
	vertical-align: top;
	margin: 15px auto 0px auto;
	/*margin: 15px 0px 0px 0px;*/
	overflow: hidden;
    /* text-overflow: ellipsis; */ /* 削除 */
    /* white-space: nowrap; */ /* 削除 */
}/**/
/* ▼画面サイズ（横幅）が560px以上の場合に適用 */
@media screen and (min-width: 560px) {
	#actressdetail .dmmaddetail .fanzafreesample{ width: 560px; }
}
#actressdetail .dmmaddetail .freesampleiframe-wrapper{
    position: relative;
    padding-bottom: 66.66%; /*75%;*/
    /*height: 0;*/
	width: 100%;
    /*height: 100%;*/
    overflow: hidden;
}
/* ▼画面サイズ（横幅）が560px以上の場合に適用 */
@media screen and (min-width: 560px) {
	#actressdetail .dmmaddetail .freesampleiframe-wrapper{ width: 100%; } /*560px; }*/
}
	
#actressdetail .dmmaddetail .freesampleiframe-wrapper iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	border: none;
}
#actressdetail .dmmaddetail .fanzafreesample img{
	vertical-align: top;
}/**/
/*
.fanzasaleiframe{
position:relative;
width:100%;
height:100%;
}
.fanzasaleiframe iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}/**/
.fanzasaleiframe {
  position: relative;
  width: 100%;
  /*height: 3100px;*/
  /*padding: 75% 0 0 0;*/
}
.fanzasaleiframe iframe{
    border: none;
    /*border-style: ridge;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*frameborder: 0;*/
    /*padding: 10px;*/
    /*seamless;*/
    overflow: visible;
}
/*
.movie-wrap {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
/*     height: 0;
     overflow: hidden;
} 
.movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}/**/
#loading {
     display:none;
}
#mainsearchresultdiv{ /*検索結果ページのiframe wrapper*/
	height: 500px;
}
#actressdetailinforesultdiv{ /*女優詳細ページのiframe wrapper*/
	height: 1000px;
}
#newcomerresultdiv{
	height: 500px;
}
#birthdayresultdiv{
	height: 500px;
}






/*
 * ページングデザイン用（2023/3/27）
 */

.pagination__btn--last, .pagination__btn--first, .pagination__btn--next, .pagination__btn--prev, .pagination__item a, .pagination__item--current {
  box-sizing: border-box;
  display: block;
  color: #8A0101;
  text-decoration: none;
  text-align: center;
  background: #FFF;
  border-right: 1px solid #EBEBEB;
  min-width: 3em; /*default 3em*/
  transition: all 0.2s;
  margin: 0;
  padding: 1em;
}
.pagination__btn--last:hover, .pagination__btn--first:hover, .pagination__btn--next:hover, .pagination__btn--prev:hover, .pagination__item a:hover, .pagination__item--current:hover {
  color: #FFF;
  background: #8A0101;
}

.pagination {
  background: #FFF;
  width: fit-content;
  display: flex;
  justify-content: center;
  line-height: 1;
  border-radius: calc(1.6em);
  margin: 0 auto;
  padding: 0 1em;
  font-size: 14px; /*自分で追加*/
}
.pagination__list {
  display: none;
}
.pagination__pos {
  order: 3;
  color: #8A0101;
  border-right: 1px solid #EBEBEB;
  margin: 0;
  padding: 1em;
}
.pagination__btn--prev {
  order: 2;
}
.pagination__btn--next {
  order: 4;
  border-right: 1px solid #EBEBEB;
}
.pagination__btn--first {
  order: 1;
  display: block;
}
.pagination__btn--last {
  order: 5;
  display: block;
  border: none;
}
@media (min-width: 520px) {
  .pagination__list {
    order: 3;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .pagination__item {
    margin: 0;
  }
  .pagination__item--current {
    background: #8A0101;
    color: #FFF;
    font-weight: bold;
  }
  .pagination__pos {
    display: none;
  }
}
