@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #333;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	/*font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";*/
    background-color: #FFF;

    /*文字サイズ/行間、フォントファミリー*/
    font: 14px/2 "inherit",'Century Gothic',"Hiragino Sans GB","Hiragino Sans GB W3","STXihei",SimHei,Heivetica,"游ゴシック","メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";

    font-family: "inherit",'Century Gothic',"Hiragino Sans GB","Hiragino Sans GB W3","STXihei",SimHei,Heivetica,"游ゴシック","メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
    webkit-font-smoothing:antialiased;

}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {

	margin: 0px;
    margin-top: 20px;
}


table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #1b56f8;	/*リンクテキストの色*/
}
a:hover {
	color: #148ef6;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
    position: relative;
	width: 990px;	/*コンテナー幅*/
    padding-top: 120px;
	margin-right: auto;
	margin-left: auto;
	/*background-image: url(../../img/tennis_member_individual/bg1.png);*/	/*背景画像の読み込み*/
	background-repeat: no-repeat;				/*背景画像をリピートしない*/
	background-position: right -30px;			/*背景画像を右側、上から-30pxの位置に配置*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/

#container h1{
    margin-left: 10px;
    margin-top: 30px;
    font-size: 20px;

}

#container h6{
    color: #636363;
    font-size: 25px;
    margin-left: 10px;
}

menu h6{
    display: none;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
    width: 195px;	/*メニュー幅*/
}
nav#menubar ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 5px solid #000;	/*下部の線の幅、線種、色*/
	margin: 0px 0px 20px 2px;		/*メニューの外側への余白。上、右、下、左への指定。*/
	padding: 10px 0px 10px 30px;	/*メニュー内の余白。上、右、下、左への指定。*/
	color: #000;		/*文字色*/
	line-height: 1.4;	/*行間*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background-image: url(../../img/_common/arrow1.png);	/*背景の矢印画像の読み込み*/
	background-repeat: no-repeat;					/*背景の矢印画像をリピートしない設定*/
	background-position: left 5px;					/*背景の矢印画像の位置。左側、上から5pxの場所に配置。*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child a {
	margin-left: 0px;
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menubar ul li a:hover{
	border-bottom: 5px solid #999;	/*下線の幅、線種、色*/
	background-image: url(../../img/_common/arrow1.png), -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*左側の矢印画像の読み込みとグラデーション*/
	background-image: url(../../img/_common/arrow1.png), -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background-image: url(../../img/_common/arrow1.png), linear-gradient(#FFF, #e5e5e5);			/*同上*/
	background-repeat: no-repeat;	/*背景の矢印画像をリピートしない設定*/
	background-position: left 5px;	/*背景の矢印画像の位置。左側、上から5pxの場所に配置。*/
}



nav#menubar ul li.current a{
    border-bottom: 5px solid #999;	/*下線の幅、線種、色*/
    background-image: url(../../img/_common/arrow1.png), -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*左側の矢印画像の読み込みとグラデーション*/
    background-image: url(../../img/_common/arrow1.png), -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
    background-image: url(../../img/_common/arrow1.png), linear-gradient(#FFF, #e5e5e5);			/*同上*/
    background-repeat: no-repeat;	/*背景の矢印画像をリピートしない設定*/
    background-position: left 5px;	/*背景の矢印画像の位置。左側、上から5pxの場所に配置。*/
}
/*英語表記の設定*/
nav#menubar ul li a span {
	font-size: 9px;	/*文字サイズ*/
	display: block;
	color: #999;
}


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 90%;	/*メインコンテンツ幅*/
	margin:10px 5%;
    padding-bottom: 30px;


}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	background-color: #636363;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#636363), to(#636363));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#636363, #636363);	/*同上*/
	background-image: linear-gradient(#636363, #636363);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #FFF;			/*文字色*/
	padding: 10px 15px;	/*上下、左右への余白*/
	clear: both;
}
#main h2.type3 {
	background-color: #148ef6;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#35a1fd), to(#148ef6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#35a1fd, #148ef6);	/*同上*/
	background-image: linear-gradient(#35a1fd, #148ef6);			/*同上*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	background-color: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background-image: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	font-size: 100%;
	padding: 4px 15px;	/*上下、左右への余白*/
	clear: both;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh3タグのtype2設定。plan.htmlの各プランに使っている見出し。*/
#main h3.type2 {
	background-color: #babad1;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#d7d7e5), to(#babad1));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#d7d7e5, #babad1);	/*同上*/
	background-image: linear-gradient(#d7d7e5, #babad1);			/*同上*/
}
/*mainコンテンツのh4タグの設定*/
#main h4 {
	padding: 5px 5px 10px 10px;	/*上、右、下、左側への余白*/
	font-size: 18px;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #000;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #000;	/*文字色*/
}

#main h5{
    position: relative;
    background: #dfefff;
    box-shadow: 0px 0px 0px 5px #dfefff;
    border: dashed 2px white;
    padding: 0.2em 2em;
    color: #454545;
    font-size: 18px;
    margin-bottom: 20px;
    margin-right: 5px;
    margin-left: 5px;
}

#main h5:after {
    position: absolute;
    content: '';
    left: -7px;
    top: -7px;
    border-width: 0 0 15px 15px;
    border-style: solid;
    border-color: #fff #fff #a8d4ff;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 15px;	/*左から、上、左右、下への余白*/
}

#main p.exp {
    font-size: 17px;
    color: #2e6da4;
}

#main p.main_exp{
    font-size: 18px;
    line-height: 28px;
    color: #434343;
    padding: 1em 15px 3em;	/*左から、上、左右、下への余白*/
}

#main p.detail_exp{
    font-size: 15px;
    line-height:  25px;
}



#main strong{
    font-size: 18px;
    font-weight: normal;
    color: #2e6da4;
    border-bottom: 2px solid #CCC;	/*下側の線の幅、線種、色*/
    padding-bottom: 5px;
    display: block;

}

#main div.score{
    padding: 20px 10px 5px 10px;
}

#about_main img,#about_detail img{
    margin: 20px 2%;

}



/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;	/*文字色*/
	background: #000;	/*背景色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: blue;
}
footer a:hover {
	color: #FFF;
}
/*---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
    border: 1px solid #CCC;	/*枠線の幅、線種、色*/
    border-radius: 0px;		/*角丸のサイズ*/
    padding: 10px;			/*ボックス内の余白*/
    margin-bottom: 15px;	/*ボックス間（下側）のスペース*/
    overflow: hidden;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
    background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
    background-image: linear-gradient(#FFF, #e3e3e3);			/*同上*/
    -webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
    box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;			/*同上*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
    float: left;			/*画像を左へ回り込み*/
    background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
    padding: 0px;			/*余白。ここに上の行で設定した背景色が出ます。*/
    margin: 10px 50px;
    border: 1px solid #CCC;	/*枠線の幅、線種、色*/
    width: 30%;
    height:auto;
}

/*ボックス内の段落タグ設定*/
/*#main section.list p {*/
    /*color: rgba(31, 30, 179, 0.89);	*//*文字色*/
    /*font-size: 18px;*/
    /*font-weight: bold;*/
    /*line-height: 30px;*/
    /*padding: 0px;*/
    /*margin-left: 40%;	*//*左の写真とのバランスをとって設定*/
    /*margin-bottom: 0px;*/
    /*margin-top: 20px;*/
    /*margin-right: 30px;*/
    /*overflow: auto;*/
    /*overflow-wrap: break-word;*/
/*}*/


#main section.list p {
    margin-top: 5px;
    margin-left: 40%;	/*左の写真とのバランスをとって設定*/
    margin-right: 5px;	/*左の写真とのバランスをとって設定*/
    position: relative;
    padding: .3em;
    background: #00ACC1;
    border-radius: 8px;
    color: #ffffff;
    padding: 15px;
    overflow: visible;
}
#main section.list p:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 20px;
    border: 10px solid transparent;
    border-top: 10px solid #00ACC1;
    width: 0;
    height: 0;
}




/*ボックス内の段落タグ設定*/
#main section.list div {
    color: #040c36;	/*文字色*/
    font-size: 16px;
    line-height: 25px;
    padding: 0px;
    margin-left: 40%;	/*左の写真とのバランスをとって設定*/
    margin-bottom: 0px;
    margin-top: 20px;
    margin-right: 30px;
}

#main div.detail{
    margin-top: 10px;
    margin-left: 40%;

}

/* メンバーの説明 */
#main article p.exp{
    margin-top: 10px;
    font-size: 16px;
    line-height: 25px;
    overflow: auto;
    overflow-wrap: break-word;
}

#main article div.exp{
    padding: 15px;
}
div.tag{
    margin: 10px 5px;
}


/* blog ページ */
/*---------------------------------------------------------------------------*/

div.blog{
    margin: 20px 5px;
}


.btn_good {
    background-color: rgba(112, 155, 238, 0.61);	/*背景色（古いブラウザだとここの色のみが出ます）*/
    background-image: -webkit-gradient(linear, left top, left bottom, from(#1b1f73), to(rgba(51, 75, 240, 0.46)));	/*グラデーション*/
    background-image: -webkit-linear-gradient(#1b1f73, rgba(51, 75, 240, 0.46));	/*同上*/
    background-image: linear-gradient(#1b1f73, rgba(51, 75, 240, 0.46));			/*同上*/
    -webkit-box-shadow: 1px 2px 5px #adadad;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
    box-shadow: 1px 2px 5px #adadad;			/*同上*/
    float: right;
    width:150px;
    height:50px;
}

.btn_report {
    background-color: rgba(112, 155, 238, 0.61);	/*背景色（古いブラウザだとここの色のみが出ます）*/
    background-image: -webkit-gradient(linear, left top, left bottom, from(#1b1f73), to(rgba(51, 75, 240, 0.46)));	/*グラデーション*/
    background-image: -webkit-linear-gradient(#1b1f73, rgba(51, 75, 240, 0.46));	/*同上*/
    background-image: linear-gradient(#1b1f73, rgba(51, 75, 240, 0.46));			/*同上*/
    -webkit-box-shadow: 1px 2px 5px #adadad;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
    box-shadow: 1px 2px 5px #adadad;			/*同上*/
    float: right;
    width:60px;
    height:50px;
    margin-right: 10px;
}
.btn_good:hover,.btn_report:hover {
    background: rgba(101, 129, 165, 0.52);
}

#goodImage{
    background-image:url('/img/_common/good_s.png');
    background-repeat: no-repeat;
    display:inline-block;
    width:35px;
    height:35px;
}
#reportImage{
    background-image:url('/img/_common/alert3.png');
    background-repeat: no-repeat;
    display:inline-block;
    width:35px;
    height:35px;
}

.btnBlogDetail{
    width:45px;
    height:45px;
    padding: 6px 1px !important ;
    -webkit-box-shadow: 1px 2px 5px #adadad;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
    box-shadow: 1px 2px 5px #adadad;			/*同上*/
}

.btnBlogDetail:hover {
    background: rgba(101, 129, 165, 0.52);
}



.blogDetail{
    background-image:url('/img/_common/read2_s.png');
    background-repeat: no-repeat;
    display:inline-block;
    width:32px;
    height:32px;
}

div.list_foot,div.list_blog{
    margin: 5px 20px 5px 20px;
}
#but_prev,#but_next,#but_score_prev,#but_score_next{
    width: 100px;
    margin-left: 15px;
}
#but_prev_disp,#but_next_disp{
    font-size: 25px;
    width: 28%;
    margin-left: 3%;
    height: 50px;
}
div.graph_foot{
    margin: 5px 20px 80px 50px;
}





/*テーブル1
---------------------------------------------------------------------------*/
.ta1 {
    width: 100%;
    margin: 30px 0px;
    position: relative;
}
.ta1, .ta1 td, .ta1 th{
    border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
    /*line-height: 2;*/
}
/*テーブル内の右側*/
.ta1 td{
    padding: 5px 15px;
    font-size: 17px;
    vertical-align: middle;
}
/*テーブル内の右側*/
.ta1 td .blog{
    font-size: 15px;
}
/*テーブル内の左側*/
.ta1 th{
    width: 220px;
    padding: 10px;
    text-align: left;
    background-color: #e2e2e3;	/*背景色*/
    font-size: 17px;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi,.ta1 th.tamidashi_s{
    width: auto;
    text-align: center;
    background-color: #636363;	/*背景色*/
    color: #FFF;	/*文字色*/
    font-size: 17px;
}
.ta1 .ta_text1{
    font-size: 13px;
    margin-top: 5px;
    text-align: right;
}
.ta1 .ta_text2{
    text-align: center;
}


.ta_score{
    margin-top: 0px !important;
    margin-bottom: 20px !important;
}

.ta_score a{
    text-decoration: underline;
}

textarea.info{
    color: #000000;
    border: none;
    width: 100%;
    height: 50px;
    background: #ffffff;
    padding: 5px 15px 5px;
    margin: 0px;
    vertical-align: middle;
    pointer-events: none;
}



span.menuName{
    padding: 10px 5px;
    margin-bottom: 30px;
    background-image: url(../../img/_common/title.png);			/*同上*/
    background-repeat: no-repeat;	/*背景の矢印画像をリピートしない設定*/
    background-size: 100% 100%;
    font-weight: normal;	/*文字を太字にする設定*/
    font-size: 18px;
    text-align: center;
    display: block;
    width: 100%;
    height: 50px;

}

/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
    margin-top: 10px;
	margin-bottom: 10px;
	border: none;
	border-radius: 5px;	/*角丸のサイズ*/
	background-color: #2286fc;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbafb), to(#2286fc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#5dbafb, #2286fc);	/*同上*/
	background-image: linear-gradient(#5dbafb, #2286fc);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	color: #FFF;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #2a33bd;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbafb), to(#2a33bd));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#5dbafb, #2a33bd);	/*同上*/
	background-image: linear-gradient(#5dbafb, #2a33bd);			/*同上*/
}



input[type="submit"].btn_login,
input[type="button"].btn_login
{
    width: 100px;	/*ボタン幅*/
    padding: 5px 10px;	/*ボタン内の余白*/
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;	/*角丸のサイズ*/
    background-color: #9c9c9c;	/*背景色（古いブラウザだとここの色のみが出ます）*/
    background-image: -webkit-gradient(linear, left top, left bottom, from(#9c9c9c), to(#9c9c9c));	/*グラデーション*/
    background-image: -webkit-linear-gradient(#9c9c9c, #9c9c9c);	/*同上*/
    background-image: linear-gradient(#9c9c9c, #9c9c9c);			/*同上*/
    -webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
    box-shadow: 1px 2px 7px #ccc;			/*同上*/
    color: #FFF;		/*文字色*/
    font-size: 18px;	/*文字サイズ*/
    letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
    background-position: 0 0px; /* 半分おかしな色が出るのを修正 */
}

/*コンタクトボタン
---------------------------------------------------------------------------*/
#but_contact{
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 250px;

    color: #fff;
    /*background-color: #094;*/
    background-color: #2286fc;	/*背景色（古いブラウザだとここの色のみが出ます）*/
    background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbafb), to(#2286fc));	/*グラデーション*/
    background-image: -webkit-linear-gradient(#5dbafb, #2286fc);	/*同上*/
    background-image: linear-gradient(#5dbafb, #2286fc);			/*同上*/
    -webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
    box-shadow: 1px 2px 7px #ccc;			/*同上*/


    padding: 20px 50px;
    margin-right: 1rem;
    font-size: 17px;
    z-Index:100;
    /*border-radius: 3px;*/
    /*border-bottom: 5px solid #00662d;*/
    border-bottom: 5px solid #141c66;
}
#but_contact:hover {
    color: #fff;
    /*background: #00a349;*/
    background-color: #2a33bd;	/*背景色（古いブラウザだとここの色のみが出ます）*/
    background-image: -webkit-gradient(linear, left top, left bottom, from(#5dbafb), to(#2a33bd));	/*グラデーション*/
    background-image: -webkit-linear-gradient(#5dbafb, #2a33bd);	/*同上*/
    background-image: linear-gradient(#5dbafb, #2a33bd);			/*同上*/
    margin-top: 3px;
    border-bottom: 2px solid #141c66;
}
#but_contact div{
    margin-left: 10px;
}


/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #7e7e7e;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 100%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}

iframe {
    max-width: 100%;
    /*height: auto;*/
}

#menubar_hdr {
	display: none;
}
img.fr {
	float: right;
	margin: 0px 0px 15px 10px;
}
img.fl {
	float: left;
	margin: 0px 10px 15px 0px;
}

.tagWhite,
.tagBlue,
.tagRed
{
    color: #7e7e7e;
    background-color: white;
    padding: 5px 12px;
    font-size: 15px;
    border: 1px solid #7e7e7e;
    border-radius: 30px;
    margin-left: 5px;
    margin-bottom: 2px;
    display: inline-block;
}


.tagWhite {
    background-color: white;
}

.tagBlue {
    background-color: rgba(135, 193, 230, 0.5);
}

.tagRed {
    background-color: rgba(252, 152, 144, 0.5);
}

div.status{
    margin: 20px;
    font-size: 17px;
}

div.blog_disp{
    width: 100%;
    border: 1px solid rgba(126, 126, 126, 0.33);

}


a.btn-user-profile {
    position: relative;
    display: inline-block;
    margin-top: 2px;
    margin-left: 10px;
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    color: #fff;
    background-color: #eb6100;
    border-radius: 100vh;
}
a.btn-user-profile:hover {
    color: #fff;
    background: #f56500;
}
.none{
    display: none!important;
}



/*ここからタブレット用 (959px以下に適用される)
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 959px) {

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
    padding-top: 130px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*header {*/
	/*text-align: center;*/
	/*height: auto;*/
	/*margin-bottom: 15px;*/
/*}*/
/*h1ロゴの設定*/
/*header h1 {*/
	/*position: static;*/
	/*padding: 10px 0px;	*//*ロゴの上下にあける余白が10px*/
/*}*/
/*電話番号ボックスの設定*/
/*header address {*/
	/*position: static;*/
	/*width: 300px;	*//*ボックス幅*/
	/*margin: 0px auto;*/
/*}*/

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	margin-left: 0.5%;	/*メニューの左右間の余白*/
	width: 19.5%;			/*メニュー幅*/
    margin-bottom: 20px;
}
nav#menubar ul li a {
	margin: 0;
    font-size: 12px;
}
/*奇数番目のメニューの設定*/
/*nav#menubar ul li:nth-child(odd) {*/
	/*margin-left: 0;*/
	/*width: 50%;*/
/*}*/
/*最後のメニューの設定*/
nav#menubar ul li:last-child {
}
/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

#main p {
    overflow:scroll;
}


/*リスト
---------------------------------------------------------------------------*/

#main section.list figure img {
    margin: 5px;
    width:35%;
    height:auto;
}

/*ボックス内の段落タグ設定*/
#main section.list p {
    font-size: 16px;
    line-height: 25px;
    margin: 20px 0px 0px 38%;	/*左の写真とのバランスをとって設定*/
}

/*ボックス内の段落タグ設定*/
#main section.list div {
    font-size: 16px;
    line-height: 25px;
    margin: 20px 0px 0px 38%;	/*左の写真とのバランスをとって設定*/
}

div.list_foot,div.list_blog{
    margin: 5px 0px 80px 0px;
}
.btn_good {
    width:120px;
}

.btn_report {
    width:60px;
}

#but_prev_disp,#but_next_disp{
    width: 20%;
}

/*コンタクトボタン
---------------------------------------------------------------------------*/
#but_contact{
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 240px;
    height:60px;
}



/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
    margin: 5px 0px;
}
/*テーブル内の右側*/
.ta1 td{
    width: auto;
    padding: 5px 5px;
    font-size: 12px;
    line-height: 18px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
    width: 180px;
    padding: 5px;
    font-size: 12px;
}
.ta1 th .icon{
    max-width: 20px;
}

.ta1 .ta_text1{
    font-size: 13px;
    margin-top: 5px;
    text-align: right;
}

.ta1 th.tamidashi{
    font-size: 14px;
    padding: 10px 10px;
}

.ta1 th.tamidashi_s{
    font-size: 13px;
    padding: 10px 10px;
}


.ta_score{
    margin-top: 0px !important;
    margin-bottom: 5px !important;
}


/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}

span.menuName{
    padding: 2px;
    margin-bottom: 20px;
    font-weight: normal;	/*文字を太字にする設定*/
    font-size: 16px;
    height: 24px;

}
div.status{
    margin: 20px;
    font-size: 17px;
}

/* タブレット　非表示
---------------------------------------------------------------------------*/
.none {
    display: none;
}



}



/*ここからスマートフォン用（480px以下）環境の設定
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

menu h6{
    display: block;
    font-size: 13px;
    border-bottom: solid 3px black;
    margin: 10px;
    padding: 5px 5px 10px 10px;
}


/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 3px;
	margin-left: 3px;
    padding-top: 50px;
    overflow-x: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main {
    margin:2px;
    padding-bottom: 20px;
    overflow: auto;
}


#main p.detail_exp{
    font-size: 12px;
    line-height:  22px;
}

#main p.exp {
    font-size: 10px;
}

#main h5{
    padding: 5px 0px;
    text-align: center;
}

#main, #sub {
    float: none;
    width: auto;
}
#main p {
    padding: 0px;	/*左から、上、左右、下への余白*/
    /*font-size: 12px;*/
    font-size: 11px;
    line-height: 15px;
    overflow:scroll;
}

#main p.main_exp{
    font-size: 12px;
    line-height: 22px;
    color: #434343;
    padding: 1em 15px 2em;	/*左から、上、左右、下への余白*/

}

#main strong{
    font-size: 15px;
    line-height: 22px;
    padding-bottom: 2px;

}

div.tag{
    overflow: scroll;
}


/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*header {*/
	/*text-align: center;*/
	/*height: auto;*/
	/*margin-bottom: 15px;*/
/*}*/
/*h1ロゴの設定*/
/*header h1 {*/
	/*position: static;*/
	/*padding: 10px 0px;	*//*ロゴの上下にあける余白が10px*/
/*}*/
/*header h1 img {*/
	/*width: 100%;	*//*画面に対してロゴ画像を100％の幅に*/
	/*height: auto;*/
/*}*/
/*電話番号ボックスの設定*/
/*header address {*/
	/*position: static;*/
	/*width: 100%;	*//*ボックス幅*/
	/*box-sizing: border-box;*/
	/*-moz-box-sizing: border-box;*/
	/*-webkit-box-sizing: border-box;*/
/*}*/

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: none;
	width: auto;
}
nav#menubar ul li a {
	margin: 0;
}
/*最後のメニューの設定*/
nav#menubar ul li:last-child {
	margin-bottom: 20px;
}

/*コンタクトボタン
---------------------------------------------------------------------------*/
#but_contact{
    position: fixed;
    top: 0px;
    right: 0px;
    width: 120px;
    height:42px;
    padding: 13px 0px;
    margin-right: 0px;
    z-index: 2000;
}

#but_contact div{
    font-size: 12px;
    margin-right: 0px;
    margin-left: 0px;
    text-align: center;
}





/*メニューボタン
---------------------------------------------------------------------------*/
input.btn_toggle{
    width: 100%;
    background: rgba(134, 168, 209, 0.52);
    border-radius: 1px;
}

input.exp{
    background: #cccccc;
}
input.exp:hover {
    background: #9c9c9c;
}

.tagWhite,
.tagBlue,
.tagRed
{
    color: #7e7e7e;
    padding: 5px 5px;
    font-size: 12px;
    border: 1px solid #7e7e7e;
    border-radius: 10px;
    margin-left: 0px;
    margin-bottom: 0px;
    display: inline-block;
}

.tagWhite {
    background-color: white;
}

.tagBlue {
    background-color: rgba(135, 193, 230, 0.5);
}

.tagRed {
    background-color: rgba(252, 152, 144, 0.5);
}




/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
    margin-top: 70px;
}




span.menuName{
    padding: 4px 1px;
    margin-bottom: 20px;
    font-weight: normal;	/*文字を太字にする設定*/
    font-size: 10px;
    height: 24px;

}

#main article p.exp{
    margin-top: 10px;
    padding: 10px;
    font-size: 13px;
    line-height: 20px;
}

/*mainコンテンツのh4タグの設定*/
#main h4 {
    padding: 2px 0px 2px 5px;	/*上、右、下、左側への余白*/
    font-size: 14px;
    line-height: 21px;
    margin-top: 0px;
}

/*mainコンテンツのh6タグの設定*/
#main h6 {
    font-size: 18px;
}
/*リスト
---------------------------------------------------------------------------*/
/*ボックス内の写真設定*/
#main section.list figure img {
    /*min-width: 100px;*/
    width: 30%;
    height: auto;
    margin: 5px;
}

/*ボックス内の段落タグ設定*/
#main section.list p {
    font-size: 13px;
    line-height: 20px;
    margin: 10px 0px 20px 35%;	/*左の写真とのバランスをとって設定*/
}

/*ボックス内の段落タグ設定*/
#main section.list div {
    font-size: 13px;
    line-height: 17px;
    margin: 10px 0px 10px 35%;	/*左の写真とのバランスをとって設定*/
}

#main div.detail{
    clear: both;
    display: block;
    margin-left: 0%;

}
div.blog{
    font-size: 12px;
    margin: 10px 5px;
}

/*ブログ
---------------------------------------------------------------------------*/
div.list_blog{
    font-size: 10px;
    margin: 5px 1px 130px 1px;
}

div.list_foot{
    font-size: 10px;
    margin: 5px 1px 30px 1px;
}

div.graph_foot{
    font-size: 10px;
    margin: 5px 1px 30px 40px;
}

#but_prev,#but_next,#but_score_prev,#but_score_next{
    width: 70px;
}

#but_prev_disp{
    height: 50px;
    width: 48%;
    font-size: 23px;
    float: right;
    margin-left: 0;
}
#but_next_disp{
    height: 50px;
    width: 48%;
    font-size: 23px;
    float: left;
    margin-left: 0;
}
.btn_good {
    width:110px;
    height:50px;
    margin: 10px;
}

.btn_report {
    width:80px;
    height:50px;
    margin: 10px;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
    margin: 5px 0px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 7px;
    font-size: 13px;
    line-height: 16px;
}

.ta1 td .blog{
    padding: 2px;
    font-size: 12px;
    line-height: 20px;
}

/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 30%;
	padding: 10px;
    font-size: 13px;
}
.ta1 th .icon{
    max-width: 15px;
}

/*テーブル内の左側の見出し部分*/
.ta1 th.narrow{
    width: 15%;
}
/*テーブル内の左側の見出し部分*/
.ta1 th.tamidashi{
    font-size: 12px;
}

.ta1 th.tamidashi_s{
    font-size: 10px;
    padding: 10px 3px;
}
.ta1 .ta_text1{
    font-size: 10px;
    text-align: right;
}


.ta_score{
    margin-top: 0px !important;
    margin-bottom: 5px !important;
}


textarea.info{
    padding: 3px;
}



/*info.htmlのページ内メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#main ul.pagemenu {
	padding: 10px 0px;	/*上下、左右の余白*/
}
/*メニュー１個ごとの設定*/
#main ul.pagemenu li {
	display: block;
}


textarea.info{
    padding: 2px;
}


/*その他
---------------------------------------------------------------------------*/
img.fr {
	width: 100%;
	height: auto;
}
img.fl {
	width: 100%;
	height: auto;
}
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}

a.button1{
    width : 80px;
    height:40px;
    padding: 5px 5px;
}




div.status{
    margin: 5px;
    font-size: 14px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
    padding-bottom: 80px;
}


/* モバイル　非表示
---------------------------------------------------------------------------*/
.none {
    display: none;
}

}
