@import "bourbon";

@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700);
@import url(https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css);

$shadow-color: #23203b;
$input-color: lighten(#AB9E95, 10%);
$input-border-color: #5E5165;
$button-background-color: #27AE60;

//color1 #005bac
//color2 #428bca  #71a3ce
//color3 #ff9100



//table_color #eaf6fc #fcf9ca #71a3ce
//#9fc7b2


#eaf6fc
#c95560

#f9c27a

html {
  //background: url(https://dl.dropboxusercontent.com/u/159328383/background.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#html_back{

	//background-color:#0081c5;
}

ul{
	padding-inline-start:0;
}
body {
  //background: transparent linear-gradient(#eaf6fc, white);
  background: transparent;
	margin-right: auto;
	margin-left : auto;
}

hr {
	matgin-top: 5px;
}

body, input, button {
  font-family: 'Source Sans Pro', sans-serif;
}

.navbar-inner {
	max-width:1024px;
	margin-right: auto;
	margin-left : auto;
}

.content{
//	margin: 14px 0 10px 0;
//padding: 0 10px 10px 50px;
//text-align: left;
  max-width:1024px;
//  padding-left:5px;
}

.ch-container{
	max-width:1024px;
	margin-right: auto;
	margin-left : auto;
}

.row{
	 margin-right: 0px;
    margin-left: 0px;
}

@mixin normalize-input {
  display: block;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  box-shadow: none;
  background: none;
  border-radius: 0px;
}

.login {
  padding: 15px;
 // width: 400px;
  min-height: 400px;
  margin: 2% auto 0 auto;

  .heading {
    text-align: center;
    margin-top: 1%;

    h2 {
      font-size: 3em;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.7);
      display: inline-block;
      padding-bottom: 5px;
      text-shadow: 1px 1px 3px $shadow-color;
    }
  }

  form {
    .input-group {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      border-top: 1px solid rgba(255, 255, 255, 0.1);

      &:last-of-type {
        border-top: none;
      }

      span {
        background: transparent;
        min-width: 53px;
        border: none;

        i {
          font-size: 1.5em;
          color: rgba(255, 255, 255, 0.2);
        }
      }
    }

    input.form-control {
      @include normalize-input;

      padding: 10px;
      font-size: 1.6em;
      width: 100%;
      background: transparent;
      color: $input-color;

      &:focus {
        border: none;
      }
    }

    button {
      margin-top: 20px;
      background: $button-background-color;
      border: none;
      font-size: 1.6em;
      font-weight: 300;
      padding: 5px 0;
      width: 100%;
      border-radius: 3px;
      color: lighten($button-background-color, 40%);
      border-bottom: 4px solid darken($button-background-color, 10%);

      &:hover {
        background: tint($button-background-color, 4%);
        -webkit-animation: hop 1s;
        animation: hop 1s;
      }
    }
  }
}

.float {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.float:hover, .float:focus, .float:active {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

/* Large Devices, Wide Screens */

@media only screen and (max-width : 1500px) {
}

@media only screen and (max-width : 1200px) {
  .login {
  //  width: 600px;
  }
}

@media only screen and (max-width : 1100px) {
  .login {
    margin-top: 2%;
   // width: 600px;
    font-size: 1.7em;
  }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
  .login {
    margin-top: 1%;
   // width: 550px;
    font-size: 1.7em;
    min-height: 0;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
  .login {
    margin-top: 0;
   // width: 500px;
    font-size: 1.3em;
    min-height: 0;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
  .login {

    h2 {
      margin-top: 0;
    }

    margin-top: 0;
    //width: 400px;
    font-size: 1em;
    min-height: 0;
  }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
  .login {
    margin-top: 0;
    width: 200px;
    font-size: 0.7em;
    min-height: 0;
  }
}

.submit_div{

    margin-top: 20px;
}


input[type="submit"]{
  width:100%;
  background:#f3583f;

    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;
  padding:4%;
  font-family:'Open Sans',sans-serif;
  font-size:100%;
  color:#fff;
  cursor:pointer;
  transition:background .3s;
  -webkit-transition:background .3s;
}


input[type="submit"]:hover{
  background:#e87663;
}

// background:#53B9A8;


/* header ************************************************/
.header {
	color: gray;
	font-size: 16px;
	text-align: center;
	height: 75px;
	position: relative;
	overflow: hidden;
}

.header-top {
	float: right;
	margin:0 5px;
}
.header-top-char {
	float: right;
	margin:0 5px;
	font-size:10px;
}

@media only screen and (max-width : 450px) {
	 .header-top-char{
		font-size:8px;
	}
}

.header-top-user {
	float: right;
	margin:0 5px;
}
/*
.square_btn{
    display: inline-block;
    padding: 0.3em 0.8em;
    text-decoration: none;
    background: #668ad8;
    color: #FFF;
    border-bottom: solid 4px #627295;
    border-radius: 3px;
}
.square_btn:active {
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
    border-bottom: none;
}
*/

.square_btn {
    position: relative;
    display: inline-block;
    padding: 0.2em 0.5em;
    text-decoration: none;
    color: #FFF;
    background: #0068b7;/*色*/
    border-radius: 4px;/*角の丸み*/
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    font-weight: bold;
    border: solid 2px #004c87;/*線色*/
}

.square_btn:active {/*押したとき*/
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}
#button_char a:hover {
color:white;
}
#button_char a:focus {
color:white;
}

.square_btn_regist {
    position: relative;
    display: inline-block;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #FFF;
    background: #f3583f;/*色*/
    border-radius: 4px;/*角の丸み*/
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    font-weight: bold;
    border: solid 2px #cc4630;/*線色*/
}

.square_btn_regist:active {/*押したとき*/
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}

.square_btn_white {
    position: relative;
    display: inline-block;
    padding: 0.2em 0.5em;
    text-decoration: none;
    color: #0068b7;
    background: white;/*色*/
    border-radius: 4px;/*角の丸み*/
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    font-weight: bold;
    border: solid 2px #004c87;/*線色*/
}

.square_btn_white:active {/*押したとき*/
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}

.header-top-right {
	padding-right: 0px;
	float: right;
	width: 350px;
}
.header-top-left {
	margin-left: 20px;
	padding-left: 10px;
	padding-right: 20px;
	float: left;

	height: 50px;

	background-image: url('/img/logo.png');
	background-repeat:no-repeat;
	background-size:55%;

}

.headerlogo {
	width: 100%;
	text-align: center;
}



ul#tab {
	zoom: 1;
	border-bottom: 3px solid #005bac;
	list-style: none;
	margin: 0 auto;
	padding: 0;

}
ul#tab:after { content:"."; display: block; height:0px; clear:both; line-height:0; visibility:hidden; }
ul#tab li {
	background: #eaf6fc;
	float: left;
	text-align: center;
}
ul#tab li:last-child {
//	background: none;
}
ul#tab li a {
	display: block;
	width: 138px;
	padding: 8px 0;
	text-decoration: none;
	color: #222;
    border: 1px solid #005bac;
	color: black;
}
ul#tab li a:hover {
	background: #428bca;
	color: #fff;
}
ul#tab li.active,
ul#tab li.active a,
ul#tab li.active a:hover {
	background: #c81528;
	color: #fff;
}

ul#tab li.selected {
	background: #005bac;
	color: #fff;
}

ul#tab li.selected a{
	color: #fff;
}


table {
    *border-collapse: collapse; /* IE7 and lower */
    border-spacing: 0;
}
th:first-child {
    -moz-border-radius: 6px 0 0 6px;
    -webkit-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px;
}

th:last-child {
    -moz-border-radius: 0 6px 0 0;
    -webkit-border-radius: 0 6px 0 0;
    border-radius: 0 6px 0 0;
}
.bordered
{
    padding: 5px;
    margin: 15px;
     border-collapse: collapse;
     border: 1px solid #005bac;
     background-color: #eaf6fc;
}
.bordered th
{
     padding: 5px;
     border-bottom: 3px double #005bac;
     background-color: #71a3ce;
     text-align: left;
}
.bordered td
{
     padding: 5px;
     margin:5px;
     text-align: left;
}
.bordered tr
{
     border-bottom: 1px dotted #005bac;
}

.table_button{
     border: none;
}
.table_button tr{
     border: none;
}


.bordered tr:hover
{
    background: #fbf8e9;
    -o-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.highlight
{
  background: #fbf8e9;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.zebra tbody tr:nth-child(even) {
    background: #f5f5f5;
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
    -moz-box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
    box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}

.alternate {
    background: #f5f5f5;
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
    -moz-box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
    box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}

.card_select_div{
	margin: 20px 0px;
	display: -webkit-flex;
	display: flex;
	//-webkit-justify-content: space-between;
	//justify-content: space-between;
	text-align:left;
}
.button_middle{
    padding: 15px;
    margin-left: 100px;
     border-collapse: collapse;
     border: 1px solid #005bac;
}

ul.flexbox {
    display:flex;
    width:700px;
}
ul.flexbox li {
    width:400px;
    list-style-type:none;
    border-left:1px solid white;
    text-align:center;
}

ul.flexbox li.texts {
    width:250px;
    list-style-type:none;
    border-left:1px solid white;
    text-align:left;
}

ul.flexbox li.texts {
    width:250px;
    list-style-type:none;
    border-left:1px solid white;
    text-align:left;
}

.error_div{
        background-color:#FFEFEF;
        margin:10px 40px 10px 10px;
        padding:10px 40px 10px 40px;
        color:#C25338;
        border:1px solid #D4440D;
        line-height:1.5;
        clear:both;
        background-repeat:no-repeat;
        background-position:5px 5px;
        min-height:58px;
 }
.error_div span{
	background: url('/img/errors.png');
        //filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/img/errors.png', sizingMethod='scale');
        width:48px; height:48px;
        position:relative;
        top:-5px; left:-30px;
        display:block;
        text-indent:-9999px;
        float:left;
 }


 .search_container{
  box-sizing: border-box;
  position: relative;
  border: 1px solid #999;
 display: flex;
  padding: 3px 10px;
  border-radius: 20px;
  height: 2.3em;
	  width: 80%;
  overflow: hidden;
}

 .search_container div{

  width:100%;
}
.search_container input[type="text"]{
  border: none;
  height: 2.0em;
  width:100%;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"]{
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 1.3em;
  border: none;
  background: none;
  color: #3879D9;
  width: 2.5em;
  height: 2.5em;
  right: 0;
  outline : none;
}
.child {
 width: 100px;
}

@media only screen and (max-width : 750px) {
	 .search_container{
	  width: 90%;
  		padding: 3px 10px;
	}
}

    dl.search{
        position:relative;
        background-color:#fff;
        border:1px solid #aaa;
        -webkit-border-radius:6px;
        -moz-border-radius:6px;
        -o-border-radius:6px;
        -ms-border-radius:6px;
        border-radius:6px;
        width:90%;
        margin:0 auto;
    }
    dl.search dt{
        margin-right:40px;
        padding:8px 0 8px 8px;
    }
    dl.search dt input{
        width:100%;
        height:24px;
        line-height:24px;
        background:none;
        border:none;
    }
    dl.search dd{
        position:absolute;
        top:0;
        right:0;
    }
    dl.search dd button{
  font-family: FontAwesome;
  font-size: 1.3em;
        display:block;
        padding:10px;
        background:none;
        border:none;
    }
    dl.search dd button span{
        display:block;
        width:20px;
        height:20px;
        background:url('/images/search.png') no-repeat scroll 0 0;
    }


.char_row{
	padding-left: 10px;
}

.slide_image{
max-width:720px
   height: auto;
   margin: auto;
}
.slide_row{
	width:100%;
        height: auto;
	//padding-left: 10px;
}
.slide_space {
    width: auto;
    opacity: 0;
}

.slick-initialized{
    opacity: 1
}

img {
    max-width: 100%;
    height: auto;
}

.slick-prev:before,
.slick-next:before {
  color: #000 !important;
}

/*一覧2列レスポンシブ*/
*, *:before, *:after {
	box-sizing: border-box;
}
.col_2{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_2 > div{
	width: 48%;
	padding: 10px;
}
@media screen and (max-width: 750px) {
	.col_2 > div{
		width: 100%;
	}
}
/*一覧2列レスポンシブ*/

/*一覧1列レスポンシブここまで*/
*, *:before, *:after {
	box-sizing: border-box;
}
.col_1{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_1 > div{
	width: 100%;
	padding: 10px;
}
/*一覧1列レスポンシブここまで*/

.rep{
	display: table-cell;
    vertical-align: middle;
    padding: 0 1em;
    width: calc(100% - 100px);
    //border-left: #e5e5e5 solid 2px;
}
.rep a{
    color: #333;
    font-weight: bold;
}

.rlmg {
    display: table-cell;
    width: 100px;
    height: 100px;
    vertical-align: middle;
}

.rea {
    background: white;
    display: table;
    width: 100%;
    border: solid 2px #e5e5e5;
    color: #333;
    font-weight: bold;
}

.list_img_icon{
		margin: 0 auto;
        max-width: 100%;
        height: auto;
}


.tag_list{
    //background-color: #444;
    width:100%;
    padding: 3px;
	text-align:center;

    margin-top: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
	//margin-left:-45px;
}

.tag_list ul {
	margin:5px;
	line-height:2em;
}
.tag_list ul li {
	display:inline;
	list-style-type:none;
	//margin-right:6px;
	padding-left:5px;
	//border-left:1px solid #999;
	white-space: nowrap;
}

.tag_list ul li.first {
	border-left:0;
	padding-left:0;
}

/*チャットデザイン*/

.chat_container{
    /* 高さや幅など、好きな様に設定
    bms_messages_containerの方で、縦横いっぱいに広がってくれるので、
    ここで充てた高さと横幅がそのままスタイルになる仕組み */

    height: auto;/*ここはご自由に*/
    //width: 50%;/*ここはご自由に*/
}
/* チャットの外側部分① */
#bms_messages_container{
    height: 100%;/*your_containerに対して100%になる */
    width: 100%;/*your_containerに対して100%になる */
    background-color: #eee;
}

/* ヘッダー部分② */
#bms_chat_header {
    padding: 6px;/*隙間調整*/
    font-size: 16px;
    height: 34px;
    background: #ddd;
    border: 1px solid #ccc;
}
    /* ステータスマークとユーザー名 */
    #bms_chat_user_status {
        float: left;/* bms_chat_headerに対して左寄せ */
    }
    /* ステータスマーク */
    #bms_status_icon {
        float: left;/* bms_chat_user_statusに対して左寄せ */
        line-height: 2em;/*高さ調整*/
    }
    /* ユーザー名 */
    #bms_chat_user_name {
        float: left;/* bms_chat_user_statusに対して左寄せ */
        line-height: 2em;/*高さ調整*/
        padding-left: 8px;
    }

/* タイムライン部分③ */
#bms_messages {
    overflow: auto;/* スクロールを効かせつつ、メッセージがタイムラインの外に出ないようにする */
    height:100%;/*テキストエリアが下に張り付く様にする*/
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    background-color: #eee;
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.2) inset;/*ヘッダーの下に影を入れる*/
}
    /* メッセージ全般のスタイル */
    .bms_message {
        margin: 0px;
        padding: 0 14px;/*吹き出しがタイムラインの側面にひっつかない様に隙間を開ける*/
        font-size: 16px;
        word-wrap: break-word;/* 吹き出し内で自動で改行 */
        white-space: normal;/*指定widthに合わせて、文字を自動的に改行*/
    }
    /* メッセージ１（左側） */
    .bms_left {
        float: left;/*吹き出しをbms_messagesに対して左寄せ*/
        line-height: 1.3em;
    }
    /* メッセージ２（右側） */
    .bms_right {
        float: right;/*吹き出しをbms_messagesに対して右寄せ*/
        line-height: 1.3em;
    }
    /* 回り込みを解除 */
    .bms_clear {
        clear: both; /* 左メッセージと右メッセージの回り込み(float)の効果の干渉を防ぐために必要（これが無いと、自分より下のメッセージにfloatが影響する） */

    }

/* テキストエリア、送信ボタン④ */
#bms_send {
    background-color:#eee;/*タイムラインの色と同じにする*/
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    height: 48px;
    padding: 4px;
}
    #bms_send_message{
        width: calc(100% - 75px);/*常に送信ボタンの横幅を引いたサイズに動的に計算*/
        line-height: 16px;
        height: 48px;
        padding: 14px 6px 0px 6px;/*文字がテキストエリアの中心になる様に隙間調整*/
        border: 1px solid #ccc;
        border-radius: 4px;/*角丸*/
        text-align: left;/*文字を左寄せ*/
        box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.2) inset;/*内側に影を入れてテキストエリアらしくした*/
        box-sizing: border-box;/*paddingとborderの要素の高さと幅の影響をなくす（要素に高さと幅を含める）*/

    }
    #bms_send_btn {
        width: 72px;
        height: 48px;
        font-size: 16px;
        line-height: 3em;
        float: right;/*bms_sendに対して右寄せ*/
        color: #fff;
        font-weight: bold;
        background: #bcbcbc;
        text-align: center;/*文字をボタン中央に表示*/
        border: 1px solid #bbb;
        border-radius: 4px;/*角丸*/
        box-sizing: border-box;/*paddingとborderの要素の高さと幅の影響をなくす（要素に高さと幅を含める）*/
    }
    #bms_send_btn:hover {
        background: #13178E; /*マウスポインタを当てた時にアクティブな色になる*/
        cursor: pointer;/*マウスポインタを当てた時に、カーソルが指の形になる*/
    }


/*チャットデザインここまで*/



@media ( min-width :641px) {
	.two-box {
		padding-top: 40px;
		padding-bottom: 40px;
		padding-right: 10%;
		padding-left: 10%;
		margin: 0 auto;
	}
	.two-box-left {
		float: left;
		width: 45%;
		padding-left: 20px;
		padding-right: 20px;
	}
	.two-box-right {
		float: left;
		width: 45%;
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media ( min-width : 674px) {
	.box-673 {
		background: #ffffff;
		border: 1px solid #ffffff;
		border-radius: 4px;
		padding: 0;
		width: 673px;
		margin: 0 auto;
	}
}

@media ( max-width : 673px) {
	.box-673 {
		background: #ffffff;
		border: 1px solid #ffffff;
		border-radius: 4px;
		padding: 0;
		width: 95%;
		margin: 0 auto;
	}
}

@media ( max-width : 640px) {
	.two-box {

	}
	.two-box-left {
		padding: 10px;
	}
	.two-box-right {
		padding: 10px;
	}
	.box-673 {
		background: #ffffff;
		border: 1px solid #ffffff;
		border-radius: 4px;
		padding: 0;
		width: 95%;
		margin: 0 auto;
	}
}


.inputtextwidth {
	width: 100%;
}

.u-full-width {
	width: 35%;
}

@media (max-width : 880px) {
	.u-full-width {
		width: 30%;
	}
}
@media (max-width : 735px) {
	.u-full-width {
		width: 28%;
	}
}
@media (max-width : 690px) {
	.u-full-width {
		width: 25%;
	}
}

@media (max-width : 640px) {
	.u-full-width {
		width: 100%;
	}
}

.title_menu{
	border-left: 4px solid;
	border-color: #1bb4d3;
    padding: .4em 0 .4em .8em;
    margin-top: 1.8em;
    margin-bottom: 0.2em;
}


label.sex {
	display: inline-block;
	width: 40px;
}

.errstring {
	color: crimson;
	font-size: 14pt;
	font-weight: 600;
	text-align: left;
}
#menu_navi{
		background: #00a69c;
}
#icon-bar{
		background: white;
}

#navbar-brand{
	background-image: url("/img/logo.png");
	background-repeat: no-repeat;
	width:190px;
	margin-left:5px;
background-size:100% auto;
}


@media screen and (max-width: 750px) {
	#navbar-brand{
		background-image: url("/img/logo.png");
		background-repeat: no-repeat;
		width:110px;
		margin-left:5px;
    margin-bottom: -10px;
		margin-top:10px;
		background-size:100% auto;
	}
}



#footer_list ul{
   text-align: center;
}

#footer_list li {
	padding:10px;
  display: -moz-inline-box;
  display: inline-block;
  /display: inline;
  /zoom: 1;
}
#footer_list li a{
	color:white;
}

#footer_bg{

	background:#0081c5;
	width:100%;
	color:white;
	//position: fixed;
    bottom: 0;
}
#copyright{
	text-align:right;
	color:white;
}

#footer{
	height:30px;
}

.profile table {
  width:90%;
}
.profile p {
/*  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 60px auto 40px;
  */
}
.profile table {
  margin: 20px auto;
}


.tbl-r01 th {
  background: #9cd8d4;
  color:#007770;
  padding: 5px;
  width: 140px;
  font-size: 14px;
}
.tbl-r01 td {
  padding: 10px;
}



.tbl-r02 th {
  background: #0081c5;
  color:white;
  padding: 5px;
  width: 140px;
  border-radius: 3px;
}
.tbl-r02 td {
  padding: 10px;
}

@media screen and (max-width: 750px) {
  .last td:last-child {
    width: 100%;
  }
  .tbl-r02 {
    width: 90%;
  }
  .tbl-r02 th,
  .tbl-r02 td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
  .tbl-r01 {
    width: 90%;
  }
  .tbl-r01 th,
  .tbl-r01 td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}

.teacher_desc_row{
}
.teacher_desc{
  width: 90%;
  margin: 20px auto;
}

.hidden_box {
 margin: 10px 0;
 padding: 0;
 text-align: center;
}

.hidden_box label {
 cursor: pointer;
 font-weight: bold;
 margin: 0 auto;
 padding: 10px;
 min-width: 50%;
}

.hidden_box label:hover {
 background: #f5f5f5;
}


.hidden_box input {
 display: none;
}

.hidden_box .hidden_show {
 height: 0;
 overflow: hidden;
 opacity: 0;
 padding: 0;
 text-align: left;
 transition: 0.5s;
}

.hidden_box input:checked ~ .hidden_show {
 height: auto;
 opacity: 1;
 padding: 10px 0;
}

.square_btn_body {
    position: relative;
    display: inline-block;
    padding: 1em 2em;
    text-decoration: none;
    font-size: 120%;
    color: #FFF;
    background: #f3583f;/*色*/
    border-radius: 4px;/*角の丸み*/
    font-weight: bold;
}

.course_list_char{
	text-align:left;
}

.course_list_label{
	width:100%;
}

.payment_box{
	padding: 1.5em 1em;
    margin: 0.5em 1em;
    color: #00a69c;
    background: white;/*背景色*/
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);/*影*/
}

.payment_box_border1{
    border-top: solid 6px #00c6db;
}
.payment_box_border2{
    border-top: solid 6px #f3583f;
}
.payment_box p {
    margin: 0;
    padding: 0;
}

.payment_box p.item {
    margin-left: 3em;
    color: #000063;
}


.course_box{
	padding: 1.5em 1em;
    margin: 0.5em 1em;
    color: #00a69c;
    background: white;/*背景色*/
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);/*影*/
}

.course_box_border1{
    border-top: solid 6px #00c6db;
}
.course_box_border2{
    border-top: solid 6px #f3583f;
}
.course_box p {
    margin: 0;
    padding: 0;
}

.course_box p.item {
    margin-left: 3em;
    color: #000063;
}

.midashi{
	background: linear-gradient(transparent 70%, #00c6db 70%);
	font-weight:bold;
	font-size:150%;
	width:250px;
	margin-bottom:10px;
	margin-left:5px;
}
.midashi_kouza{
	background: linear-gradient(transparent 70%, #00c6db 70%);
	font-weight:bold;
	font-size:150%;
	width:250px;
	margin-left:5px;
}
.midashi_item{
	background: linear-gradient(transparent 70%, #00c6db 70%);
	font-weight:bold;
	font-size:150%;
	min-width:250px;
	margin-bottom:10px;
	margin-left:5px;
}

.midashi_detail{
	font-weight:bold;
	font-size:150%;
	margin-bottom:10px;
  color:#007770;
	margin-left:5px;
}

#chat_height{
	height:560px;
}

/*タグ用*/
.widget-title{
background:#007770;
//background:#0068b7;
text-align:center;
padding:5px 10px;
color:#fff;
border-radius:8px;
}
.widget-title_back_red{
background:red;
//background:#0068b7;
text-align:center;
padding:5px 10px;
color:#fff;
border-radius:8px;
}

/*タグクラウドタイトル前アイコン*/
.widget-title::before{
content: "\f02c";
font-family:"FontAwesome";
font-weight:normal;
padding-right:6px;
}
.list_tag_div{
	text-align:right;
}

.box26 {
    position: relative;
    margin: 1em 0;
    padding: 0.5em 1em;
    border: solid 3px #95ccff;
    border-radius: 8px;
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
}
.box26 p {
    margin: 0;
    padding: 0;
}

.item_all{
	background-color: #edf9f9;
	margin:5px;
}

.itemlist_line{
    //border-top: solid 2px gainsboro;
    //border-right: solid 2px gainsboro;
    //border-left: solid 2px gainsboro;
}

.itemlist_line_img{
	display: block;
	position: relative;
}

.itemlist_line_img span.item_top{
  position: absolute;
  color: white;/*文字は白に*/
  //font-weight: bold; /*太字に*/
  font-size: 1.2em;/*サイズ2倍*/
  font-family :Quicksand, sans-serif;/*Google Font*/
  top: 0px;
  left: 0px;
  padding-left:10px;
  vertical-align:top;
  padding-top:10px;
  padding-bottom:15px;
	width: 100%;
	background: linear-gradient(180deg,gray 0%, transparent 100%);
}
.itemlist_line_img span.item_bottom{
  position: absolute;
  color: white;/*文字は白に*/
  //font-weight: bold; /*太字に*/
  font-size: 1em;/*サイズ2倍*/
  font-family :Quicksand, sans-serif;/*Google Font*/
  bottom: 0px;
  left: 0px;
  padding-top:15px;
  padding-right:10px;
  line-height:0.5em;

    text-align: right;
	width: 100%;
	background: linear-gradient(0deg,gray 0%, transparent 100%);
}




.itemlist_line_img img{
	width: 100%;
	height: 100%;
}

/*
.itemlist_line_img:after {
content: "";
position: absolute; left: 0px; top: 0px;
display: block;

background: linear-gradient(180deg,gray 0%,transparent 20%, transparent 80%, gray 100%);
	width: 100%;
	height: 100%;
}
*/


.itemlist_line_last{
   // border: solid 2px gainsboro;

    display: table-cell;
    text-align: center;
    vertical-align: middle;
        flex-flow: wrap;

	width: 100%;
	  display: flex;
	  flex-direction: row;
	  justify-content: space-evenly;
}

.itemlist_line_last > *{
  width: 33%;
  background: #fff;
  text-align: center;
}

.itemlist_line_last > *{
  border: 2px solid #aaa;
}

.itemlist_line_last div{
	display: flex;
	align-items: center;
	justify-content: center;

}

.item_list_desc{

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    height:60px;
    overflow: hidden;
  }

.item_link a:hover{
	border:2px red;
}

/*一覧2列レスポンシブ縦*/
*, *:before, *:after {
	box-sizing: border-box;
}
.col_3{
      font-size: 3em;
	width: 100%;
}
.col_3 > div{
	width: 50%;
	padding: 10px;
}
@media screen and (max-width: 750px) {
	.col_3 > div{
		width: 100%;
	}
}
.list_tag_div_3{
	margin-top:2px;
	margin-left:2px;
	margin-right:2px;
	text-align:right;
	line-height:2em;
}

.list_tag_div_3 a{
	white-space:nowrap;
}


 .paginations {
    overflow: hidden;
}

.paginations ul {
    list-style: none;
    position: relative;
    left: 50%;
    float: left;
}

.paginations ul li {
    margin: 0 1px;
    position: relative;
    left: -50%;
    float: left;
}

.paginations ul li span,
.paginations ul li a {
    display: block;
    font-size: 16px;
    padding: 0.6em 1em;
    border-radius: 3px;
}

.paginations ul li a {
    background: #EEE;
    color: #000;
    text-decoration: none;
}

.paginations ul li a:hover {
    background: #333;
    color: #FFF;
}


.delete_list_btn{
	width:100%;
	color:#d2d8d8;
    background: #97b2b0;
	border:1px;
}

.item_teacher_name{
	float: right;
	margin:0 5px;
}


.quill_area{
	min-height:300px;
}

.trans_button{
	width: 100%;
    background: #f3583f;
    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;
    margin: 10px;
    padding: 10px;
    font-family: 'Open Sans',sans-serif;
    font-size: 100%;
    color: #fff;
    cursor: pointer;
    transition: background .3s;
    -webkit-transition: background .3s;
}

.buy_char{
    font-size: 130%;
    padding: 20px;
}

.back_btn
{
color:#1bb4d3;
font-size:120%;
  display: block;
  margin: 0 0 0 auto;
  border-radius: 0px;
  background-color: silver;
  padding: 10px 15px;
}

#card_back_button{
 color:white;
 font-size:120%;
  display: block;
    background: #1bb4d3;
    border-bottom: solid 2px #1bb4d3;
    border-radius: 4px;
  padding: 10px 10px;
  width:250px;
}


/*
.back_btn
{
  position: fixed;
  bottom: 30px;
  right: 30px;
color:white;
font-size:120%;
  border-radius: 6px;
  background-color: #f3583f;
  padding: 15px 20px;
}
*/

input.regist_button_disabled{
    background: #CCCCCC;
    border-bottom:#CCCCCC;
}
input.regist_button_disabled:hover{
    background: #CCCCCC;
    border-bottom:#CCCCCC;
}

