@charset "utf-8";


/*PC・タブレット・スマホ(全端末)共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/


/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	-webkit-text-size-adjust: none;
	color: #000;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 20px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #008b8b;	/*リンクテキストの色   #63f*/
	transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
}
a:hover {
	color: #224acf;	/*マウスオン時の文字色*/
}




/*コンテナー（ホームページを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1400px;	/*最大幅*/
	margin: 50px 50px 0;	/*上、左右、下に空けるブロックの外側へのスペース*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
	position: relative;
	text-align: center;	/*内容を中央よせ*/
}
/*ロゴ画像設定*/
#logo  img {
	width: 40%;	/*画像幅*/
	margin-bottom: 40px;	/*画像の下に空けるスペース*/
}
/*トップページのロゴ画像設定*/
#logo img {
	position: absolute;
	left: 29%;	/*headerブロックに対して左から29%の場所に配置*/
	top: 15%;	/*headerブロックに対して上から15%の場所に配置*/
	z-index: 1;
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*画像ブロック*/
#mainimg {
	margin-bottom: 40px;	/*画像の下に空けるスペース*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.2);	/*影の設定。右へ、左へ、広げる幅。0,0,0は黒のことで0.2は透明度20%のこと。*/
	border-radius: 10px;	/*角を丸くする指定。この１行を削除すれば角丸がなくなります。*/
}

 
/*新メニュー*/

nav.cp_navi *, nav.cp_navi *:after, nav.cp_navi *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
nav.cp_navi a {
	text-decoration: none;
}
nav.cp_navi {
	margin: 1em 0;  /*変更前 2em 0*/
	text-align: center;
}
.cp_navi .cp_pagination {
	display: inline-block;
	margin-top: 0em;  /*変更前 2em*/
	padding: 0 0.5em;
	background-color: #fff;/*変更前#8BC34A*/
}
.cp_navi .cp_pagenum {
	font-size: 1em;
	line-height: 2.5em;
	display: block;
	float: left;
	padding: 0 25px;
	transition: 400ms ease;
	letter-spacing: 0.1em;
	color: #000; /*変更前#ffffff*/
}
.cp_navi .cp_pagenum:hover,
.cp_navi .cp_pagenum.current {
	font-weight: bold;
	color: #000;   /*変更前#ffffff*/
	background-color: #E8E8E8;    /*変更前#f5f5f5*/		
	border-radius: 10px;  /*変更 追加*/		
}
.cp_navi .cp_pagenum.prev:hover,
.cp_navi .cp_pagenum.next:hover {
	color: #C5E1A5;
	background-color: transparent;
}





/*メニュー
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
#menubar {
	text-align: center;	/*文字をセンタリング*/
	font-size: 28px;	/*文字サイズ*/
	margin-bottom: 30px;	/*メニューの下に空けるスペース*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	display: inline;	/*横並びにする設定*/
}
#menubar li a {
	text-decoration: none;
	padding: 15px 30px;	/*各メニュー内の余白。上下に15px、左右に30pxあけるという意味。*/
}
/*マウスオン時、現在表示中、の設定*/
#menubar li a:hover,
#menubar li.current a {
	color: #224acf;	/*文字色*/
	border-bottom: 1px solid #224acf;	/*下線の幅、線種、色*/
}

/*コンテンツ（見出しバーや文字などが入っているブロック）
---------------------------------------------------------------------------*/
/*コンテンツのh2タグの設定*/
#contents h2 {
	clear: both;
	margin-bottom: 15px;
	color: #fff;		/*文字色*/
	padding: 5px 20px;	/*上下、左右への余白*/
	background: #224acf;	/*背景色*/
	border-radius: 10px;	/*角を丸くする指定。この１行を削除すれば角丸がなくなります。*/
}
/*コンテンツのh3タグの設定*/
#contents h3 {
	clear: both;
	margin-bottom: 15px;
	color: #000;		/*文字色*/
	padding: 3px 20px;	/*上下、左右への余白*/
	background: #f5f5f5;	/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 10px;	/*角を丸くする指定。この１行を削除すれば角丸がなくなります。*/
}
/*コンテンツのp(段落)タグ設定*/
#contents p {
	padding: 0px 0px 14px;	/*上、左右、下への余白0px 0px 14px*/
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -5px;
}

/*Gallery
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	/*下線の幅、線種、色          border-bottom: 1px solid #ccc;	*/
	margin-bottom: 15px;
	padding: 20px;	/*ボックス内の余白*/
}


/*各ブロックごとの設定*/
.columnlist {
	overflow: hidden;
	font-size: 15px;	
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 3px 20px 3px;	/*ボックス内の余白*/
}






/*h4見出しの設定*/
.list h4 {
	color: #224acf;	/*文字色*/
}
/*画像の設定*/
.list img {
	width: 100%;		/*画像幅*/
	
	margin-top: 0% ; margin-right: 0% ; margin-bottom: 0%;	 /*画像のまわりに空けるスペース*/
}



h1 { 
font-weight:bold;   
color:#224acf;
} 	 /*暫定的に太文字に*/

h2 { font-weight:bold;   } 	 /*暫定的に太文字に*/

h3 { font-weight:bold;   } 	 /*暫定的に太文字に*/

h4 { font-weight:bold;   } 	 /*暫定的に太文字に*/







/*概要*/
.summary {

                  margin-top: 10px;
}


.summary p{

             color: #000000;	/*文字色*/
}





/*新ホテル記事*/
.article {
       overflow: hidden;
       padding: 20px;	/*ボックス内の余白*/
}

/*新画像の設定*/
.article img {
	width: 100%;		/*画像幅*/
	margin-top: 1% ; margin-right: 0% ; margin-bottom: 1%;	 /*画像のまわりに空けるスペース*/
}





p.access {
   color: #224acf;  /*アクセス表示*/
}








figcaption {
	font-size: 15px;	
}


dl {
	margin-top: 2% ; 
	padding: 0px 20px 0px;
	font-size: 18px;	
}




dt {
	color: #000000;	
	font-weight:bold; 
}



dd {
	font-size: 16px;	
	padding: 0px 25px 0px;
}


/*アフィリエイト用タグ
---------------------------------------------------------------------------*/

/*リンクgif画像設定*/


.link1 img {
width: 5px;
margin-top: 1% ; margin-right: 1% ; margin-bottom:1%; margin-left: 100% ;	 
}




/*アフィリエイト用タグ（ここまで）
---------------------------------------------------------------------------*/




/*通常リンクボタン用*/

.link {

margin-top: 3% ; margin-right: 0% ; margin-bottom:3%; margin-left: 0% ;	 
}

/*通常リンクボタン用*/






/*段落タグ*/
.list p {
	padding: 0 !important;
}




/*段落タグ*/
.columnlist p {
	padding: 0 !important;
}



/*注意事項*/
.caution {
	      overflow: hidden;
	      border-top: 1px solid #ccc;	/*下線の幅、線種、色*/
	      padding: 0px 20px 0px;	/*ボックス内の余白*/
	      
}



/*フッター(ページ最下部のcopyrightのパーツ)設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;	/*文字をセンタリング*/
	padding: 50px 0px 0px;	/*上、左右、下へのボックス内の余白*/
}
footer a {
	text-decoration: none;
	border: none;
}
footer .pr {
	display: block;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 20px;
	margin-bottom: 15px;
}
/*日付設定*/
#new dt {
	
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

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


/*-----------------装飾全般-----------------*/





/*ボタンA*/

a.cp_btn {
	display: block;
	width: 300px;
	padding: 0.8em;
	text-align: center;
	text-decoration: none;
	color: #20b2aa;
	border: 2px solid #20b2aa;
	border-radius: 10px;
	transition: .4s;
}
a.cp_btn:hover {
	background: #20b2aa;
	color: #fff;
}






/* ボタンB　*/
.btn-icon {
  display: inline-block;
  max-width: 180px;
  text-align: left;
  background-color: #9ec34b;
  font-size: 14px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 16px 5px 32px;
  border-radius: 4px;
  position: relative;
}

.btn-icon:before {
  font-family: "FontAwesome";
  content: "□";/* 好きなフォントアイコンを。初期値     　\f105 */
  position: absolute;
  left: 16px;
  top: 50%;
  margin-top: -15px;  /* 初期値-8px　*/
}

.btn-icon:hover {
  opacity: 0.8;
}





/*見出し用ドット下線*/

.cp_title_dot {
	padding: .1em;
	border-bottom: 1px dotted #224acf;
}


/*見出し用左縦ライン*/


.cp_title_vl {
	padding: 0.1em 0.3em;
	border-left: 2px solid #224acf;
}



/*見出し用左縦ラインと下線*/

.cp_title_vl_u {
	padding: 0.1em 0.3em;
	border-left: 10px solid #224acf;
	border-bottom: 3px solid #224acf;
}



/*区切り線（点線）*/


.cp_hr_dot{
	border-width: 1px 0 0 0;
	border-style: dashed;
	border-color: #224acf;
}



/*囲み枠（点線）*/


.box_dot {
    padding: 1em 1em 1em 1em;
    margin: 1em 0;
    background: #f0f7ff;
    border: dashed 1px #224acf;/*点線*/
}
.box_dot p {
    margin: 0; 
    padding: 0;
}



/*囲み枠（ラベル付き）*/



.box_label {
    position: relative;
    margin: 2em 0;
    padding: 1em 1em 0em 1em;
    border: solid 2px #224acf;
}
.box_label .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -2px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    background: #224acf;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box_label p {
    margin: 0; 
    padding: 0;
}



/*囲み枠（枠内にラベル付き）*/



.box_in_label {
    position: relative;
    margin: 2em 0;
    padding: 30px 15px 0px;
    border: solid 2px #224acf;
}
.box_in_label .box-in_title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 10px;
    background: #224acf;
    color: #ffffff;
    font-weight: bold;
}
.box_in_label p {
    margin: 0; 
    padding: 0;
}


/*吹き出し１（左寄り小顔女子）*/


.balloon1 {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon1 .faceicon1 {
  float: left;
  margin-right: -90px;
  width: 80px;
}

.balloon1 .faceicon1 img{
  width: 100%;
  height: auto;
  border: solid 1px #ffe4e1;
  border-radius: 50%;
}

.balloon1 .chatting1 {
  width: 85%;
}

.says1 {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 105px;
  padding: 17px 13px 5px 18px;
  border-radius: 12px;
  background: #ffe4e1;
}

.says1:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -23px;
  border: 12px solid transparent;
  border-right: 12px solid #ffe4e1;
}

.says1 p {
  margin: 0;
  padding: 0;
}






/*吹き出し２（右寄り大顔男子））*/


.balloon2 {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon2 .faceicon2 {
  float: right;
  margin-left: -14px;
  width: 180px;
}

.balloon2 .faceicon2 img{
  width: 90%;
  height: auto;
  border: solid 1px #d7ebfe;
  border-radius: 50%;
}

.balloon2 .chatting2 {
  width: 70%;
}

.says2{
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 105px;
  padding: 17px 13px 6px 20px;
  border-radius: 12px;
  background: #d7ebfe;
}

.says2:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  right: -22px;
  border: 12px solid transparent;
  border-left: 12px solid #d7ebfe;
}

.says2 p {
  margin: 0;
  padding: 0;
}










/*吹き出し３（左寄り大顔女子）*/


.balloon3 {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon3 .faceicon3 {
  float: left;
  margin-right: -90px;
  width: 150px;
}

.balloon3 .faceicon3 img{
  width: 100%;
  height: auto;
  border: solid 1px #ffe4e1;
  border-radius: 50%;
}

.balloon3 .chatting3 {
  width: 100%;
}

.says3 {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 105px;
  padding: 17px 13px 5px 18px;
  border-radius: 12px;
  background: #ffe4e1;
}

.says3:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -23px;
  border: 12px solid transparent;
  border-right: 12px solid #ffe4e1;
}

.says3 p {
  margin: 0;
  padding: 0;
}









/*吹き出し4（右寄り大顔男子）*/


.balloon4 {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon4 .faceicon4 {
  float: right;
  margin-left: -14px;
  width: 80px;
}

.balloon4.faceicon4 img{
  width: 100%;
  height: auto;
  border: solid 1px #d7ebfe;
  border-radius: 50%;
}

.balloon4 .chatting4 {
  width: 85%;
}

.says4{
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 105px;
  padding: 17px 13px 5px 18px;
  border-radius: 12px;
  background: #d7ebfe;
}

.says4:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  right: -23px;
  border: 12px solid transparent;
  border-left: 12px solid #d7ebfe;
}

.says4 p {
  margin: 0;
  padding: 0;
}







/*バルーン円／４文字／緑（下向き）*/

.balloon_circle_green {
  position: relative;
  display: inline-block;
  margin: 1em 0;
  padding: 0 5px;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  color: #fff;
  font-size: 6px;
  font-weight: bold;
  background: #3cb371;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon_circle_green:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 62%;
  margin-left: -15px;
  border: 10px solid transparent;
  border-top: 20px solid #3cb371;
  z-index: 0;
}



/*バルーン円／２文字／赤（下向き）*/

.balloon_circle_red {
  position: relative;
  display: inline-block;
  margin: 1em 0;
  padding: 0 5px;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  background: #ff6347;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon_circle_red:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 62%;
  margin-left: -15px;
  border: 10px solid transparent;
  border-top: 20px solid #ff6347;
  z-index: 0;
}


/*バルーン円／２文字／緑（下向き）*/

.balloon_circle_green2 {
  position: relative;
  display: inline-block;
  margin: 1em 0;
  padding: 0 5px;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  background: #3cb371;
  border-radius: 50%;
  box-sizing: border-box;
}

.balloon_circle_green2:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 62%;
  margin-left: -15px;
  border: 10px solid transparent;
  border-top: 20px solid #3cb371;
  z-index: 0;
}



/*価格表示タイトル文字*/

.price-title {

color: #9ec34b;

}


/*画像と動画の枠*/

.effect-frame {
    border: solid 2.5px #d3d3d3;
    
}



/*部屋の情報*/

.r-info {
          color: #224acf;	
          font-weight:bold;  
}



/*部屋の情報(詳細)*/

.r-detail {
          font-size: 13px;	
}



/*☆の指定（青）*/

.font-star {
           color:#224acf;
}


/*★の指定（赤）*/

.font-star2 {
           color:#ff6347;
}

/*新●の指定（黄色）*/

.font-star3 {
           color:#ffd400;
}


/*新■の指定（黄緑）*/

.font-star4 {
           color:#b8d200;
}


/* ページトップ上に戻るボタン */
.pagetop {
	color: #fff;
	background-color: rgba(0,0,0,0.3);
	text-decoration: none;
	display: none;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	width: 3.3rem;
	height: 3.3rem;
	line-height: 3.3rem;
	border-radius: 3.3rem;
	text-align: center;
	cursor: pointer;
}

.pagetop:hover {
	color: #fff !important;
	background-color: #ed702b;
	text-decoration: none;
}


/* リスト点 */
.list-dot:before      {
          content:  "";     /* 空の要素作成 */
width:  5px;               /* 幅指定 */
height:  5px;              /* 高さ指定 */
display:  inline-block;     /* インラインブロックにする */
background-color: #9ec34b;  /* 背景色指定 */
border-radius:  50%;        /* 要素を丸くする */
position:  relative;        /* 位置調整 */
top: -2px;                  /* 位置調整 */
margin-right: 5px;          /* 余白指定 */


}



/* リスト点 ul間隔調整 */
.list-dot-in    {
            font-size: 0.85em;
            padding: 0 0 10px 0;
}



   
/*-----------------装飾全般-----------------*/



.left {
text-align:left;/*リンクページ修正の為の暫定処置*/
}




/*その他
---------------------------------------------------------------------------*/
.look {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.color1 {color: #224acf;}
.pr {font-size: 12px;}


/*YouTubeのレスポンシブ化*/
.movie-wrap {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
     margin-bottom: 3px;
     margin-top: 15px;
}
 
.movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

/*YouTubeのレスポンシブ化*/




/*アドセンスのセンタリング*/

.adsense {
          overflow:hidden;
          text-align:center;
          margin:20px 0px 20px 0px;
          }
          
.adsense ins {
           vertical-align:bottom;
           }
           
           
 /*アドセンスのセンタリング*/
 
 
 
 
 
 /*バナーのセンタリング*/

.banner {
          overflow:hidden;
          text-align:center;
          margin:20px 0px 20px 0px;
          }
          
.banner ins {
           vertical-align:bottom;
           }
           
           
 /*バナーのセンタリング*/
           
 
 
 
 
 
/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*コンテナー（ホームページを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
	margin: 20px 10px 0;	/*上、左右、下に空けるブロックの外側へのスペース*/
}

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 14px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像設定*/
#logo  img {
	width: 90%;	/*画像幅*/
}
/*トップページのロゴ画像設定*/
#logo img {
	width: 40%;	/*画像幅*/
	top: 14%;	/*headerブロックに対して上から40%の場所に配置*/
}



/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*画像ブロック*/
#mainimg {
	margin-bottom: 20px;	/*画像の下に空けるスペース*/
	
}







/*メニュー
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
#menubar {
	text-align: center;	/*文字をセンタリング*/
	font-size: 18px;	/*文字サイズ*/
	margin-bottom: 10px;	/*メニューの下に空けるスペース*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	display: block;	/*縦並びにする設定*/
	margin-bottom: 15px;
}
#menubar li a {
	text-decoration: none;
	padding: 8px 30px;	/*各メニュー内の余白。*/
}





/*コンテンツのp(段落)タグ暫定設定*/
#contents p {
	padding: 0px 0px 14px;	/*上、左右、下への余白*/
}


figure {
	padding: 5px 0px 10px;	/*上、左右、下への余白、暫定的に設定*/
}


figcaption {
	font-size: 11px;	
}




dl {
	padding: 0px 0px 14px 20px;	/*上、左右、下への余白、暫定的に設定*/
}


dt {
       font-size: 13px;	
	padding: 2px 0px 2px;	
	
	/*上、左右、下への余白、暫定的に設定*/
}


dd {
	font-size: 13px;	
	padding: 0px 0px 0px;
}



/*Galleryページ
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	padding: 10px;	/*ボックス内の余白*/
}





.article {
	padding: 20px 5px 20px;	/*ボックス内の余白*/
}



/*各ブロックごとの設定*/
.columnlist {
	overflow: hidden;
	font-size: 10px;	
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 3px 10px 3px;/*ボックス内の余白*/
	
}




.article h3{
  
          color: #000000;	/*文字色*/
}



/*注意事項*/
.caution {
	      text-align: left;	/*文字をセンタリング*/
	      padding: 0px 5px 20px;	/*ボックス内の余白*/
}



/*メニューテスト*/


	.cp_navi .cp_pagenum {
	display: none;
	padding: 0 14px;
	}
	.cp_navi .cp_pagenum:nth-of-type(2) {
	position: relative;
	padding-right: 50px;
	}
	.cp_navi .cp_pagenum:nth-of-type(2)::after {
	font-size: 1.2em;
	position: absolute;
	top: 0;
	left: 45px;
	content: '...';
	}
	.cp_navi .cp_pagenum:nth-child(-n+3),
	.cp_navi .cp_pagenum:nth-last-child(-n+3) {
		display: block;
	}
	.cp_navi .cp_pagenum:nth-last-child(-n+4) {
		padding-right: 14px;
	}
	.cp_navi .cp_pagenum:nth-last-child(-n+4)::after {
		content: none;
	}
	.cp_navi .cp_pagenum.prev,
	.cp_navi .cp_pagenum.next {
		padding: 0 5px;
	}






/* ボタンB　*/
.btn-icon {
  display: inline-block;
  max-width: 180px;
  text-align: left;
  background-color: #9ec34b;
  font-size: 14px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 16px 5px 32px;
  border-radius: 4px;
  position: relative;
}

.btn-icon:before {
  font-family: "FontAwesome";
  content: "□";/* 好きなフォントアイコンを。初期値     　\f105 */
  position: absolute;
  left: 16px;
  top: 50%;
  margin-top: -11px;  /* 初期値-8px　*/
}

.btn-icon:hover {
  opacity: 0.8;
}













/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*アイコン*/
#new h2::before {
	float: right;	/*右に回り込み*/
	background: #fff;	/*背景色*/
	color: #666;	/*文字色*/
	border-radius: 50%;	/*角丸のサイズ*/
	width: 18px;		/*幅*/
	line-height: 18px;	/*高さ*/
	text-align: center;	/*文字をセンタリング*/
}
/*プラスアイコンの文字*/
#new h2.close::before {
	content: "＋";
}
/*マイナスアイコンの文字*/
#new h2.open::before {
	content: "−";
}

/*テーブル
---------------------------------------------------------------------------*/
/*tテーブルブロック設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;			/*テーブル内の余白*/
}

}
