@charset "utf-8";


/*共通設定
---------------------------------------------------------------------------*/

/*全体
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
body#top {
	background: #fff url(../images/mainimg_s.jpg) no-repeat center top;	/*古いブラウザ*/
	background: #fff url(../images/mainimg.jpg) no-repeat center top/800px;	
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;}
a img:hover {opacity: 0.7;}/*マウスオン時に画像を半透明設定*/
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク
---------------------------------------------------------------------------*/
a {
	color: #666;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
a:hover {
	color: #eca6b9;	
	text-decoration: none;
}

/*コンテナー
---------------------------------------------------------------------------*/
#container {
	width: 980px;	/*幅*/
	margin: 0 auto;
}

/*ロゴ最上段のブロック
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	padding: 20px 0px;
	overflow: hidden;
}
/*ロゴ画像*/
header #logo {
	float: left;	/*ロゴ画像左に回り込み*/
	width: 300px;
	margin-left: 10px;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	width: 100%;
	overflow:hidden;
	background: #fc6f9d;	/*古いブラウザ用*/
	border: 1px solid #fc6f9d;	/*枠線の幅、線種、色*/
	-webkit-box-shadow: 2px 4px 10px rgba(236,166,185,0.8), 0px 0px 10px rgba(255,255,255,0.4) inset;	/*影の設定。左右、上下、広げる幅、rgbaの色指定*/
	box-shadow: 2px 4px 10px rgba(236,166,185,0.8), 0px 0px 10px rgba(255,255,255,0.4) inset;			/*同上*/
	border-radius: 10px;	/*角丸サイズ*/
}
/*メニューブロック（※トップページ）*/
#top #menubar {
	margin-bottom: 250px;	/*背景画像表示分指定*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左回込*/
	text-align: center;
}
/*メニュー最初設定*/
#menubar li:first-child {
	border-left: 1px solid #eca6b9;	/*左側の線幅、線種、色*/
	margin-left: 40px;	/*左側スペース*/
}
/*メニュー最後設定*/
#menubar li:last-child {
	border-right: 1px solid rgba(255,255,255,0.4);	/*右側の線幅、線種、色*/
}
#menubar a {
	display: block;
	text-decoration: none;
	color: #fff;
	text-shadow: 0px -1px #eca6b9;	/*テキスト影。左右、上下、色。*/
	padding: 10px 20px;		/*上下、左右スペース*/
	border-right: 1px solid #eca6b9;	/*右側の線幅、線種、色*/
	border-left: 1px solid rgba(255,255,255,0.4);	/*左側の線幅、線種、色*/
	letter-spacing: 0.2em;	/*文字間隔設定*/
	font-size: 16px;
}
/*マウスオン時*/
#menubar a:hover {
	background: #eca6b9;	/*背景色*/
}
/*スマホ用メニュー表示させない設定指示*/
#menubar-s {
	display: none;
}
/*３本バーアイコン表示させない設定指示*/
#menubar_hdr {
	display: none;
}

/*コンテンツ（左右ブロックボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	overflow: hidden;
	padding-top: 40px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回込*/
	width: 700px;
	overflow: hidden;
}
/*１カラム時mainコンテンツ*/
.c1 #main {
	float: none;
	width: 100%;
}
#main h2 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	color: #FFF;
	padding: 5px 15px;	/*上下、左右余白*/
	background: #fc6f9d;
	border-radius: 3px;	/*角丸*/
}

/*１文字目への設定*/
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左側ラインの幅、線種、色*/
	padding-left: 10px;	/*文字間余白*/
}

#main h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	background: #FFF;
	padding: 4px 15px;	/*上下、左右余白*/
	border: 1px solid #ccc;	/*枠線幅、線種、色*/
	border-radius: 3px;	/*角丸*/
}
/*１文字目への設定*/
#main h3::first-letter {
	border-left: 3px solid #fc6f9d;	/*左側ライン幅、線種、色*/
	padding-left: 10px;	/*文字間余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 7px 15px 14px;	/*上、左右、下への余白*/
	line-height: 35px;/*行間設定少し広め*/
}
#main p + p {
	padding-top: 0px;
}
#main h2 + p,
#main h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}

/*女の子紹介ページ
---------------------------------------------------------------------------*/
/*ボックス共通設定*/
#main section.list {
	position: relative;
	overflow: hidden;
	background: #fff;
	padding: 3.5%;		/*ボックス内余白*/
	border: 1px solid #e0e0e0;	/*枠の幅線種、色*/
	border-radius: 10px;	/*角丸*/
	margin-bottom: 15px;	/*ボックス下余白*/
}

#main section.list h4 {
	color: #eca6b9;
	margin-left: 24%;	/*※横長タイプ用*/
}

/*ボックス内段落タグ共通設定*/
#main section.list p {
	padding: 0px;
	margin-left: 24%;	/*※横長タイプ用*/
}
/*ボックス内写真設定*/
#main section.list figure img {
	float: left;	/*※横長タイプ用*/
	width: 20%;		/*※横長タイプ用*/
}
/*コンパクトタイプボックス追加設定*/
#main section.list.compact {
	width: 23%;		/*compactタイプ幅*/
	height: 250px;	/*compactタイプ高さ*/
	float: left;	/*左回り込み*/
	margin-left: 2.5%;	/*ボックス間余白*/
}
.c1 #main section.list.compact {
	height: 350px;	/*１カラムの時*/
}
/*コンパクトタイプh4タグ追加設定*/
#main section.list.compact h4 {
	margin-left: 0;
}
/*コンパクトタイプ段落タグ追加設定*/
#main section.list.compact p {
	margin-left: 0;
	font-size: 11px;	/*compactタイプ*/
	line-height: 1.4;
	margin-bottom: 5px;
}
/*コンパクトタイプ写真追加設定*/
#main section.list.compact figure img {
	float: none;
	width: auto;
	margin: 0;
}
/*circleブロック*/
#main section.circle img {
	border-radius: 200px;
	border: 10px solid #ececec;
	width: 130px;
	height: 130px;
	float: left;
	margin-left: 2.5%;	/*ボックス間余白*/
	margin-bottom: 15px;	/*ボックス下余白*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左回り込み*/
	width: 230px;
	
}
/*１カラム時subコンテンツ*/
.c1 #sub {
	display: none;
}
/*subコンテンツ内h2タグ設定*/
#sub h2 {
	font-size: 100%;
	padding-bottom: 10px;
}
/*subコンテンツのh2タグの１文字目設定*/
#sub h2::first-letter {
	border-left: 3px solid #fc6f9d;	/*左側のラインの幅、線種、色*/
	padding-left: 10px;
}

/*サブコンテンツ内メニュー
---------------------------------------------------------------------------*/
/*メニュー全の設定*/
#sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個の設定*/
#sub ul.submenu li {
	background: #fff;
	border-bottom: solid 1px #e4e4e4;	/*下の線種、幅、色*/
}
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 2px 10px;	/*メニュー内余白。上下、左右設定。*/
}

/*サブコンテンツbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 15px;			/*ボックス内余白*/
	margin-bottom: 15px;	/*ボックス下スペース*/
	background: #fc6f9d;
	background: rgba(252,111,157,0.08);
	border: solid 1px #ccc;	/*線の線種、幅、色*/
	-webkit-box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。内側に白のライン*/
	box-shadow: 0px 0px 1px 1px #fff inset;
	border-radius: 10px;	/*角丸*/
}
/*box1のメニューの設定*/
#sub .box1 ul.submenu {
	margin-bottom: 0px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding: 10px 0px;
}
footer a {
	text-decoration: none;
}
footer a:hover {
}


/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 15px;
	margin-bottom: 15px;
	height: 170px;
	overflow: auto;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
	color: #fc6f9d;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブル枠線幅、線種、色*/
	padding: 10px;	/*ボックス内余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #cce6f6;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f7f7f7;	/*背景色*/
}
/*画像*/
.ta1 img {
	vertical-align: bottom;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	padding-top: 40px;
}
#pagetop a {
	color: #FFF;
	font-size: 20px;
	background: #fc6f9d;
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	border-radius: 30px;	/*角丸*/
	width: 50px;
	line-height: 50px;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #999;	
	color: #FFF;
}

/*トップページNEW
---------------------------------------------------------------------------*/
.newicon {
	background: #fc6f9d;
	color: #FFF;
	font-size: 12px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #ffe5ff;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #fc6f9d;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 30px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}



/*画面幅800px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*全体の設定
---------------------------------------------------------------------------*/
/*トップページbodyタグ*/
body#top {
	background: #fff url(../images/mainimg_s.jpg) no-repeat center top/120%;
}

/*コンテナー
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 10px;
}

/*ヘッダー（ロゴ最上段のブロック）
---------------------------------------------------------------------------*/
/*トップページのヘッダーブロック*/
#top header {
	padding: 0px 0px 30%;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar-s {
	background: rgba(252,252,252,0.5);
	border-radius: 10px;
	overflow: hidden;
	padding: 10px 0px;
}
/*メニュー１個設定*/
#menubar-s li {
	width: 48%;
	float: left;
	margin: 0 1% 10px;
}
#menubar-s a {
	display: block;
	text-decoration: none;
	color: #fff;	/*文字色*/
	text-shadow: 0px -1px #eca6b9;	/*テキストの影。左右、上下、色。*/
	padding: 10px 20px;		/*上下、左右にあけるスペース*/
	border-radius: 10px;
	border: 1px solid #eca6b9;
	background:#fc6f9d;
}
/*スマホ用メニュー非表示から表示に切り替え*/
#menubar-s {
	display: block;
}
/*PC用メニュー非表示*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 10px;		/*上から10px場所配置*/
	right: 10px;	/*右から10px場所配置*/
	width: 30px;	/*幅*/
	border: 1px solid #fff;	/*枠線幅、線種、色*/
	border-radius: 4px;	/*角丸*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
	background: #fc6f9d;
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #fff;	/*枠線幅、線種、色*/
	margin-bottom: 7px;	/*バー同士の余白*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding-top: 0;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

#main section.list {
	position: relative;
	overflow: hidden;
	background: #fff;
	padding: 1% 3.5% 5%;		/*ボックス内余白*/
	border-radius: 10px;	/*角丸*/
	margin-bottom: 15px;	/*ボックス下余白*/
}

#main section.list.compact {
	height: 230px;	/*compactタイプ高さ*/
	float: left;	/*左回り込み*/
	margin-left: 2.5%;	/*ボックス間余白*/
}

/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: #fc6f9d url(../images/btn_minus.png) no-repeat right center/34px 34px;
}
section#new h2.close {
	background: #a0a0a0 url(../images/btn_plus.png) no-repeat right center/34px 34px;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub {display: none;}

}



/*画面幅480px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){

---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 70%;
}

---------------------------------------------------------------------------*/
/*トップページのヘッダーブロック*/
#top header {
	padding: 0px 0px 20%;
}
/*ヘッダーブロック*/
header {
	padding: 0;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個設定*/
#menubar-s li {
	width: 100%;
	float: none;
	margin: 0 0 10px;
}

/*女の子紹介
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list p {
	margin-left: 0;
}

#main section.list.compact {
	height: 160px;	/*compactタイプ高さ*/
	float: left;	/*左回り込み*/
	margin-left: 2.5%;	/*ボックス間余白*/
}


/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	margin-left: 0;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 90%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}

}
