@charset "utf-8";
/*
-----------------------------------------
 
 【CSS編集 目次】

　(1) 文字のスタイル
　(2) ボタンのスタイル
　(3) エリアのスタイル
　(4) その他、拡張

  ※CSS編集で広告を修正しないでください
  （規約違反に該当する可能性があります）

-----------------------------------------
*/

/*
基本13px、IE7はsmall、IE6はx-small
希望のフォントサイズ(px) : 指定する値(%)
10px : 77%
11px : 85%
12px : 93%
13px : 100%
14px : 108%
15px : 116%
16px : 123.1%
17px : 131%
18px : 138.5%
19px : 146.5%
20px : 153.9%
21px : 161.6%
22px : 167%
23px : 174%
24px : 182%
25px : 189%
26px : 197%
*/



/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊


　(1) 文字のスタイル


＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/



/* (1-1) 全体の文字
--------------------------------------------*/


/* 通常文字 */
.skinTextColor,.skinBaseTextColor,.skinBlock,body{
font-family: "メイリオ","Meiryo", "Osaka", "MS Pゴシック", "MSゴシック",Helvetica, verdana, arial;
color:#333333;
font-size: 13px;
*font-size: small;
*font: x-small;
}


/* リンク */
.skinAnchorColor,.skinBaseAnchorColor,.skinBlock a,a{
color:#06C;
text-decoration: underline;
}


/* 訪問済のリンク */
.skinAnchorVisitedColor,.skinBaseAnchorVisitedColor,.skinBlock a:visited,a:visited{
/*color:#996699;*/
color:#06C;
}


/* マウスオーバーしたときのリンク */
.skinAnchorHoverColor,.skinBaseAnchorHoverColor,.skinBlock a:focus,.skinBlock a:hover,a:focus,a:hover{
color:#F36;
text-decoration: none;
}


/* 弱い文字 （日付など）*/
.skinWeakColor,.skinBaseWeakColor{
color:#999999;
}


/* 強い文字 （NEW! 更新!など）*/
.skinStrongColor,.skinBaseStrongColor{
color:#ff3399;
}



/* (1-2) ブログタイトル文字
--------------------------------------------*/


/* skinTitle ブログタイトル文字 */
.skinTitle, .skinDescription {
text-shadow: 1px 1px 3px rgba(0,0,0,1);
filter: dropshadow(color=#000000, offx=1, offy=1);
display: block;
}

.skinTitle,.skinTitle:visited,.skinTitle:hover,.skinTitle:focus{
color:#F7F7F7;
font-weight:bold;
/*font-size:2.11em;*/
font-size:1.89em;
}

/* skinDescription ブログの説明文字 */
.skinDescription{
font-size: 1.23em;
color:#F7F7F7;
width: 610px;
}



/* (1-3) 記事／メッセージボード内の文字のスタイル
--------------------------------------------*/

/* skinArticleTitle 記事タイトル文字 */
.skinArticleTitle,.skinArticleTitle:hover,.skinArticleTitle:focus,.skinArticleTitle:visited{
/*font-size:1.31em;*/
font-size: 1.82em;
font-weight:bold;
/*color:#0066cc;*/
color: #FFF;
border-left: 5px solid #C00;
padding: 0 5px;
display: block;
text-shadow: 1px 1px 3px rgba(0,0,0,1);
filter: dropshadow(color=#000000, offx=1, offy=1);
}



/* (1-4) サイドバー内の文字のスタイル
--------------------------------------------*/

/* skinMenuTitle サイドメニュータイトル文字 */
.skinMenuTitle{
border-left: 3px solid #C00;
color: #FFF;
padding: 0 5px;
}






/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊


 (2) ボタンのスタイル
 ※ボタンの背景画像や文字の色などを指定


＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/


/* (2-1) ボタン[横180px 縦35px]
--------------------------------------------*/


/* ボタンの背景画像 ※[横180px 縦35px]のボタンの背景画像を指定 */
.skinImgBtnM{
background-image:url(//stat100.ameba.jp/p_skin/wu_pf_cssedit/img/skin_btn_m.png);
}


/* ボタンの文字色 */
.skinImgBtnM:hover span,.skinImgBtnM:focus span,.skinImgBtnM span{
color:#333333 !important;
}




/* (2-2) アイコン付きボタン[横128px 縦28px]
--------------------------------------------*/


/* アイコン付き ボタンの背景画像 ※[横128px 縦28px]のボタンの背景画像を指定 */
.skinImgBtnS{
background-image:url(//stat100.ameba.jp/p_skin/wu_pf_cssedit/img/skin_btn_s.png);
}



.skinImgBtnS:hover span,.skinImgBtnS:focus span,.skinImgBtnS span{
/*
 アイコン画像は下記から指定
 menu_icons_pastel.png (パステル）
 menu_icons_gray.png（グレー）
 menu_icons_black.png（黒）
 menu_icons_white.png（白）
*/
background-image:url(//stat100.ameba.jp/common_style/img/skin/cmn/icons/menu_icons/menu_icons_pastel.png);
color:#333333 !important;/* ←ボタンの文字色 */
}




/* (2-3) ページ送りボタンの  << 次へ 、前へ >> 、「次の記事タイトル」 >> ボタン
--------------------------------------------*/


.skinSimpleBtn,.skinSimpleBtn:visited,.skinSimpleBtn:hover,.skinSimpleBtn:focus{
border:1px solid #dddddd;
background:#ffffff;
color:#0066cc !important;
}


/* ボタンにマウスオーバー */
.skinSimpleBtn:hover,.skinSimpleBtn:focus{
background:#f7f7f7;
}





/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊


 (3) エリアのスタイル
 ※背景画像、サイズ、ボーダーなどを各部分ごとに指定


＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/



/* (3-1) ボディ（全体）
--------------------------------------------*/


/* skinBody ボディ */
.skinBody{}/* ←ブログ全体に背景を敷きたいとき */
.skinBody2{}
.skinBody3{}

.skinBody img {
margin: 0;
}


/* (3-2) ブログヘッダー
--------------------------------------------*/

/* skinHeaderFrame ブログヘッダーバナーエリア */
.headerBnrArea {
background: #000;
}

/* skinHeaderFrame ブログヘッダーエリア */
.skinHeaderFrame {
/*background: #000 url(//stat.blogskin.ameba.jp/blogskin_images/20130215/02/16/07/g/o01830092lovestrategist1360863256040.gif) repeat left top;*/

/*background: #600 url(//stat.blogskin.ameba.jp/blogskin_images/20150729/01/ee/Wx/g/o01850094lovestrategist1438099645269.gif) repeat left top;*/

background: #FFF url(//stat.blogskin.ameba.jp/blogskin_images/20150729/12/4b/WL/j/o28800760lovestrategist1438140818756.jpg) no-repeat center center;
background-size: cover;

margin: 0 0 60px;
}

.skinHeaderArea {
width: 100%;
/*background: url(//stat.blogskin.ameba.jp/blogskin_images/20130215/03/da/a8/p/o11000380lovestrategist1360867703688.png) no-repeat center bottom;*/
}

/* skinHeaderArea ブログヘッダー980pxエリア */
.skinHeaderArea2 {
width: 980px;
height: 380px;
margin: 0 auto;
position: relative;
background: url(//stat.blogskin.ameba.jp/blogskin_images/20150729/01/e6/mh/p/o03400380lovestrategist1438100307322.png) no-repeat right bottom;

background: url(//stat.blogskin.ameba.jp/blogskin_images/20150729/01/e6/mh/p/o03400380lovestrategist1438100307322.png) no-repeat right 30px bottom;
}/* ←ブログヘッダーに背景画像を敷きたいとき */

/* skinBlogHeadingGroupArea タイトルと説明を囲うエリア */
.skinBlogHeadingGroupArea{
/*background:#C00;
background: rgba(204, 0, 0, 0.8);*/
background:#000;
background: rgba(0, 0, 0, 0.7);
/*width: 520px;*/
padding:20px 20px 30px;
position: absolute;
left: 0;
top: 100px;
}


/* skinTitleArea ブログタイトルのエリア */
.skinTitleArea{
padding-bottom:4px;
}


/* skinDescriptionArea ブログの説明エリア */
.skinDescriptionArea{}

.skinFrame {
padding-top: 0!important;
}

#headermenu {
  width: 100%;
  height: 40px;
  margin: 0 auto;
  position: absolute;
  top: 410px;
  left: 0;
  background: rgb(204,0,0);
  /*background: rgb(69,72,77);
  background: -moz-linear-gradient(top,  rgba(69,72,77,1) 0%, rgba(38,38,38,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(69,72,77,1)), color-stop(100%,rgba(38,38,38,1)));
  background: -webkit-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
  background: -o-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
  background: -ms-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
  background: linear-gradient(to bottom,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#262626',GradientType=0 );*/
  box-shadow: 0 2px 2px rgba(0,0,0,0.5);
}

#mainmenu {
  width: 978px;
  height: 40px;
  padding: 0;
  border-left: 1px solid rgba(0,0,0,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
  margin: 0 auto;
}

#mainmenu li {
  width: 161px;
  height: 40px;
  float: left;
  border-right: 1px solid rgba(0,0,0,0.3);
  border-left: 1px solid rgba(255,255,255,0.3);
  font-weight: bold;
}

#mainmenu li a {
  background: rgba(0,0,0,0);
  -webkit-transition: background-color 0.3s ease-in-out 0s;
  -moz-transition: background-color 0.3s ease-in-out 0s;
  transition: background-color 0.3s ease-in-out 0s;
}

#mainmenu li a, #mainmenu li span {
  display: block;
  width: 100%;
  height: 30px;
  text-decoration: none;
  text-align: center;
  color: #FFF;
  background: rgba(0,0,0,0);
  padding: 10px 0 0 0;
  overflow: hidden;
}

#mainmenu li a:hover {
background: rgba(0,0,0,0.2);
}

#mainmenu a::after,#mainmenu span::after {
display: block;
font-size: 77%;
height: 1em;
font-weight: normal;
line-height: 0.2;
text-shadow: none;
opacity: 0.6;
-webkit-transition: opacity 0.3s ease-in-out 0s;
-moz-transition: opacity 0.3s ease-in-out 0s;
transition: opacity 0.3s ease-in-out 0s;
}

#mainmenu a:hover::after {
opacity: 1;
}

#mainmenu .profile a::after, #mainmenu .profile span::after {
content: "profile";
}

#mainmenu .session a::after, #mainmenu .session span::after {
content: "session";
}

#mainmenu .voice a::after, #mainmenu .voice span::after {
content: "voice";
}

#mainmenu .mailmag a::after, #mainmenu .mailmag span::after {
content: "mailmagazine";
}
#mainmenu .twitter a::after, #mainmenu .twitter span::after {
content: "twitter";
}

#mainmenu .facebook a::after, #mainmenu .facebook span::after {
content: "facebook";
}

/* (3-3) コンテンツエリア
--------------------------------------------*/


/* skinContentsArea コンテンツ980pxエリア */
.skinContentsArea{
/* 注 ベースのcssにwidth:980px;の記述有り */
}


/* (3-4) メインエリア
--------------------------------------------*/

.columnB .skinMainArea {
width: 667px;
margin: 0 auto 2em;
}

.skinMainArea{}




/* (3-5) メッセージボード
--------------------------------------------*/


.skinMessageBoard{
/* 注 ベースのcssに margin-bottom の記述有り */
border-top:1px dotted #979797;
border-bottom:1px dotted #979797;
background:#ffffff;/* ←メッセージボードに背景を敷きたいとき */
}
.skinMessageBoard2{}
.skinMessageBoard3{
padding:10px 10px;
}




/* (3-6) 記事
--------------------------------------------*/

/* skinArticle 記事エリア */
.skinArticle{
/* 注　ベースのcssに margin-bottom の記述有り */
width: 665px;
margin: 0 auto 2em;
/*padding:16px 0;*/
padding:0 0 16px;
border:none;
background:#FFF;/* ←記事に背景を敷きたいとき */
-webkit-box-shadow:  0px 2px 2px 0px rgba(0, 0, 0, 0.6);
-moz-box-shadow:    0px 2px 2px 0px rgba(0, 0, 0, 0.6);
box-shadow:         0px 2px 2px 0px rgba(0, 0, 0, 0.6);
}
.skinArticle2{}
.skinArticle3{}


/* skinArticleHeader 記事タイトルエリア */
.skinArticleHeader{
/*margin:0 29px;*/
margin: 0;
padding:8px 10px;
/*border-left:5px solid #e4e4e4;*/
border-left: none;

background: rgb(69,72,77);
background: -moz-linear-gradient(top,  rgba(69,72,77,1) 0%, rgba(38,38,38,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(69,72,77,1)), color-stop(100%,rgba(38,38,38,1)));
background: -webkit-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
background: -o-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
background: -ms-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
background: linear-gradient(to bottom,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#262626',GradientType=0 );
}
.skinArticleHeader2{}


/* skinArticleBody 記事本文エリア */
.skinArticleBody{}
.skinArticleBody2{
margin:0 29px;
}


/* skinArticleFooter 記事フッターエリア */
.skinArticleFooter{
margin:10px 29px 0;
border-top:1px dotted #949494;
}





/* (3-7) サイドバーエリア
--------------------------------------------*/
/*サイドバーエリアの横幅*/
.columnB .skinSubA {
width: 302px;
}
.skinSubArea{

} /* サイドバーエリア共通 */

.skinSubA{

} /* 300pxのサイドバーエリア */

.skinSubA2{

} /* 300pxのサイドバーエリア */

.skinSubB{} /* 180pxのサイドバーエリア */



/* (3-8) サイドバー　メニュー
--------------------------------------------*/


/* skinMenu サイドバー　メニューのエリア */
.skinMenu{
/* 注　ベースのcssに margin-bottom の記述有り */
background:#F7F7F7;/* ←サイドメニューに背景を敷きたいとき */
width: 300px;
margin: 0 auto 1em;

-webkit-box-shadow:  0px 2px 2px 0px rgba(0, 0, 0, 0.6);
-moz-box-shadow:    0px 2px 2px 0px rgba(0, 0, 0, 0.6);
box-shadow:         0px 2px 2px 0px rgba(0, 0, 0, 0.6);
}
.skinMenu2{}


/* skinMenuHeader サイドメニュータイトルエリア */
.skinMenuHeader{
padding:6px 6px;
/*background: #222;←サイドメニューのタイトルに背景を敷きたいとき */
background: rgb(69,72,77);
background: -moz-linear-gradient(top,  rgba(69,72,77,1) 0%, rgba(38,38,38,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(69,72,77,1)), color-stop(100%,rgba(38,38,38,1)));
background: -webkit-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
background: -o-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
background: -ms-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
background: linear-gradient(to bottom,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#262626',GradientType=0 );

color: #FFF;
}


/* skinMenuBody サイドメニュー本文エリア */
.skinMenuBody{
margin:10px;
padding:10px;
background:#FFF;/* ←サイドメニューの本文に背景を敷きたいとき */
}

.readerMenu .skinSubList li, .favoriteMenu .skinSubList li {
font-size: 0.93em;
}


/* (3-9) サイドバーの　リスト画像、ボーダー　※要素のbottomに指定すること
--------------------------------------------*/


.skinSubHr,
.skinSubList li{
margin-bottom:3px;
padding-bottom:3px;
border-bottom:1px dotted #b3b3b3;
}



/* (3-10) コメント欄、記事一覧などの一覧
--------------------------------------------*/


/* 背景色 */
.skinBgColor,.skinBaseBgColor,.skinBlock{
background-color:#ffffff;
}


/* 弱い背景色 */
.skinWeakBgColor,.skinBaseWeakBgColor{
background-color:#f7f7f7;
}


/* 強い背景色 */
.skinStrongBgColor,.skinBaseStrongBgColor{
background-color:#f7f7f7;
}


/* 枠線の色 */
.skinBorderColor,.skinBaseBorderColor,.skinBlock{
border-color:#dddddd;
}


/* 境界線の色 */
.skinBorderHr,.skinBorderList li{
border-color:#b3b3b3;
}




/*
＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊


 (4) その他、拡張


＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊:::＊
*/


/* その他、拡張があれば記述 */

/* アメーババーを薄く(半透明に)する方法 */
/*#amebaBar{
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: alpha(opacity=50);
}
#amebaBar:hover{
 opacity: 1.00;
 filter: alpha(opacity=100);
 -ms-filter: alpha(opacity=100);
}*/

/* 記事のタイトルと本文のフォントサイズなど */

.articleText{
font-size:1.08em;
line-height: 2em;
/*border-bottom: 1px dotted #CCC;*/
margin: 0;
padding: 0 0 1em;
}

.impact {
	font-weight:bold;
	font-size:18px;
}

.mensWords {
	color: rgb(0, 0, 255);
	font-weight: bold;
	font-size: 16px;
}

.girlsWords {
	color: rgb(255, 20, 147);
	font-weight: bold;
	font-size: 16px;
}

.otherWords {
	color: rgb(0, 191, 0);
	font-weight: bold;
	font-size: 16px;
}

.photoBy {
font-size: 10px;
/*display: block;
text-align: right;*/
}
.photoBy a, .photoBy a:link, .photoBy a:visited, .photoBy a:hover, .photoBy a:active {
text-decoration: none;
color:#333;
}

/*YouTube貼りこみレスポンシブ対応*/
.vWrap {
position:relative;
width:100%;
padding-top:56.25%;
overflow: hidden;
}
.vWrap iframe,
.vWrap object,
.vWrap embed {
position:absolute;
top:0;
right:0;
width:100%;
height:100%;
}

/*div.n {
margin: 2em 0 0;
border-top: 1px dotted #CCC;
}*/

/* タグの再定義 */
.articleText blockquote {
margin: 0 0 2em;
padding: 0.5em;
border: 1px #CCC solid;
font-family: "Osaka", "MS Pゴシック", "MSゴシック",Helvetica, verdana, arial;
font-size: 1.08em;
font-style: nomal;
}

.articleText blockquote p:last-child {
margin: 0;
}

.articleText h4 {
font-size:123.1%;
border-left: 5px solid #C00;
border-bottom: 1px solid #CCC;
padding:0 0 0 5px;
margin: 0 0 1.5em;
}

.articleText h4 + br {
display: none;
}

.articleText p {
margin: 0 0 2em;
}

/* ソーシャルボタン格納ボックス */
.socialbuttons1 {
margin: 1em 0 0;
}

.socialbuttons2 {
float: right;
}

.fb-page, .fb-like-box {
margin: 0 0 1em;
}

.twitter-timeline {
margin: 0 0 1em;
}

a#amepi_link {
margin: 0 auto 1em!important;
width:120px;
height:90px;
display:block;
}

/*同じテーマの最新記事*/
.articleThemeListArea {
border: 1px solid rgb(221, 221, 221) !important;
padding: 10px;
}

.articleThemeHeading {
color:#C00;
font-size:1.231em;
margin: 0 0 0.5em;
padding:0;
}

.articleThemeListArea ul {
margin: 0;
}
.articleThemeListArea li {
font-size:1.16em;
line-height: 1.5em;
padding: 0;
margin: 0 0 0.5em;
list-style: disc inside;
}

.articleThemeListArea .themeListTtl {
display: inline;
}

.articleThemeListArea .themeListTime {
display: inline;
float: none;
}

.articleThemeListArea .themeListIineCnt {
display: inline;
float: none;
}

.articleThemeListArea .themeListCommentCnt {
display: inline;
float: none;
}

.articleThemeListArea li.themeListMore {
list-style: none;
}

.linkwithin_div a {
display: block;
height: 220px;
overflow: hidden;
}

.linkwithin_posts {
border: 1px solid rgb(221, 221, 221) !important;
display: block;
overflow: hidden;
}
#linkwithin_logolink_0 {
display: inline;
height: auto;
overflow: auto;
}

table.dataTable {
border-collapse:collapse;
border: 1px solid #CCC;
}

table.dataTable th, table.dataTable td {
border:1px solid #CCC;
padding:5px;
}
table.dataTable th {
white-space:nowrap;
}

.seminarBanner{
margin: 0 0 1em;
}

.seminarBanner a {
color:#FFF;
text-shadow: 1px 1px 3px rgba(0,0,0,1);
filter: dropshadow(color=#000000, offx=1, offy=1);
text-decoration: none;
display:block;
padding:154px 0 0;
font-size: 2em;
font-weight: bold;
border:1px  solid #F00;
background: url(http://love-strategy.com/blogimg/20140824_seminar_header.jpg) no-repeat  -40px -80px;
}


.seminarBanner a:hover {
color:#FFF;
border:1px  solid #F90;
background: url(http://love-strategy.com/blogimg/20140824_seminar_header.jpg) no-repeat  -40px -80px;
}

.seminarBanner a span {
padding: 10px;
display:block;
background: #F00;
}

.seminarBanner a:hover span {
background: #F90;
}

.seminarLink {
margin: 0 0 1em;
}

.seminarLink a {
color:#FFF;
text-shadow: 1px 1px 3px rgba(0,0,0,1);
filter: dropshadow(color=#000000, offx=1, offy=1);
text-decoration: none;
display:block;
padding:10px;
font-size: 2em;
font-weight: bold;
border:1px  solid #C00;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;

background: #ff8989; /* Old browsers */
background: -moz-linear-gradient(top,  #ff8989 0%, #bc2525 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff8989), color-stop(100%,#bc2525)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #ff8989 0%,#bc2525 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #ff8989 0%,#bc2525 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #ff8989 0%,#bc2525 100%); /* IE10+ */
background: linear-gradient(to bottom,  #ff8989 0%,#bc2525 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8989', endColorstr='#bc2525',GradientType=0 ); /* IE6-9 */
}


.seminarLink a:hover {
color:#FFF;
background: #ffb5b5; /* Old browsers */
background: -moz-linear-gradient(top,  #ffb5b5 0%, #d6302a 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffb5b5), color-stop(100%,#d6302a)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #ffb5b5 0%,#d6302a 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #ffb5b5 0%,#d6302a 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #ffb5b5 0%,#d6302a 100%); /* IE10+ */
background: linear-gradient(to bottom,  #ffb5b5 0%,#d6302a 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb5b5', endColorstr='#d6302a',GradientType=0 ); /* IE6-9 */

}

.seminarInfoBox, .infoBox {
    padding: 10px;
    margin:0 0 1.5em;
    background-color: #EEE;
    border: 2px dotted #F30;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.seminarInfoBox, .infoBox {
    padding: 10px;
    margin:0 0 1.5em;
    background-color: #EEE;
    border: 2px dotted #F30;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.seminarInfoBox ~ br, .infoBox + br, .infoBox + br + br {
    display:none;
}

.seminarInfoBox {
    margin: 5em 0 1.5em;
}

.infoBox h5 {
background: #F30;
color: #FFF;
font-size:116%;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    padding: 2px 6px;
    margin:-1.6em 0 1.3em;
}
.rankingLink {
margin: 1em 0;
padding:10px 10px;
border: solid 1px #F30
/*border-top: dotted 1px #CCC;
border-bottom: dotted 1px #CCC;*/
}

.rankingLink_mb {
/*display: none;*/
}

.rankingLink a {
font-size:108%;
color: #F30;
display: block;
line-height:1.5;
padding:16px 5px 16px 158px;
/*background: url(http://image.with2.net/img/banner/banner_22.gif?1477821) no-repeat left center;*/
background: url(http://love-strategy.com/blogimg/bnr_popular_ranking1.jpg) no-repeat left center;
}

.rankingLink a:hover {
color: #F30;
padding:16px 5px 16px 160px;
}

.skinSubArea .inquiry {
height:440px;
margin:0 0 1em;
border:1px solid #CCC;
}
.skinSubArea .inquiry iframe {
padding:0;
margin:0;
height:100%;
overflow-x:hidden;
overflow-y:auto;
}

.popularListBox {
background: #FFF;
margin: 0 0 1em;
padding: 0 0 1px;
border: 1px dotted #CCC;
}

.popularListBox div.popularSideInner {
	height: 180px;
	overflow: auto;
}

.popularlist h2, .popularListBox h2 {
font-size:123.1%;
margin:0 0 0.5em;
padding:10px 5px 6px 48px;
color:#FFF;
text-shadow: 1px 1px 3px rgba(0,0,0,1);
filter: dropshadow(color=#000000, offx=1, offy=1);

background: url(http://love-strategy.com/blogimg/icon_crown.png) no-repeat 5px center, rgb(69,72,77);
background: url(http://love-strategy.com/blogimg/icon_crown.png) no-repeat 5px center, -moz-linear-gradient(top,  rgba(69,72,77,1) 0%, rgba(38,38,38,1) 100%);
background: url(http://love-strategy.com/blogimg/icon_crown.png) no-repeat 5px center, -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(69,72,77,1)), color-stop(100%,rgba(38,38,38,1)));
background: url(http://love-strategy.com/blogimg/icon_crown.png) no-repeat 5px center, -webkit-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
background: url(http://love-strategy.com/blogimg/icon_crown.png) no-repeat 5px center, -o-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
background: url(http://love-strategy.com/blogimg/icon_crown.png) no-repeat 5px center, -ms-linear-gradient(top,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
background: url(http://love-strategy.com/blogimg/icon_crown.png) no-repeat 5px center, linear-gradient(to bottom,  rgba(69,72,77,1) 0%,rgba(38,38,38,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#262626',GradientType=0 );
}
ol.popular {
	margin: 0;
	padding: 0 10px;
}

ol.popular li {
	margin: 0 0 0.5em;
	padding: 0;
	list-style:  inside decimal;
}

.popularListBox ol.popular {
	overflow: auto;
	height: 180px;
}

.skinSubA ol.popular li {
	font-size: 0.93em;
}

.popularListBox .iSRTitle {
	display: none;
}

.readerHeader em {
  font-size: 36px;
  text-shadow: 2px 2px 3px #d9d9d9;
  color: #C00;
}
