@charset "utf-8";
/* おすすめポイント訴求見出し */
.reco_tit {
  background: #fff0b3 !important;
}

.reco_tit {
  display: inline-block;
  position: relative;
  height: 2rem; /*高さ*/
  line-height: 2rem !important; /*高さ*/
  vertical-align: middle;
  padding: 0 1.7rem 0 9px !important; /*文字の左右の余白*/
  box-sizing: border-box;
  border-bottom: none !important;
  color: #a10000;
}

.reco_tit:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
  top: 0;
  right: 0;
  border-width: 1rem 0.5rem 1rem 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}

/* 「もっと見る」ボタン設定 */
/* tableの高さ */
#accordion {
  position: relative;
  height: 270px;
  overflow: hidden;
}

/* 透過グラデーションをposition指定 */
#accordion::before {
  content: ""; 
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(rgba(255, 255, 255, 0) 0, #fff 90%);
  position: absolute;
  top: 0;
  left: 0;
}

/* もっと見るボタンで高さを自動に */
#accordion.active {
  height: auto;
}

/* 透過グラデーションを解除 */
#accordion.active::before {
  background: none;
}

#btn_more {
  display: block;
  margin: 0 auto 60px;
  background: #333;
  color: #fff;
  border-radius: 3px;
  padding: 0.3rem 2rem;
  cursor: pointer;
  transition:.3s ease-out;
  font-weight: bold;
}

#btn_more:hover {
  opacity: 0.75;
}

@media screen and (min-width:641px){

  .reco_tit {
    height: 2.2rem;
    line-height: 2.2rem !important;
    padding: 1px 1.7rem 0 11px !important; /*文字の左右の余白*/
 } 
 
  .reco_tit:after {
    border-width: 1.1rem 0.55rem 1.1rem 0px;
  }
}
/* endおすすめポイント見出し */

/* キャンペーンバナーキャプション */
.cam-bnr_caption{
position: relative;
display: inline-block;
line-height: 1.5em!important;
}


.cam-bnr_caption::before{
content:"";
display: block;
position: absolute;
left: -45px;
top: 0px;
bottom: 0px;
margin: auto 0;
width: 40px;
height: 40px;
background-image: url("/common/images/ico_attention_01.png");
background-size: contain;
vertical-align: middle;
}

.cam-bnr_caption::after{
content:"";
display: block;
position: absolute;
right: -45px;
top: 0px;
bottom: 0px;
margin: auto 0;
width: 40px;
height: 40px;
background-image: url("/common/images/ico_attention_02.png");
background-size: contain;
vertical-align: middle;
}

/* endキャンペーンバナーキャプション */


/* PR表記 */

.PR_box {
    cursor: pointer;
    color: #555;
    border: 1px solid #ddd;
    padding: 1px;
    font-size: 10px;
    position: relative;
}

.PR_box input[type="checkbox"] {
    display: none;
}

.PR_box p{
font-size: 10px!important;
}

.PR_box p .PR_arrow::before {
    content: "▽";
    display: inline-block;
    transition: transform 0.3s;
}

.PR_box input[type="checkbox"]:checked + p .PR_arrow::before {
    content: "△";
}

.PR_content {
    display: none;
    position: absolute;
    top: 100%;
    left: -1px; /* ボーダーの位置調整 */
    right: -1px; /* ボーダーの位置調整 */
    background-color: #fff;
    border: 1px solid #ddd; 
    border-top: none; 
    padding: 10px;
    z-index: 1;
    box-sizing: border-box;
}

.PR_box input[type="checkbox"]:checked + p {
    border-bottom: none; /* オープン時に底部の境界線を消す */
}

.PR_box input[type="checkbox"]:checked + p + .PR_content {
    display: block;
}

/* end PR表記 */

.listBasic01 {
	margin-bottom: 0px;
	margin-left: 30px;
	line-height: 190%;
	list-style-type: disc;
}


/*数字付きリスト*/
ol.listNumber01{
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0.5em;
}

ol.listNumber01 li {
  position: relative;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}

ol.listNumber01 li:before{
 /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display:inline-block;
  background:#ff7200;
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 15px;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*数字付きリストend*/


/*タブ付きボックス*/
.box_tab01{
  position: relative;
  margin: 2em 0;
  padding: 0.5em 1em;
  border: solid 3px #777777;
}

.box_tab01-title{
  position: absolute;
  display: inline-block;
  top: -27px;
  left: -3px;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  background: #777777;
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}

.box_tab01 p{
margin: 0;
padding: 0;
}
/*タブ付きボックスend*/

/*タブ付きボックス黄色*/
.box_tab02{
  position: relative;
  margin: 2em 0;
  padding: 0.5em 1em;
  border: solid 3px #FFCC00;
  background: #ffffcc;
}

.box_tab02-title{
  position: absolute;
  display: inline-block;
  top: -27px;
  left: -3px;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  background: #FFCC00;
  color: #000000;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}

.box_tab02 p{
margin: 0!important;
padding: 0!important;
}
/*タブ付きボックス黄色end*/

/*目次*/
.box_menu01{
  position: relative;
  margin: 2em 0;
  padding:  0.5em 1em;
  border: solid 3px #777777;
}

.box_menu01-title{
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 15px;
  color: #777;
  font-weight: bold;
  cursor: pointer;
}

.box_menu01 p{
  margin: 0;
  padding: 0;
}

.box_menu01 ol{
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0.25em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.box_menu01 li {
  position: relative;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}

.box_menu01 li:before{
 /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display:inline-block;
  background:#777777;
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 15px;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.toc-toggle {
  display: none;
}

.toc-toggle:checked ~ .toc-list {
  max-height: 500px; /* 適切な高さに調整してください */
  transition: max-height 0.3s ease-in-out;
}

.toc-toggle:checked ~ .box_menu01-title .toggle-text::after {
  content: "[閉じる]";
}

.box_menu01-title .toggle-text::after {
  content: "[開く]";
}

.box_menu02{
  position: relative;
  margin: 2em 0;
  padding:  0.5em 1em;
  border: solid 3px #777777;
}

.box_menu02 label{
  display: inline-block;
  line-height: 25px;
  font-size: 15px;
  color: #777;
  font-weight: bold;
}

.box_menu02 p{
  margin: 0;
  padding: 0;
}

.box_menu02 ol{
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0.25em;
  overflow: hidden;
}

.box_menu02 li {
  position: relative;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}

.box_menu02 li:before{
 /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display:inline-block;
  background:#777777;
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 15px;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*目次end*/




.bg_yellow {
	background-color: #ffff99!important;
}

.bg_green {
	background-color: #aaffaa!important;
}

.bg_gray {
	background-color: #eee!important;
}

.bg_blue {
	background-color: #eeeeff!important;
}

.bg_orange {
	background-color: #FF8300!important;
}

.bg_pink {
	background-color: #fdf2f4!important;
}


/*テーブルスクロール*/
@media screen and (max-width:640px) {
.tableContainer {
		width: 100%;
		margin: 0 0px 0 0px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
	}

	.tableHead {
		position: relative;
		width: 30%;
		z-index: 100;
	}
	.tableHead table {
		width: 100%;
		margin: 0;	
	}
	
	.tableBody {
		position: relative;
		overflow: scroll;
		width: 80%;
		-webkit-overflow-scrolling: touch;
		margin-left: -1px;
	}
	
	.tableBody table {
		position: relative;
		margin-left: 0;
		width: 900px;
	}
}

.under_reddash{
	border-bottom: dashed 1px red
}

.under_bluedash{
	border-bottom: dashed 1px blue
}


.btn_security {
position: relative;
  display: inline-block;
  padding: 0.25em 0.5em 0.25em 0.75em;
  text-decoration: none;
  color: #FFFFFF;
  background: #FFCC00;/*背景色*/
  border-bottom: solid 2px #d27d00;/*少し濃い目の色に*/
  border-radius: 4px;/*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  font-weight: bold ;
  font-size: 16px;
  letter-spacing: 0.25em;
text-shadow: 
        #ff9900 1px 1px 0, #ff9900 -1px -1px 0,/*右下、左上*/
        #ff9900 -1px 1px 0, #ff9900 1px -1px 0,/*右上、左下*/
        #ff9900 0px 1px 0, #ff9900  0-1px 0,/*右、左*/
        #ff9900 -1px 0 0, #ff9900 1px 0 0;/*上、下*/
}

.btn_campaign {
position: relative;
  display: inline-block;
  padding: 0.25em 0.5em 0.25em 0.75em;
  text-decoration: none;
  color: #FFFFFF;
  background: #00CCFF;/*背景色*/
  border-bottom: solid 2px #007dd2;/*少し濃い目の色に*/
  border-radius: 4px;/*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  font-weight: bold ;
  font-size: 16px;
  letter-spacing: 0.25em;
text-shadow: 
        #0099ff 1px 1px 0, #0099ff -1px -1px 0,/*右下、左上*/
        #0099ff -1px 1px 0, #0099ff 1px -1px 0,/*右上、左下*/
        #0099ff 0px 1px 0, #0099ff  0-1px 0,/*右、左*/
        #0099ff -1px 0 0, #0099ff 1px 0 0;/*上、下*/
}


@media screen and (max-width:640px) {
.btn_security {font-size: 12px;}
.btn_campaign {font-size: 12px;}
}

#kousin_title p .info-new {
	background-image: url("/common/images/ico_top-center_info.png");
	background-size: 12px;
}


#right .s-date02 h2.ipo-info {
	background-image: url(/common/images/ico_top-right_info.png);
	background-size: 24px;
}

#right .s-date02 h2.ipo-beginner {
	background-image: url(/common/images/ico_top-right_beginner.png);
	background-size: 24px;
}

#right .s-date02 h2.ipo-recommend {
	background-image: url(/common/images/ico_top-right_recommend.png);
	background-size: 24px;
}

#right .s-date02 h2.ipo-ranking {
	background-image: url(/common/images/ico_top-right_ranking.png);
	background-size: 24px;
}

#right .s-date02 h2.ipo-price {
	background-image: url(/common/images/ico_top-right_price.png);
	background-size: 24px;
}

#right .s-date02 h2.ipo-present {
	background-image: url("/common/images/ico_top-right_present.png");
	background-size: 24px;
}

#right .s-date02 h2.owner-book {
	background-image: url("/common/images/ico_top-right_book.png");
	background-size: 24px;
}

#right .s-date01 h2.ipo-company {
	background-image: url("/common/images/ico_top-right_company.png");
	background-size: 24px;
}


/*スマホメニュー*/
@media screen and (max-width:640px) {
.pagenavi {margin-bottom: 30px!important;
font-size: 10px!important;}


.Mainbox{padding: 80px 10px 10px 10px!important;}

#headerout{display: block;
height: 75px;
width: 100%;
position: fixed;
background: #FFF!important;
border-top:solid 4px #00C;
z-index: 999;
}

body{
border-top-width:  0px!important
}

.sp-menu_01 {
position:fixed;
top: 15px;
right: 0px;
z-index: 1000;
}

.sp-menu_02{position:fixed;
top: 15px;
right: 70px;
z-index: 1000;
}

.sp-menu_03{position:fixed;
top: 15px;
right: 140px;
z-index: 1000;
}

.sp-close{
z-index: 1000;
}

body.sp-menu_on {
	overflow: hidden;
	position: fixed;
}

.sp-menu {
	position:fixed;
	top: 15px;
	right: 0;
}

.sp-close {
	position:fixed;
	top: 15px;
	right: 0;
}
}

/*PC・スマホ共通*/

li.nav_current a{
font-weight: bold;
color: #000;
text-decoration: none;
}

.switchBtn_test {
	width: 300px;
	text-align: left;
	margin-right: auto !important;
	margin-left: auto !important;
}
.switchBtn_test a {
	display: inline-block;
	width: 140px;
	font-size: 14px;
	font-weight: bold;
	color: #666;
	text-decoration: none;
	background-color: #999;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	margin: 15px 5px 15px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: #666 0px 0px 3px;
	-moz-box-shadow: #666 0px 0px 3px;
	background: #ddd;
}



.Mainbox h2 {
margin-top: 90px;
}

h3.r_border {
background-color: #FAE7E7;
color: #9C0000;
padding:10px;
padding-left:15px;
font-weight: bold!important;
}

h3.b_border {
background-color: #E7E7FA;
color: #00009C;
padding:10px;
padding-left:15px;
font-weight: bold!important;
}

/*偶数行の色*/
table.zebra01 tr:nth-child(even){
  background-color:#fdf2f4!important;
}

/*奇数行の色*/
table.zebra01 tr:nth-child(odd){
background-color:#ffffff!important;
}

/*偶数行の色*/
table.zebra02 tr:nth-child(even){
  background-color:#B8DBFE!important;
}

/*奇数行の色*/
table.zebra02 tr:nth-child(odd){
background-color:#E1F0FF!important;
}



.price_plus{
  color: #FF0000;
  font-weight: bold;
  letter-spacing: 1px;
}


.price_minus{
  color: #0000FF;
  font-weight: bold;
  letter-spacing: 1px;
}

.red-bold {
	color: #F00;
	font-weight: bold;
}
.blue-bold {
	color: #00F;
	font-weight: bold;
}

.btn_kanji_01 {
  position: relative;
  display: inline-block;
  padding: 0px 5px; 
  text-decoration: none;
  color: #ffffff;
  background: #cc2222;/*背景色*/
  border-radius: 3px;/*角の丸み*/
  font-size: 10.5px;
  letter-spacing: 0px;
}

@media print, screen and (min-width: 641px) {
	.btn_kanji_01 {
	margin-left: 10px;
	}
}

.btn_tieup {
position: relative;
  display: inline-block;
  padding: 0em 1em; 
  text-decoration: none;
  color: #ffffff;
  background: #ff3300;/*背景色*/
  border-radius: 10px;/*角の丸み*/
  font-size: 10px;
}

.btn_beginner {
position: relative;
  display: inline-block;
  padding: 0em 1em; 
  text-decoration: none;
  color: #ffffff;
  background: #339900;/*背景色*/
  border-radius: 10px;/*角の丸み*/
  font-size: 10px;
}

.btn_money {
position: relative;
  display: inline-block;
  padding: 0em 1em; 
  text-decoration: none;
  color: #ffffff;
  background: #3333ff;/*背景色*/
  border-radius: 10px;/*角の丸み*/
  font-size: 10px;
}


.btn_red01 {
position: relative;
  display: inline-block;
  padding: 0em 0.5em;
  text-decoration: none;
  color: #FFFFFF;
  background: #FF0000;/*背景色*/
  border-radius: 10px;/*角の丸み*/
  font-size: 10px;
  margin-left: 5px;
  margin-right: 5px;
}

.btn_blue01 {
position: relative;
  display: inline-block;
  padding: 0em 0.5em; 
  text-decoration: none;
  color: #FFFFFF;
  background: #0000FF;/*背景色*/
  border-radius: 10px;/*角の丸み*/
  font-size: 10px;
  margin-left: 5px;
  margin-right: 5px;
}

.btn_gray01 {
position: relative;
  display: inline-block;
  padding: 0em 0.5em;
  text-decoration: none;
  color: #FFFFFF;
  background: #777777;/*背景色*/
  border-radius: 10px;/*角の丸み*/
  font-size: 10px;
  margin-left: 5px;
  margin-right: 5px;
}


.btn_orange01 {
position: relative;
  display: inline-block;
  padding: 0em 0.5em;
  text-decoration: none;
  color: #FFFFFF;
  background: orange;/*背景色*/
  border-radius: 10px;/*角の丸み*/
  font-size: 10px;
  margin-left: 5px;
  margin-right: 5px;
}


.btn_red02 {
position: relative;
  display: inline-block;
  padding: 0em 0.5em;
  text-decoration: none;
  color: #FFFFFF;
  background: #FF9999;/*背景色*/
  border-radius: 10px;/*角の丸み*/
  font-size: 10px;
  margin-left: 5px;
  margin-right: 5px;
  white-space: nowrap;
}

.btn_blue02 {
position: relative;
  display: inline-block;
  padding: 0em 0.5em; 
  text-decoration: none;
  color: #FFFFFF;
  background: #9999FF;/*背景色*/
  border-radius: 10px;/*角の丸み*/
  font-size: 10px;
  margin-left: 5px;
  margin-right: 5px;
  white-space: nowrap;
}


.btn_theme {
position: relative;
  display: inline-block;
  padding: 1em 2em;
  text-decoration: none;
  text-align: center;
  width: 300px;
  color: #FFF;
  background: #fd9535;/*背景色*/
  border-bottom: solid 2px #d27d00;/*少し濃い目の色に*/
  border-radius: 4px;/*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2em;
  margin: 0 auto;
}




.btn_kouza {
position: relative;
  display: inline-block;
  padding: 1em 2em;
  text-decoration: none;
  color: #FFF;
  background: #fd9535;/*背景色*/
  border-bottom: solid 2px #d27d00;/*少し濃い目の色に*/
  border-radius: 4px;/*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2em;
}

.btn_kouza:active {
  border-bottom: solid 2px #fd9535;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);}

.naibu_btn {
  text-align: center;
}

.naibu_btn a {
  display: inline-block;
  background-image: linear-gradient(#ffffff, #edeff0);
  padding: 1em 2em 0.9em;
  border: 1px solid #cccccc;
  border-radius: 3px;
  color: #333333;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  line-height: 1.2em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 2px rgba(0, 0, 0, 0.16);
}

.naibu_btn a:hover {
  opacity: 0.7;
}


.btn_top-cam {
position: relative;
  display: block;
  padding: 1em 0.5em;
  text-decoration: none;
  color: #FFF;
  background: -moz-linear-gradient(to bottom,#fd9535,#FFf 50%,#fd9535); 
  background: -webkit-linear-gradient(to bottom,#fd9535,#FFf 50%,#fd9535); 
  background: linear-gradient(to bottom,#FF8800,#FFAA00 50%,#FF8800); 
  border-radius: 0px;/*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2em;
}

.btn_top-cam:active {
  border-bottom: solid 2px #fd9535;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);}

.btn_lucy01 {
position: relative;
  display: inline-block;
  padding: 0.25em 0.25em; 
  text-decoration: none;
  color: #FFFFFF;
  background: #00cc00;/*背景色*/
  border-radius: 5px;/*角の丸み*/
  font-size: 5px;
  margin-left: 2px;
  margin-right: 2px;
  white-space: nowrap;
}






.update{
width: 100%;
height: 4em;
font-size: 12px;
color:#666666;
}

.update dl{
line-height: 1.5em;
float: right;
}

.update dt{
width:80px;
clear: both;
text-align: right;
float: left
}

.update dd{
width: 100px;
padding-left: 5px;
float: left;
}



/* 口座開設ボタン */
.security_btn {
  display: inline-block;
  width: auto;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 6px;
  line-height: 1.2em;
  background-image: linear-gradient(0deg, #ff7200, #ff9c00);
  box-shadow: 2px 2px 4px #999999;
border: solid 2px #ffffff;
}

.security_btn:hover {
  background-image: linear-gradient(0deg, #ff9900, #ffcc00);
}

/* 追記囲い */
.addBox{
border: 1px dotted #999999;
padding: 10px;
border-radius: 5px
}


.twitterBox{
border: 1px dotted #1A91DA;
padding: 10px;
border-radius: 5px
}

/* アコーディオン */
/*全体*/
.hidden_box {
    margin: 2em 0;/*前後の余白*/
    padding: 0;
}

/*ボタン装飾*/
.hidden_box label {
    padding: 15px;
    font-weight: bold;
    border: solid 2px black;
    cursor :pointer;
}

/*ボタンホバー時*/
.hidden_box label:hover {
    background: #efefef;
}

/*チェックは見えなくする*/
.hidden_box input {
    display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.hidden_box input:checked ~ .hidden_show {
    padding: 0;
    height: auto;
    opacity: 1;
}

/*クリックで非表示*/
.hidden_box input:checked ~ .hidden_hidden {
    padding: 0;
    height: auto;
    opacity: 0;
}


.hidden_box_dl{
width: 100%
}

.hidden_box_dt{
float: left;
width: 80px;
margin-bottom: 15px;
padding: 8px;
border: 1px solid gray;
}

.hidden_box_dd{
margin-left: 100px;
margin-bottom: 15px;
padding: 10px;
}

/*アコーディオン終わり*/


.allHide{
display: none!important;
}

img.waku {
	border: 1px #cccccc solid;
}

table.tableBasic01 {
	max-width: 100%;
	margin-bottom: 60px;
	line-height: 140%;
}
table.tableBasic01 th {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	border: 1px solid #cccccc;
	background-color: #ccccff;
	font-weight: normal;
	color: #000;
}
table.tableBasic01 td {
	text-align: center;
	border: 1px solid #cccccc;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}
table.tableBasic01 caption {
	font-size: 14px;
	text-align: center;
	padding: 5px 10px;
	line-height: 120%;
	border: 1px solid #CCC;
	border-bottom: 0px;
}
table.tableBasic01 .blank {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	border: none;
	background-color: #fff;
	font-weight: normal;
	color: #000;
}
table.tableBasic01 .tousen {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	border: none;
	background-color: #55ffff;
	font-weight: bold;
	color: #f00;
}

table.tableBasic02 {
	max-width: 100%;
	margin-bottom: 60px;
	line-height: 140%;
}
table.tableBasic02 th {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	border: 1px solid #cccccc;
	background-color: #eeeeee;
	font-weight: normal;
	color: #000;
}
table.tableBasic02 td {
	text-align: center;
	border: 1px solid #cccccc;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}
table.tableBasic02 caption {
	font-size: 14px;
	text-align: center;
	padding: 5px 10px;
	line-height: 120%;
	border: 1px solid #CCC;
	border-bottom: 0px;
}
table.tableBasic02 .blank {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	border: none;
	background-color: #fff;
	font-weight: normal;
	color: #000;
}
table.tableBasic02 .tousen {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	border: none;
	background-color: #55ffff;
	font-weight: bold;
	color: #f00;
}


table.tableFee01 {
	max-width: 100%;
	margin-bottom: 0px;
	line-height: 140%;
	text-align: center;
}
table.tableFee01 th {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	border: 1px solid #cccccc;
	background-color: #ccccff;
	font-weight: normal;
	color: #000;
}
table.tableFee01 td {
	text-align: center;
	border: 1px solid #cccccc;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}
table.tableFee01 caption {
	font-size: 14px;
	text-align: center;
	padding: 5px 10px;
	line-height: 120%;
	border: 1px solid #CCC;
	border-bottom: 0px;
}


table.tableCalendar01 {
	max-width: 100%;
	margin-bottom: 60px;
	line-height: 140%;
}
table.tableCalendar01 th {
	text-align: center;
	vertical-align: middle;
	padding: 8px 5px;
	border: 1px solid #ccc;
	background-color: #fff;
	font-weight: normal;
	color: #000;
	width: 80px;
}
table.tableCalendar01 td {
	text-align: right;
	vertical-align: top;
	border: 1px solid #cccccc;
	padding: 8px 5px;
}
table.tableCalendar01 caption {
	font-size: 14px;
	text-align: center;
	padding: 5px 10px;
	line-height: 120%;
	border: 1px solid #CCC;
	border-bottom: 0px;
}

@media screen and (max-width:640px) {
/*横幅640px以下のCSS（スマホ）*/
table.tableCalendar01 {
	max-width: 100%;
	margin-bottom: 60px;
	line-height: 100%;
	font-size: 9px;
}
table.tableCalendar01 th {
	text-align: center;
	vertical-align: middle;
	padding: 5px 3px;
	border: 1px solid #ccc;
	background-color: #fff;
	font-weight: normal;
	color: #000;
	width: 50px;
}
table.tableCalendar01 td {
	text-align: right;
	vertical-align: top;
	border: 1px solid #cccccc;
	padding: 5px 3px;
}
table.tableCalendar01 caption {
	font-size: 12px;
	text-align: center;
	padding: 5px 10px;
	line-height: 100%;
	border: 1px solid #CCC;
	border-bottom: 0px;
}
}



sup{
font-size: x-small;
}

.fClear{
clear:both;
}

.fLeft{
float: left;
}


body{
-webkit-text-size-adjust: 100%;
}

.box_yellow {
    padding: 10px;
    margin-bottom: 60px;
    color: #000000;
    background: #FFFFCC;
    border: solid;
	border-weight:3px;
	border-color: #FFCC00;
    border-radius: 10px;
}
.box_yellow p{
    margin: 0!important;
    padding: 0!important;
}


.box_green {
    padding: 10px;
    margin-bottom: 60px;
    color: #000000;
    background: #CCFFCC;
    border: solid;
	border-weight:3px;
	border-color: #00FF00;
    border-radius: 10px;
}
.box_green p {
    margin: 0!important;
    padding: 0!important;
}

.box_blue {
    padding: 1px;
    margin: 2px;
    color: #000000;
    background: #e9faff;
    border: solid;
	border-weight:3px;
	border-color: #38c2ff;
    border-radius: 10px;
}

.box_blue p {
    margin: 10px;
    padding: 10px;
}

.box_gray {
    padding: 10px;
    margin-bottom: 60px;
    color: #000000;
    background: #efefef;
    border: solid;
	border-weight:3px;
	border-color: #cccccc;
    border-radius: 10px;
}
.box_gray p{
    margin: 0!important;
    padding: 0!important;
}



@media screen and (max-width:640px) {
/*横幅640px以下のCSS（スマホ）*/

.btn_tieup {
  padding: 0em 1em; 
  border-radius: 8px;/*角の丸み*/
  font-size: 8px;
}

.spHide{
	display: none !important;
}

table.tableBasic01{
font-size:12px;
}

table.tableFee01{
font-size:12px;
width: 100%;
margin-bottom: 15px;
}

table.tableChange01 {
width: 100%!important;
}
table.tableChange01 tr {
display: block;
float: left;
}
table.tableChange01 tr td, table.tableChange01 tr th {
display: block;
height: 2.5em;
}

table.tableChange01 thead {
display: block;
float: left;
width: 40%;
}
table.tableChange01 thead tr {
width: 100%;
}
table.tableChange01 tbody {
display: block;
float: left;
width: 60%;
}
table.tableChange01 tbody tr {
width: 100%;
}

table.tableChange01 div.line1 {
margin-bottom: 0.5em!important;
margin-top: 0.5em!important;
}

.sfClear{
clear:both;
}

.all_scroll {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	white-space: nowrap;
}
.switchBtn {
	text-align: left;
	padding-top: 5px;
	padding-bottom: 5px;
}
.switchBtn a {
	display: inline-block;
	width: 40%;
	height: 100%;
	font-size: 100%;
	color: #0066CC;
	text-decoration: none;
	background-color: #999999;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	margin: 0px 5px 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: #666 0px 0px 3px;
	-moz-box-shadow: #666 0px 0px 3px;
	box-shadow: #666 0px 0px 3px;
	background: #CCC;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#efefef), to(#ccc));
	background: -webkit-linear-gradient(#efefef, #CCC);
	background: -moz-linear-gradient(#efefef, #CCC);
	background: -ms-linear-gradient(#efefef, #CCC);
	background: -o-linear-gradient(#efefef, #CCC);
	background: linear-gradient(#efefef, #CCC);
	-pie-background: linear-gradient(#efefef, #CCC);
	behavior: url(/PIE.htc);
}
/* --BODY-- */  
body {
	font: 15px "ＭＳ Ｐゴシック", arial, helvetica, clean, sans-serif;
	line-height: 1.5;
}
/* ↓3/11 李先生と追加した要素1つ↓ */
body.hide {
	overflow: hidden;
	position: fixed;
}
img.close {
	position: absolute;
	top: 7%;
	right: 0%;
}
#right-top {
	display: none;
}
body {
	line-height: 100%;
	background-color: #fff;
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: #CC0000;
}
hr {
	background-color: #cc0000;
	height: 5px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	clear: both;
}
.border {
	border: 1px solid #999;
}
.red {
	color: #F00;
}
.green02 {
	color: #0C0;
}
.centerbottom {
	display: none;
}
.f-white {
	color: #FFF;
}
.f-orange {
	color: #F60;
}
.f-green {
	color: #008000;
}
.f-gray {
	color: #333;
}

.bold {
	font-weight: bold;
}
.f-center {
	text-align: center;
}
body {
	margin: 0px;
	text-align: left;
	border-top: 4px solid #cc0000;
}
#containor {
	height: auto;
	margin-right: auto;
	margin-left: auto;
}
#headerout {
	background: #fff;
	margin-bottom: 15px;
}
#header {
	margin-right: auto;
	margin-left: auto;
	background: #FFF;
	overflow: hidden;
}
#header .pagetop {
	display: none;
}
#header #title-left {
	float: left;
	clear: left;
	width: 150px;
}
#title-right {
	display: none;
}
#menu {
	display: none;
}
#po-menu {
	display: none;
}

#main {
	margin-right: auto;
	margin-left: auto;
	background-color: #FFF;
	margin-bottom: 2px;
	overflow: hidden;
}
#main:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
/* Hides from IE Mac */
* html #main {
	height: 1%;
}
/* End Hack */ 


#left {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 100;
	top: 0px;
	bottom: 0px;
	overflow-x: hidden;
	overflow-y: scroll;
	display: none;
	-webkit-overflow-scrolling: touch;
}
#left .maincontents-top {
	text-align: center;
	background-color: #efefef;
	padding: 20px;
	margin-bottom: 5px;
	color: #000000;
	border-bottom: 1px solid #999999;
}
#left .leftbox01 {
	margin-top: 10px;
}
#left .leftbox02 {
	background: #F63;
	padding-left: 10px;
	margin-top: 20px;
	padding-top: 3px;
	padding-bottom: 3px;
	text-align: left;
}
#left .leftbox03 {
	background: #F66;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 10px;
	text-align: left;
}
#left .left-white {
	background: #FFF;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
#left .listbox {
	background-color: #CCCCCC;
	margin-bottom: 5px;
	border: 1px solid #999999;
}
#left h2 {
	font-size: 123.1%;
	font-weight: bold;
	color: #333333;
	list-style-type: none;
	text-align: left;
	border: 1px solid #999;
	background-image: -webkit-linear-gradient(270deg, rgba(255,0,4,1.00) 0%, rgba(86,0,0,1.00) 100%);
	background-image: -moz-linear-gradient(270deg, rgba(255,0,4,1.00) 0%, rgba(86,0,0,1.00) 100%);
	background-image: -o-linear-gradient(270deg, rgba(255,0,4,1.00) 0%, rgba(86,0,0,1.00) 100%);
	background-image: linear-gradient(180deg, rgba(255,0,4,1.00) 0%, rgba(86,0,0,1.00) 100%);
	line-height: 1;
	padding: 0px;
	margin: 0px 0px 2px;
	width: 100%;
	height: 100%;
}
#left h2 a {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	border: 1px solid #DF8080;
	padding: 10px;
	height: 100%;
	background-image: url(/common/images/arrow.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
#left ul.list01 {
	background-color: #FFFFFF;
	margin: 0px 5px 5px;
	border: 1px solid #B3B3B3;
}
#left ul.list01 li {
	text-align: left;
	padding-top: 9px;
	padding-bottom: 9px;
	margin-bottom: 2px;
}
.left-nabi02 {
	font-size: 108%;
	color: #000;
	display: block;
	padding-left: 30px;
	list-style: none;
	background-image: url(/common/images/main_yaji02.gif);
	background-repeat: no-repeat;
	background-position: 10px center;
	line-height: 1;
	border-top: 1px none #CCC;
	border-right: 1px none #CCC;
	border-bottom: 1px solid #CCC;
	border-left: 1px none #CCC;
	margin-right: 10px;
	margin-left: 10px;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}
.left-nabi03 {
	font-size: 123.1%;
	font-weight: bold;
	color: #FFFFFF;
	list-style-type: none;
	text-align: left;
	padding-left: 16px;
	height: 18px;
	background-color: #E70000;
}
#content {
	background-color: #FFFFFF;
	width: 100%;
	float: none;
	display: block;
}
#right {
	width: 100%;
	background-color: #FFFFFF;
	float: none;
	display: block;
}
#right .right-01 {
	background-color: #Ebebeb;
	padding-right: 3px;
	padding-left: 3px;
	margin-top: 1px;
	margin-bottom: 1px;
}
#right .right-01 .right-01-in {
	padding: 15px;
}
#right .s-date01 {
	padding: 0px;
	margin: 0px 0px 10px;
	background-color: #efefef;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	behavior: url(/PIE.htc);
	border: 1px solid #CCCCCC;
}
#right .s-date01 h2 {
	padding: 10px 10px 10px 35px;
	color: #FFFFFF;
	background-repeat: no-repeat;
	background-position: 5px center;
	border-bottom: 1px dotted #FFFFFF;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #D6D6D6;
	border-left: 1px solid #CCCCCC;
	background-color: #333333;
}
#right .s-date01 dl dt, #right .s-date01 dl dd {
	padding: 5px;
}
#right .s-date01 dl {
	margin-bottom: 10px;
	width: 100%;
	padding: 0px;
}
#right .s-date01 dl dt {
	text-align: center;
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 5px;
	color: #666666;
	background-repeat: no-repeat;
	background-position: 10px center;
	padding-left: 20px;
}
#right .s-date01 dl dt.no1 {
	background-image: url(/common/images/crown.gif);
}
#right .s-date01 dl dt.no2 {
	background-image: url(/common/images/crown2.gif);
}
#right .s-date01 dl dt.no3 {
	background-image: url(/common/images/crown3.gif);
}
#right .s-date01 dl dd {
	padding-left: 50px;
	border-bottom: 1px dotted #999999;
	margin-top: -1.8em;
	margin-left: 15px;
}
#right .s-date01 dl dt.head {
	margin: 0px;
	border-style: none;
	font-size: 85%;
	color: #FFFFFF;
	background-color: #07339A;
	text-align: right;
	font-weight: normal;
	letter-spacing: 1px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
	float: left;
	width: 13%;
}
#right .s-date01 dl dd.head {
	border-style: none;
	font-size: 85%;
	color: #FFFFFF;
	background-color: #07339A;
	text-align: center;
	font-weight: normal;
	letter-spacing: 1px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	margin: 0px;
	width: 87%;
}
/*右カラムの枠線と背景色（グレー）なし*/
#right .s-date03 {
	padding: 0px;
	margin: 0px 0px 10px;
	background-color: #ffffff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	behavior: url(/PIE.htc);
}
#right .company01 {
	width: 10%;
}
#right .company02 {
	width: 40%;
}
#right .company03 {
	width: 15%;
}
#right .company04 {
	width: 15%;
}
#right .company05 {
	width: 20%;
}
p.more {
	width: 50%;
	height: 100%;
	font-size: 100%;
	color: #009999;
	background-color: #999999;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	margin: 0px auto 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: #666 0px 0px 3px;
	-moz-box-shadow: #666 0px 0px 3px;
	box-shadow: #666 0px 0px 3px;
	background: #CCC;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#efefef), to(#ccc));
	background: -webkit-linear-gradient(#efefef, #CCC);
	background: -moz-linear-gradient(#efefef, #CCC);
	background: -ms-linear-gradient(#efefef, #CCC);
	background: -o-linear-gradient(#efefef, #CCC);
	background: linear-gradient(#efefef, #CCC);
	-pie-background: linear-gradient(#efefef, #CCC);
	behavior: url(/PIE.htc);
}
p.more a {
	display: block;
	color: #0066CC;
	text-decoration: none;
	height: 100%;
	width: 100%;
	padding-top: 2px;
	padding-bottom: 2px;
}
#right .s-date01 h2.company {
	background-image: url(/common/images/city-icon.png);
}
#right .s-date01 table {
	width: 100%;
	font-size: 90%;
	border-collapse: collapse;
	margin-bottom: 10px;
}
#right .s-date01 table td {
	text-align: center;
	padding-top: 10px;
	padding-right: 2px;
	padding-bottom: 10px;
	padding-left: 2px;
	color: #333;
	font-weight: normal;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
}
#right .s-date01 table .star {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 100%;
	font-weight: bold;
	color: #666666;
	padding-right: 0px;
	padding-left: 0px;
}
#right .s-date01 table .star02 {
	font-size: 100%;
	font-weight: bold;
	color: #666666;
	padding-right: 0px;
	padding-left: 0px;
}
#right .s-date01 table th {
	font-size: 90%;
	background-color: #07339A;
	text-align: center;
	color: #FFFFFF;
	font-weight: normal;
	padding-top: 3px;
	padding-bottom: 3px;
}
#right .s-date01 table .color01 {
	background-color: #B8DBFE;
}
#right .s-date01 table .color02 {
	background-color: #E1F0FF;
}
#right .s-date01 table td.color03 {
	background-color: #D2E9FF;
}
#right .s-date01 table td.color04 {
	background-color: #DEFEE1;
}
#right .s-date02 {
	padding: 0px;
	margin: 0px 0px 10px;
	background-color: #efefef;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	behavior: url(/PIE.htc);
	border: 1px solid #CCCCCC;
}
#right .s-date02 h2 {
	padding: 10px 10px 10px 35px;
	color: #FFFFFF;
	background-repeat: no-repeat;
	background-position: 5px center;
	border-bottom: 1px dotted #FFFFFF;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #D6D6D6;
	border-left: 1px solid #CCCCCC;
	background-color: #333333;
}
#right .s-date02 h2.first_price {
	background-image: url(/common/images/Increase-icon.png);
}
#right .s-date02 h2.rank {
	background-image: url(/common/images/chart-search-icon.png);
}
#right .s-date02 h2.present {
	background-image: url(/common/images/present-icon.png);
}
#right .s-date02 table {
	width: 100%;
	font-size: 90%;
	border-collapse: collapse;
	margin-bottom: 10px;
	margin-right: auto;
	margin-left: auto;
}
#right .s-date02 table td {
	text-align: center;
	padding-top: 10px;
	padding-right: 2px;
	padding-bottom: 10px;
	padding-left: 2px;
	color: #333;
	font-weight: normal;
	border-bottom-width: 1px;
	border-bottom-color: #999;
	border-bottom-style: none;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}
#right .s-date02 table tr {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
#right .s-date02 table td.star {
	font-size: 100%;
	font-weight: bold;
	color: #666666;
	padding-right: 0px;
	padding-left: 0px;
	background-color: #FFFFFF;
}
#right .s-date02 table td.star02 {
	font-size: 100%;
	font-weight: bold;
	color: #666666;
	padding-right: 0px;
	padding-left: 0px;
}
#right .s-date02 table th {
	font-size: 90%;
	background-color: #07339A;
	text-align: center;
	color: #FFFFFF;
	font-weight: normal;
	padding-top: 3px;
	padding-bottom: 3px;
}
#right .s-date02 table tr .f-left {
	text-align: left;
	padding-left: 22px;
}
#right .s-date02 table tr .hatsune01.rank-width {
	width: 15%;
}
#footer {
	height: auto;
	margin-right: auto;
	margin-left: auto;
	clear: both;
}
#footer .nabi {
	float: left;
	list-style-type: none;
	margin-bottom: 3px;
	height: 25px;
}
#undermenu {
}
#undermenu ul .nabi {
	display: block;
	float: none;
	text-align: center;
}

.recommend {
	padding: 10px;
	border: 1px solid #CCC;
	position: relative;
	background-color: #FFFFFF;
	height: 100px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
.recommend h3 {
	margin: 0px 0px 15px;
}
.recommend ul {
	margin: 0px;
	float: left;
	padding: 0px;
	list-style: circle inside;
}
.recommend ul li {
	padding-bottom: 8px;
}
.recommend .link01 {
/*position: absolute;
top: 5px;
right: 210px;*/
}
.recommend .link02 {
/*position: absolute;
top: 5px;
right: 40px;*/
}
#colum1 {
	background-color: #FFFFFF;
	/*width: 90%;
	border: 1px solid #D9D9D9; 
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px; */
	margin-right: auto;
	margin-left: auto;
	float: none;
	margin-bottom: 2px;
	overflow: hidden;
}
#colum1 #go {
	width: 100%;
}
#colum1 #go .goBack {
	float: left;
	width: 427px;
	margin-right: 0px;
	margin-left: 0px;
	background-image: url(/common/images/arrow02.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 18px;
}
#colum1 #go .goNext {
	float: right;
	width: 427px;
	margin-right: 0px;
	margin-left: 0px;
	text-align: right;
	background-image: url(/common/images/arrow03.gif);
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 18px;
}
#colum2 {
	background-color: #FFFFFF;
	border: 1px solid #D9D9D9;
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
	overflow: hidden;
}
#colum2 #eyecatch {
}
#colum2 #eyecatch-right {
	text-align: center;
	padding-top: 20px;
}
#colum2 #eyecatch-left {
	text-align: center;
	overflow: hidden;
}
#colum2 #go {
}
#colum2 #go .goBack {
	float: left;
	width: 305px;
	margin-right: 0px;
	margin-left: 0px;
	background-image: url(/common/images/arrow02.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 18px;
}
#colum2 #go .goNext {
	float: right;
	width: 305px;
	margin-right: 0px;
	margin-left: 0px;
	text-align: right;
	background-image: url(/common/images/arrow03.gif);
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 18px;
}
.bottomToTopPosition {
	clear: both;
	text-align: right;
	float: right;
	height: 27px;
	margin-bottom: 10px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 99;
}
.bottomToTop {
	background-image: url(/common/images/topback02.gif);
	background-repeat: no-repeat;
	height: 27px;
	width: 27px;
	overflow: hidden;
}
.bottomToTop a {
	display: block;
}
.bottomToTop a:hover {
	background-image: none;
}
.bottomToTop a:hover img {
	visibility: hidden;
}
.pagenavi {
	color: #666;
	margin-bottom: 30px;
}
.Mainbox {
}
.Mainbox p {
	margin-right: 10px;
	margin-bottom: 45px;
	margin-left: 10px;
	font-size: 12px;
	line-height: 1.9em;
}
.Mainbox h1 {
	font-size: 18px;
	margin-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	color: #000;
	font-weight: bold;
	padding-left: 10px;
	padding-bottom: 10px;
	line-height: 100%;
}
.Mainbox h2 {
	background-color: #FFF;
	color: #333;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #00009C;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	padding-top: 3px;
	padding-bottom: 6px;
	padding-left: 8px;
	margin-bottom: 13px;
	font-size: 16px;
	line-height: 1em;
	clear:both;
}
.Mainbox h3 {
	border-bottom-color: #CCC;
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: normal;
	line-height: 1.5em!important;
}
.kousin01 .listdate {
	background-color: #FFF;
}
.kousin01 .listdate dt {
	text-align: left;
	padding-top: 6px;
	padding-bottom: 6px;
	clear: left;
	line-height: 160%;
	float: left;
}
.kousin01 .listdate dd {
	padding-top: 6px;
	padding-bottom: 6px;
	line-height: 160%;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
	padding-left: 105px;
}
#footer .footer-menu {
	border: 1px solid #CCC;
	background-color: #EEEEEE;
	overflow: hidden;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
#footer .footer-menu .footer-menu01 {
	float: left;
	line-height: 190%;
	width: 90%;
	margin: 0 auto;
	margin-bottom: 10px;
}
#footer .footer-menu .footer-menu01 ul li {
	background-image: url(/common/images/main_yaji02.gif);
	background-repeat: no-repeat;
	background-position: 7px center;
	padding-left: 17px;
	list-style-type: none;
}
#footer .footer-menu .footer-menu01 .footer-menu-title {
	background-image: url(/common/images/main_yaji.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 18px;
	font-weight: bold;
	margin-top: 5px;
}
table.hyou {
	width: 100%;
	margin-bottom: 10px;
	line-height: 140%;
	font-size: 50%
}
table.hyou th {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	border: 1px solid #cccccc;
	background-color: #ffcccc;
	font-weight: normal;
	color: #000;
}
table.hyou td {
	text-align: center;
	border: 1px solid #cccccc;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}
.hyou caption {
	font-size: 14px;
	text-align: left;
	padding-bottom: 15px;
	line-height: 120%;
}
.hyou tr .hyou_01 {
	font-size: 70%;
	width: 9%;
	background-color: #ffcccc;
}
table.hyou02 {
	width: 100%;
	margin-bottom: 10px;
	line-height: 140%;
}
table.hyou02 th {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	border: 1px solid #cccccc;
	background-color: #ffcccc;
	font-weight: normal;
	color: #000;
}
table.hyou02 td {
	border: 1px solid #cccccc;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}
table.hyou03 {
	width: 100%;
	margin-bottom: 10px;
	line-height: 140%;
	font-size: 50%
}
table.hyou03 th {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	border: 1px solid #cccccc;
	background-color: #ffcccc;
	font-weight: normal;
	color: #000;
}
table.hyou03 td {
	text-align: center;
	border: 1px solid #cccccc;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}
.hyou03 caption {
	font-size: 14px;
	text-align: left;
	padding-bottom: 15px;
	line-height: 120%;
}
.hyou03 tr .hyou_01 {
	font-size: 70%;
	width: 9%;
	background-color: #ffcccc;
}
.startman {
	float: left;
	background-image: url(/common/images/h_menu03_b.gif);
	background-repeat: no-repeat;
	height: 40px;
	weight: 128px;
	overflow: hidden;
}
.startman a {
	display: block;
}
.startman a:hover img {
	visibility: hidden;
}
.ipomagazine {
	float: right;
	background-image: url(/common/images/h_menu04_b.gif);
	background-repeat: no-repeat;
	height: 40px;
	weight: 222px;
	overflow: hidden;
}
.ipomagazine a {
	display: block;
}
.ipomagazine a:hover img {
	visibility: hidden;
}
.sitemap {
	overflow: hidden;
	font-size: 105%;
	line-height: 200%;
	margin-top: 15px;
	padding-bottom: 15px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FFDFDF;
}
.sitemap02 {
	font-size: 105%;
	line-height: 200%;
	margin-top: 13px;
	margin-bottom: 80px;
}
.sitemap ul li {
	background-image: url(/common/images/sitemap01.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 18px;
	font-size: 120%;
	font-weight: bold;
}
.sitemap ul ul li {
	background-image: url(/common/images/sitemap02.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 10px;
	margin-left: 40px;
	list-style-type: none;
	font-weight: normal;
	font-size: 100%;
}
.sitemap ul ul ul li {
	background-image: url(/common/images/sitemap03.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 10px;
	margin-left: 80px;
	font-weight: normal;
	font-size: 95%;
}
.sitemap02 ul li {
	background-image: url(/common/images/sitemap01.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 18px;
	font-size: 120%;
	font-weight: bold;
}
.sitemap02 ul ul li {
	background-image: url(/common/images/sitemap02.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 10px;
	margin-left: 40px;
	list-style-type: none;
	font-weight: normal;
	font-size: 100%;
}
.sitemap02 ul ul ul li {
	background-image: url(/common/images/sitemap03.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 10px;
	margin-left: 80px;
	font-weight: normal;
	font-size: 100%;
}
.sitemap_all {
	margin-bottom: 50px;
	overflow: hidden;
}
/*モダンブラウザ用*/
img, iframe, object {
	max-width: 100%;
	height: auto;
}
/*IE7用*/
.ie7 img, .ie8 object {
	width: 100%;
}
/*IE8用*/
.ie8 img, .ie8 object {
	width: auto;
}
#copy-r p span:before {
	content: "\A";
	white-space: pre;
}
.s-menu {
	position:fixed;
	top: 3%;
	right: 0%;
}
#main #colum2 .komi_pattern01 {
	background-color: #ECECEC;
	border-left: 5px solid #9C0000;
	padding-left: 10px;
	font-size: 140%;
	font-weight: bold;
	margin-bottom: 20px;
}
#main #colum2 .column_mokuji {
	letter-spacing: 1px;
	margin-bottom: 60px;
	font-size: 90%;
	margin-left: 10px;
}
#colum2 .column_mokuji dt {
	float: left;
	width: 75px;
	text-align: left;
	line-height: 160%;
	clear: left;
}
#colum2 .column_mokuji dd {
	line-height: 160%;
	margin-bottom: 8px;
	padding-left: 75px;
}
table.toriatukai {
	width: 100%;
	margin-bottom: 10px;
}
table.toriatukai th {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 0px;
	border: 1px solid #cccccc;
	background-color: #ffcccc;
	font-weight: normal;
	color: #000;
}
table.toriatukai td {
	text-align: center;
	border: 1px solid #cccccc;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 0px;
}
}

@media print, screen and (min-width: 641px) {
/*横幅641px以上のCSS（パソコン）*/

table.tableFee01{
float: left;
margin-left: 25px;
margin-right: 25px;
width:250px;
}


.pcHide{
	display: none !important;
}

.switchBtn {
		display: none;
}
.switchBtn a {
	display: inline-block;
	height: 100%;
	font-size: 100%;
	color: #0066CC;
	text-decoration: none;
	background-color: #999999;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	margin: 0px 5px 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: #666 0px 0px 3px;
	-moz-box-shadow: #666 0px 0px 3px;
	box-shadow: #666 0px 0px 3px;
	background: #CCC;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#efefef), to(#ccc));
	background: -webkit-linear-gradient(#efefef, #CCC);
	background: -moz-linear-gradient(#efefef, #CCC);
	background: -ms-linear-gradient(#efefef, #CCC);
	background: -o-linear-gradient(#efefef, #CCC);
	background: linear-gradient(#efefef, #CCC);
	-pie-background: linear-gradient(#efefef, #CCC);
	behavior: url(/PIE.htc);
}
hr {
	background-color: #cc0000;
	height: 5px;
	text-align: center;
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	clear: both;
}
.border {
	border: 1px solid #999;
}
.red {
	color: #F00;
}
.green02 {
	color: #0C0;
}
body {
	line-height: 100%;
	background-color: #EAEAEA;
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: #CC0000;
}
.centerbottom {
	padding-right: 20px;
	padding-left: 20px;
}
.f-white {
	color: #FFF;
}
.f-orange {
	color: #F60;
}
.f-green {
	color: #008000;
}
.f-gray {
	color: #333;
}

.bold {
	font-weight: bold;
}
.f-center {
	text-align: center;
}


body {
	margin: 0px;
	text-align: left;
	border-top: 4px solid #cc0000;
}
#containor {
	height: auto;
	margin-right: auto;
	margin-left: auto;
}
#headerout {
	background: #FFF;
	height: 145px;
}
#header {
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	background: #FFF;
	overflow: hidden;
}
#header .pagetop {
	padding-top: 15px;
	padding-bottom: 5px;
	font-size: 90%;
	font-weight: bold;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	width: 590px;
	float: left;
	margin-bottom: 5px;
}
#header #title-left {
	float: left;
	clear: left;
}
#title-right {
	float: right;
	width: 665px;
	background-color: #FFF;
	clear: right;
	border-top: 1px none #CCCCCC;
	border-right: 1px none #CCCCCC;
	border-bottom: 1px none #CCCCCC;
	border-left: 1px solid #CCCCCC;
	padding-top: 0px;
	padding-right: 35px;
	padding-bottom: 0px;
	padding-left: 35px;
	margin-top: 15px;
}
#header #title-right p {
	line-height: 155%;
	padding: 8px;
}
#menu {
	height: 65px;
	width: 100%;
	clear: both;
	background: url(/common/images/mainnavi-gray_03.gif) repeat-x center top;
	padding-top: 3px;
}
#menu .meinnavi-back {
	width: 1000px;
	height: 65px;
	margin-right: auto;
	margin-left: auto;
	display: block;
	background: url(/common/images/line.gif) no-repeat left center;
}
#menu .meinnavi-back li {
	float: left;
	height: 65px;
	width: 166px;
	background: url(/common/images/line.gif) no-repeat right center;
	list-style: none;
}
#menu .meinnavi-back li a {
	display: block;
	height: 35px;
	width: 166px;
	text-align: center;
	text-decoration: none;
	color: #FFFFFF;
	font-weight: bold;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	letter-spacing: 1px;
	padding-top: 26px;
	font-size: 110%;
}
#menu .meinnavi-back li a:hover {
	color: #FFBDBD;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FF0000;
}
#menu .meinnavi-back li .mini {
	font-size: 40%;
	color: #FF5B5B;
	display: none;
	font-weight: normal;
	letter-spacing: 2px;
}

#po-menu {
	height: 65px;
	width: 100%;
	clear: both;
	background: url("/po/common/images/bg_gnavi01.gif") repeat-x center top;
	padding-top: 3px;
}
#po-menu .meinnavi-back {
	width: 1000px;
	height: 65px;
	margin-right: auto;
	margin-left: auto;
	display: block;
	background: url(/common/images/line.gif) no-repeat left center;
}
#po-menu .meinnavi-back li {
	float: left;
	height: 65px;
	width: 166px;
	background: url(/common/images/line.gif) no-repeat right center;
	list-style: none;
}
#po-menu .meinnavi-back li a {
	display: block;
	height: 35px;
	width: 166px;
	text-align: center;
	text-decoration: none;
	color: #FFFFFF;
	font-weight: bold;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	letter-spacing: 1px;
	padding-top: 26px;
	font-size: 110%;
}
#po-menu .meinnavi-back li a:hover {
	color: #BDBDFF;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #0000FF;
}
#po-menu .meinnavi-back li .mini {
	font-size: 40%;
	color: #5B5BFF;
	display: none;
	font-weight: normal;
	letter-spacing: 2px;
}

#po-menu a.back-ipo {
  width: 150px!important;
  height: 20px!important;
  margin: 15px auto 0 auto;
  border: 1px solid #ffcccc;  /* 赤枠 */
  border-radius: 5px;         /* 角丸 */
  background: #cc0000;        /* 薄い赤 */
  color: #ff0000;             /* 文字色（任意） */
  padding: 10px 2px 2px 2px!important;
  text-decoration: none;
  white-space: nowrap;        /* メニューで折り返し防止 */
}

a.back-ipo:hover {
  background: #ff3333;
  	color: #FFBDBD!important;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FF0000!important;
}

a.back-ipo:active {
  background: #ffc7c7;
}

a.back-ipo:focus-visible {
  outline: 2px solid #ff0000;
  outline-offset: 2px;
}

#main {
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	background-color: #FFF;
	margin-bottom: 2px;
	overflow: hidden;
}
#main:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
/* Hides from IE Mac */
* html #main {
	height: 1%;
}
/* End Hack */ 


#left {
	background-color: #FFFFFF;
	width: 240px;
	float: left;
}
#left .maincontents-top {
	text-align: center;
	background-color: #666666;
	padding: 20px;
	margin-bottom: 5px;
	color: #FFFFFF;

}
#left .leftbox01 {
	margin-top: 10px;
}
#left .leftbox02 {
	background: #F63;
	padding-left: 10px;
	margin-top: 20px;
	padding-top: 3px;
	padding-bottom: 3px;
	text-align: left;
}
#left .leftbox03 {
	background: #F66;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 10px;
	text-align: left;
}
#left .left-white {
	background: #FFF;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
#left .listbox {
	background-color: #CCCCCC;
	margin-bottom: 5px;
	border: 1px solid #999999;
}
#left h2 {
	font-size: 123.1%;
	font-weight: bold;
	color: #333333;
	list-style-type: none;
	text-align: left;
	border: 1px solid #999;
	background-image: url(/common/images/mainnavi-gray_032.gif);
	background-repeat: repeat-x;
	background-position: 0px 0px;
	line-height: 1;
	padding: 0px;
	margin: 0px 0px 2px;
}
#left h2 a {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	border: 1px solid #DF8080;
	padding: 10px;
	height: 100%;
	background-image: url(/common/images/arrow.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
#left ul.list01 {
	background-color: #FFFFFF;
	margin: 0px 5px 5px;
	border: 1px solid #B3B3B3;
}
#left ul.list01 li {
	text-align: left;
	padding-top: 9px;
	padding-bottom: 9px;
	margin-bottom: 2px;
}
.left-nabi02 {
	font-size: 108%;
	color: #000;
	display: block;
	padding-left: 30px;
	list-style: none;
	background-image: url(/common/images/main_yaji02.gif);
	background-repeat: no-repeat;
	background-position: 10px center;
	line-height: 1;
	border-top: 1px none #CCC;
	border-right: 1px none #CCC;
	border-bottom: 1px solid #CCC;
	border-left: 1px none #CCC;
	margin-right: 10px;
	margin-left: 10px;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}
.left-nabi03 {
	font-size: 123.1%;
	font-weight: bold;
	color: #FFFFFF;
	list-style-type: none;
	text-align: left;
	padding-left: 16px;
	height: 18px;
	background-color: #E70000;
}
#content {
	background-color: #FFFFFF;
	width: 510px;
	float: left;
}
#right {
	width: 250px;
	background-color: #FFFFFF;
	float: right;
}
#right-top {
	float: right;
	width: 360px;
}
#right .right-01 {
	background-color: #Ebebeb;
	padding-right: 3px;
	padding-left: 3px;
	margin-top: 1px;
	margin-bottom: 1px;
}
#right .right-01 .right-01-in {
	padding: 15px;
}
#right-top h3 a {
	display: block;
	height: 100%;
}
#right .s-date01 {
	padding: 0px;
	margin: 0px 0px 10px;
	background-color: #efefef;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	behavior: url(/PIE.htc);
	border: 1px solid #CCCCCC;
}
#right .s-date01 h2 {
	padding: 10px 10px 10px 35px;
	color: #FFFFFF;
	background-repeat: no-repeat;
	background-position: 5px center;
	border-bottom: 1px dotted #FFFFFF;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #D6D6D6;
	border-left: 1px solid #CCCCCC;
	background-color: #333333;
}
#right .s-date01 dl dt, #right .s-date01 dl dd {
	padding: 5px;
}
#right .s-date01 dl {
	margin-bottom: 10px;
	width: 100%;
	padding: 0px;
}
#right .s-date01 dl dt {
	width: 40px;
	text-align: center;
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 5px;
	color: #666666;
	background-repeat: no-repeat;
	background-position: 10px center;
	padding-left: 20px;
}
#right .s-date01 dl dt.no1 {
	background-image: url(/common/images/crown.gif);
}
#right .s-date01 dl dt.no2 {
	background-image: url(/common/images/crown2.gif);
}
#right .s-date01 dl dt.no3 {
	background-image: url(/common/images/crown3.gif);
}
#right .s-date01 dl dd {
	width: 163px;
	padding-left: 50px;
	border-bottom: 1px dotted #999999;
	margin-top: -1.8em;
	margin-left: 15px;
}
#right .s-date01 dl dt.head {
	margin: 0px;
	border-style: none;
	font-size: 85%;
	color: #FFFFFF;
	background-color: #07339A;
	text-align: right;
	font-weight: normal;
	letter-spacing: 1px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
	float: left;
	width: 13%;
}
#right .s-date01 dl dd.head {
	border-style: none;
	font-size: 85%;
	color: #FFFFFF;
	background-color: #07339A;
	text-align: center;
	font-weight: normal;
	letter-spacing: 1px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	margin: 0px;
	width: 87%;
}
/*右カラムの枠線と背景色（グレー）なし*/
#right .s-date03 {
	padding: 0px;
	margin: 0px 0px 10px;
	background-color: #ffffff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	behavior: url(/PIE.htc);
}
#right .company01 {
	width: 10%;
}
#right .company02 {
	width: 40%;
}
#right .company03 {
	width: 15%;
}
#right .company04 {
	width: 15%;
}
#right .company05 {
	width: 20%;
}
p.more {
	font-size: 80%;
	color: #009999;
	background-color: #999999;
	width: 100px;
	padding-top: 0px;
	padding-bottom: 0px;
	text-align: center;
	margin: 0px auto 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: #666 0px 0px 3px;
	-moz-box-shadow: #666 0px 0px 3px;
	box-shadow: #666 0px 0px 3px;
	background: #CCC;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#efefef), to(#ccc));
	background: -webkit-linear-gradient(#efefef, #CCC);
	background: -moz-linear-gradient(#efefef, #CCC);
	background: -ms-linear-gradient(#efefef, #CCC);
	background: -o-linear-gradient(#efefef, #CCC);
	background: linear-gradient(#efefef, #CCC);
	-pie-background: linear-gradient(#efefef, #CCC);
	behavior: url(/PIE.htc);
}
p.more:hover {
	font-size: 80%;
	color: #009999;
	background-color: #CCC;
	width: 100px;
	text-align: center;
	margin: 0px auto 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: #666 0px 0px 3px;
	-moz-box-shadow: #666 0px 0px 3px;
	box-shadow: #666 0px 0px 3px;
	background: #CCC;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#CCC), to(#efefef));
	background: -webkit-linear-gradient(#CCC, #efefef);
	background: -moz-linear-gradient(#CCC, #efefef);
	background: -ms-linear-gradient(#CCC, #efefef);
	background: -o-linear-gradient(#CCC, #efefef);
	-pie-background: linear-gradient(#CCC, #efefef);
	behavior: url(/PIE.htc);
	padding: 0px;
}
p.more a {
	display: block;
	color: #0066CC;
	text-decoration: none;
	height: 100%;
	padding-top: 2px;
	padding-bottom: 2px;
}
p.more a:hover {
	color: #FF6600;
}
#right .s-date01 h2.company {
	background-image: url(/common/images/city-icon.png);
}
#right .s-date01 table {
	width: 100%;
	font-size: 90%;
	border-collapse: collapse;
	margin-bottom: 10px;
}
#right .s-date01 table td {
	text-align: center;
	padding-top: 10px;
	padding-right: 2px;
	padding-bottom: 10px;
	padding-left: 2px;
	color: #333;
	font-weight: normal;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
}
#right .s-date01 table .star {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 100%;
	font-weight: bold;
	color: #666666;
	padding-right: 0px;
	padding-left: 0px;
	width: 30px;
}
#right .s-date01 table .star02 {
	font-size: 100%;
	font-weight: bold;
	color: #666666;
	padding-right: 0px;
	padding-left: 0px;
	width: 30px;
}
#right .s-date01 table th {
	font-size: 90%;
	background-color: #07339A;
	text-align: center;
	color: #FFFFFF;
	font-weight: normal;
	padding-top: 3px;
	padding-bottom: 3px;
}
#right .s-date01 table .color01 {
	background-color: #B8DBFE;
}
#right .s-date01 table .color02 {
	background-color: #E1F0FF;
}
#right .s-date01 table td.color03 {
	background-color: #D2E9FF;
}
#right .s-date01 table td.color04 {
	background-color: #DEFEE1;
}
#right .s-date02 {
	padding: 0px;
	margin: 0px 0px 10px;
	background-color: #efefef;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	behavior: url(/PIE.htc);
	border: 1px solid #CCCCCC;
}
#right .s-date02 h2 {
	padding: 10px 10px 10px 35px;
	color: #FFFFFF;
	background-repeat: no-repeat;
	background-position: 5px center;
	border-bottom: 1px dotted #FFFFFF;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #D6D6D6;
	border-left: 1px solid #CCCCCC;
	background-color: #333333;
}
#right .s-date02 h2.first_price {
	background-image: url(/common/images/Increase-icon.png);
}
#right .s-date02 h2.rank {
	background-image: url(/common/images/chart-search-icon.png);
}
#right .s-date02 h2.present {
	background-image: url(/common/images/present-icon.png);
}
#right .s-date02 table {
	width: 100%;
	font-size: 90%;
	border-collapse: collapse;
	margin-bottom: 10px;
	margin-right: auto;
	margin-left: auto;
}
#right .s-date02 table td {
	text-align: center;
	padding-top: 10px;
	padding-right: 2px;
	padding-bottom: 10px;
	padding-left: 2px;
	color: #333;
	font-weight: normal;
	border-bottom-width: 1px;
	border-bottom-color: #999;
	border-bottom-style: none;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}
#right .s-date02 table tr {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
#right .s-date02 table td.star {
	font-size: 100%;
	font-weight: bold;
	color: #666666;
	padding-right: 0px;
	padding-left: 0px;
	background-color: #FFFFFF;
	width: 30px;
}
#right .s-date02 table td.star02 {
	font-size: 100%;
	font-weight: bold;
	color: #666666;
	padding-right: 0px;
	padding-left: 0px;
	width: 30px;
}
#right .s-date02 table th {
	font-size: 90%;
	background-color: #07339A;
	text-align: center;
	color: #FFFFFF;
	font-weight: normal;
	padding-top: 3px;
	padding-bottom: 3px;
}
#right .s-date02 table tr .f-left {
	text-align: left;
	padding-left: 22px;
}
#right .s-date02 table tr .hatsune01.rank-width {
	width: 15%;
}
#footer {
	height: auto;
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	clear: both;
}
#footer .nabi {
	float: left;
	list-style-type: none;
	margin-bottom: 3px;
	height: 25px;
}
#undermenu {
	height: 30px;
	width: 1000px;
	background-color: #EAEAEA;
}
#undermenu ul .nabi {
	padding-right: 15px;
	padding-left: 15px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #505050;
}
#undermenu ul .nabi {
	display: inline;
	float: none;
}
#undermenu ul {
	text-align: center;
}
/* table練習（李先生作成）
table.kesan {
	width: 500px;
	border-spacing: 0;
	border-collapse: collapse;
}
table.kesan th {
	width: 100px;
	text-align: left;
	vertical-align: top;
	padding: 10px;
	border: 1px solid #000;
}
table.kesan td {
	width: 400px;
	padding: 10px;
	border: 1px solid #000;
}
 */

.recommend {
	width: 980px;
	padding: 10px;
	border: 1px solid #CCC;
	position: relative;
	background-color: #FFFFFF;
	height: 100px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
.recommend h3 {
	margin: 0px 0px 15px;
}
.recommend ul {
	width: 245px;
	margin: 0px;
	float: left;
	padding: 0px;
	list-style: circle inside;
}
.recommend ul li {
	padding-bottom: 8px;
}
.recommend .link01 {
	position: absolute;
	top: 5px;
	right: 210px;
}
.recommend .link02 {
	position: absolute;
	top: 5px;
	right: 40px;
}
#colum1 {
	background-color: #FFFFFF;
	width: 878px;
	border: 1px solid #D9D9D9;
	padding-top: 30px;
	padding-right: 60px;
	padding-bottom: 30px;
	padding-left: 60px;
	margin-right: auto;
	margin-left: auto;
	float: none;
	margin-bottom: 2px;
	overflow: hidden;
}
#colum1 #go {
	width: 890px;
}
#colum1 #go .goBack {
	float: left;
	width: 427px;
	margin-right: 0px;
	margin-left: 0px;
	background-image: url(/common/images/arrow02.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 18px;
}
#colum1 #go .goNext {
	float: right;
	width: 427px;
	margin-right: 0px;
	margin-left: 0px;
	text-align: right;
	background-image: url(/common/images/arrow03.gif);
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 18px;
}
#colum2 {
	background-color: #FFFFFF;
	width: 635px;
	border: 1px solid #D9D9D9;
	padding-top: 30px;
	padding-right: 60px;
	padding-bottom: 30px;
	padding-left: 60px;
	float: right;
	overflow: hidden;
}
#colum2 #eyecatch {
	width: 650px;
}
#colum2 #eyecatch-right {
	float: right;
	width: 324px;
	text-align: center;
	padding-top: 20px;
}
#colum2 #eyecatch-left {
	text-align: center;
	float: left;
	width: 324px;
	overflow: hidden;
}
#colum2 #go {
	width: 650px;
}
#colum2 #go .goBack {
	float: left;
	width: 305px;
	margin-right: 0px;
	margin-left: 0px;
	background-image: url(/common/images/arrow02.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 18px;
}
#colum2 #go .goNext {
	float: right;
	width: 305px;
	margin-right: 0px;
	margin-left: 0px;
	text-align: right;
	background-image: url(/common/images/arrow03.gif);
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 18px;
}
.bottomToTopPosition {
	clear: both;
	text-align: right;
	float: right;
	height: 27px;
	margin-bottom: 10px;
}
.bottomToTop {
	background-image: url(/common/images/topback02.gif);
	background-repeat: no-repeat;
	height: 27px;
	width: 27px;
	overflow: hidden;
}
.bottomToTop a {
	display: block;
}
.bottomToTop a:hover {
	background-image: none;
}
.bottomToTop a:hover img {
	visibility: hidden;
}
.pagenavi {
	color: #666;
	margin-bottom: 30px;
}
.Mainbox {
}
.Mainbox p {
	margin-right: 10px;
	margin-bottom: 45px;
	margin-left: 10px;
	font-size: 105%;
	line-height: 190%;
}
.Mainbox h1 {
	font-size: 24px;
	margin-bottom: 30px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	color: #000;
	font-weight: bold;
	padding-bottom: 10px;
	line-height: 1.2em;
}
.Mainbox h2 {
	background-color: #FFF;
	color: #333;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #00009C;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	padding-top: 3px;
	padding-bottom: 6px;
	padding-left: 8px;
	margin-bottom: 13px;
	font-size: 18px;
	clear:both;
}
.Mainbox h3 {
	border-bottom-color: #CCC;
	margin-bottom: 15px;
	font-size: 125%;
	font-weight: normal;
}
.kousin01 .listdate {
	background-color: #FFF;
}
.kousin01 .listdate dt {
	text-align: left;
	padding-top: 6px;
	padding-bottom: 6px;
	clear: left;
	width: 100px;
	line-height: 160%;
	float: left;
}
.kousin01 .listdate dd {
	padding-top: 6px;
	padding-bottom: 6px;
	width: 392px;
	line-height: 160%;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
	padding-left: 105px;
}
#footer .footer-menu {
	width: 958px;
	border: 1px solid #CCC;
	background-color: #EEEEEE;
	overflow: hidden;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
#footer .footer-menu .footer-menu01 {
	float: left;
	width: 180px;
	margin-right: 10px;
	line-height: 170%;
	margin-bottom: 10px;
}
#footer .footer-menu .footer-menu01 ul li {
	background-image: url(/common/images/main_yaji02.gif);
	background-repeat: no-repeat;
	background-position: 7px center;
	padding-left: 17px;
	list-style-type: none;
}
#footer .footer-menu .footer-menu01 .footer-menu-title {
	background-image: url(/common/images/main_yaji.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 18px;
	font-weight: bold;
	margin-top: 5px;
}
#header #title-right .title-right02 {
}
#header #title-right .title-right03 {
	float: right;
	width: 120px;
}
#header #title-right .title-right03 img {
	margin-left: 10px;
}
table.hyou {
	width: 600px;
	margin-bottom: 10px;
	line-height: 140%;
}
table.hyou th {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	border: 1px solid #cccccc;
	background-color: #ffcccc;
	font-weight: normal;
	color: #000;
}
table.hyou td {
	text-align: center;
	border: 1px solid #cccccc;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}
.hyou caption {
	font-size: 14px;
	text-align: left;
	padding-bottom: 15px;
	line-height: 120%;
}
.hyou tr .hyou_01 {
	font-size: 12px;
	width: 9%;
	background-color: #ffcccc;
}
table.hyou02 {
	width: 600px;
	margin-bottom: 10px;
	line-height: 140%;
}
table.hyou02 th {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	border: 1px solid #cccccc;
	background-color: #ffcccc;
	font-weight: normal;
	color: #000;
}
table.hyou02 td {
	border: 1px solid #cccccc;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}
table.hyou03 {
	width: 78%;
	margin-bottom: 10px;
	line-height: 140%;
}
table.hyou03 th {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	border: 1px solid #cccccc;
	background-color: #ffcccc;
	font-weight: normal;
	color: #000;
}
table.hyou03 td {
	text-align: center;
	border: 1px solid #cccccc;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}
.hyou03 caption {
	font-size: 14px;
	text-align: left;
	padding-bottom: 15px;
	line-height: 120%;
}
.hyou03 tr .hyou_01 {
	font-size: 12px;
	width: 9%;
	background-color: #ffcccc;
}
.startman {
	float: left;
	background-image: url(/common/images/h_menu03_b.gif);
	background-repeat: no-repeat;
	height: 40px;
	weight: 128px;
	overflow: hidden;
}
.startman a {
	display: block;
}
.startman a:hover img {
	visibility: hidden;
}
.ipomagazine {
	float: right;
	background-image: url(/common/images/h_menu04_b.gif);
	background-repeat: no-repeat;
	height: 40px;
	weight: 222px;
	overflow: hidden;
}
.ipomagazine a {
	display: block;
}
.ipomagazine a:hover img {
	visibility: hidden;
}
.sitemap {
	overflow: hidden;
	font-size: 105%;
	line-height: 200%;
	margin-top: 15px;
	padding-bottom: 15px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FFDFDF;
}
.sitemap02 {
	font-size: 105%;
	line-height: 200%;
	margin-top: 13px;
	margin-bottom: 80px;
}
.sitemap ul li {
	background-image: url(/common/images/sitemap01.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 18px;
	font-size: 120%;
	font-weight: bold;
}
.sitemap ul ul li {
	background-image: url(/common/images/sitemap02.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 10px;
	margin-left: 40px;
	list-style-type: none;
	font-weight: normal;
	font-size: 100%;
}
.sitemap ul ul ul li {
	background-image: url(/common/images/sitemap03.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 10px;
	margin-left: 80px;
	font-weight: normal;
	font-size: 95%;
}
.sitemap02 ul li {
	background-image: url(/common/images/sitemap01.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 18px;
	font-size: 120%;
	font-weight: bold;
}
.sitemap02 ul ul li {
	background-image: url(/common/images/sitemap02.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 10px;
	margin-left: 40px;
	list-style-type: none;
	font-weight: normal;
	font-size: 100%;
}
.sitemap02 ul ul ul li {
	background-image: url(/common/images/sitemap03.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 10px;
	margin-left: 80px;
	font-weight: normal;
	font-size: 100%;
}
.sitemap_all {
	margin-bottom: 50px;
	overflow: hidden;
}
/*モダンブラウザ用*/
img, iframe, object {
	max-width: 100%;
}
/*IE7用*/
.ie7 img, .ie8 object {
	width: 100%;
}
/*IE8用*/
.ie8 img, .ie8 object {
	width: auto;
}
#main #colum2 .komi_pattern01 {
	background-color: #ECECEC;
	border-left: 5px solid #9C0000;
	padding-left: 10px;
	font-size: 140%;
	font-weight: bold;
	margin-bottom: 20px;
	width: 100%;
}
#colum2 .column_mokuji dt {
	float: left;
	margin-left: 10px;
	width: 75px;
	text-align: left;
	line-height: 160%;
	clear: left;
}
#colum2 .column_mokuji dd {
	line-height: 160%;
	margin-bottom: 5px;
	padding-left: 85px;
}
#main #colum2 .column_mokuji {
	letter-spacing: 1px;
	margin-bottom: 60px;
	font-size: 105%;
	margin-left: 10px;
}
.sheetimg img:hover {
	opacity: 0.7;
}
table.toriatukai {
	width: 100%;
	margin-bottom: 10px;
}
table.toriatukai th {
	text-align: center;
	vertical-align: middle;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	border: 1px solid #cccccc;
	background-color: #ffcccc;
	font-weight: normal;
	color: #000;
}
table.toriatukai td {
	text-align: center;
	border: 1px solid #cccccc;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
}
}
