/* instamax css */
/* common */
body {
  font-family: "Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

#wrap {
  margin: 0 auto 80px;
  min-height: 700px;
}

p {
  margin: inherit;
}

a:hover {
  opacity: .75;
}

img {
  max-width: 100%;
}

li {
    list-style-type: none;
}



.change-color {
  background: #ff6666;
  color: #ffffff;
}

.hover-change-color:hover, .hover-change-color:focus {
  background: #ff6666!important;
  color: #ffffff!important;
  opacity: 1;
}


@media(min-width: 992px) {
  .sp-tb {
    display: none!important;
  }

  .pc-only {
    display: block!important;
    height: 50px;
  }

  .sp-only {
    display: none!important;
  }
}

@media(max-width: 991px) {
  .container-main {
    padding: 0;
  }

  #content {
    padding: 0px 15px;
  }

  #content .row {
    margin-right: auto;
    margin-left: auto;
  }

  .sp-tb {
    display: block!important;
  }

  .pc-only {
    display: none!important;
  }

  .sp-only {
    display: none;
  }
}

@media(max-width: 767px) {
  body {
    font-size: 3.73vw;
  }

  #content {
    padding: 0;
  }

  h4 {
    font-size: 130%;
    font-weight: bold;
  }

  .sp-only {
    display: block;
  }

  .btn {
    font-size: 100%;
  }
}

/* ヘッダー */
h1 {
  margin-top: 0;
  margin-bottom: 0;
}

.navbar > .container-fluid .navbar-brand {
  margin-left: 0;
  height: inherit;
  padding: 5px 15px;
}

.navbar {
  margin-bottom: 0;
  background: #ffffff;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid #ddd;
}

.navbar-nav > li > a {
  padding: 17px 15px;
}

.navbar-nav > li > a span {
  font-size: 20px;
  color: #aaa;
}

.navbar-nav > li > a:hover span {
  color: #ff6666;
  opacity: 1;
}

.navbar-nav > li.dropdown {
  margin-left: 15px;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background: #ff6666;
  color: #fff;
}

.navbar-nav > li.dropdown > a {
  padding: 15px 20px;
  color: #fff;
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-align-items: center;
  align-items: center;
}

.navbar-nav > li.dropdown > a:hover {
  opacity: .75!important;
}

.navbar-nav > li.dropdown > a span {
  color: #ffffff;
}

.navbar-nav > li.dropdown p {
  line-height: 2.2;
}

.navbar-nav > li.dropdown .img-circle {
  margin-right: 10px;
}

.navbar-nav > li.dropdown .caret {
  margin-left: 10px;
}

.navbar-nav > li.dropdown small {
  padding-right: 10px;
  border-right: 1px solid rgba(255,255,255,0.5);
  margin-right: 10px;
}

.dropdown-menu {
  border-color: #ddd;
  min-width: 200px;
  max-width: 300px;
  padding: 0;
}

.dropdown-menu > li > a {
  padding: 10px 15px;
}

.dropdown-menu > li > a span {
  font-size: 15px;
  margin-right: 10px;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  background: #f9f9f9;
}

.dropdown-menu > li.login-user {
    padding: 20px 15px;
    color: gray;
}

.dropdown-menu hr {
    margin: 0px 0 5px 0;
}

/* プロダクト切替ナビ */
.navbar-inner {
  box-shadow: rgba(102,102,102,0.1)1px 2px 3px;
  position: relative;
  z-index: 0;
  padding: 0 30px;
  background: #fff;
}
.nav-product {
  margin-bottom: 0px; 
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
.nav-product li a {
  color: #ddd;
  font-size: 114.29%;
  display: block;
  font-weight: bold;
  position: relative;
  padding: 19px 20px;
  transition: all 0.3s ease 0s;
}
.nav-product li a:hover, .nav-product li a:focus {
  text-decoration: none;
}
.nav-product li a.active {
  color: #2b76e6;
}
.nav-product li a::after {
  width: 0;
  bottom: 0;
  left: 50%;
  content: "";
  position: absolute;
  height: 2px;
  transition: all 0.3s ease 0s;
  background: transparent;
}
.nav-product li a:hover:after, .nav-product li a.active:after {
  width: 100%;
  left: 0;
  background: #2b76e6;
}
.navbar-inner .dropdown {
  display: none;
}

@media (max-width: 991px) {
  h1 {
    width: 25%;
    position: relative;
    z-index: 100;
  }

  .navbar {
    padding: 10px 0;
    border-radius: 0px;
    border-bottom: 1px solid #ddd;
  }

  .container-fluid > .navbar-header {
    float: none;
    margin: auto;
  }

  .inner-nav {
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
    justify-content:space-between;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
  }

  .navbar > .container-fluid .navbar-brand {
    float: none;
    display: block;
    padding: 0;
  }

  .navbar-sp {
    width: 25%;
    position: relative;
    z-index: 100;
  }

  .navbar-sp02 {
    z-index: 1000;
  }

  .navbar-sp02 .navbar-toggle {
    margin-right: 0;
    border-color: transparent;
    font-size: 180%;
    margin: 0;
    padding: 3px 10px;
    display: block;
  }

  .navbar-nav {
    float: none!important;
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    -webkit-flex-wrap: wrap; /* Safari */
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    margin: auto;
  }

  .navbar-nav > li {
    float: none;
  }

  .navbar-nav > li > a {
    padding: 10px 15px;
  }

  .navbar-nav > li.tb-only {
    display: none;
  }
}

@media(max-width: 767px) {
  header {
    height: calc(150 / 640 * 100vw);
    border-bottom: 1px solid #ddd;
    position: relative;
  }

  .navbar {
    padding: 0;
    border-bottom: none;
    background: transparent;
  }

  h1 {
    width: 12.5%;
    position: absolute;
    left: calc(15 / 640 * 100vw);
    top: calc(10 / 640 * 100vw);
  }

  #login_wrap h1 {
    width: calc(276 / 640 * 100vw);
    left: calc(23 / 640 * 100vw);
    top: calc(12 / 640 * 100vw);
  }

  .navbar-sp {
    width: 28%;
    position: absolute;
    right: calc(15 / 640 * 100vw);
    top: 0;
    height: calc(100 / 640 * 100vw);
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex!important;
    -webkit-justify-content:flex-end;/*--- safari（PC）用 ---*/
    justify-content:flex-end;
    -webkit-align-items: center;
    align-items: center;
  }

  .navbar-nav {
    margin-right: 0;
  }

  .navbar-nav > li > a {
    padding: 5px 10px;
  }


}


/* 通知関連 */
.navbar-nav li .glyphicon-bell {
  position: relative;
}

.icon-notify {
  position: absolute;
  background: #ff6666;
  width: 18px;
  height: 18px;
  color: #ffffff!important;
  font-size: 75%!important;
  right: -10px;
  bottom: -5px;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
}

.row-notify {
  margin-bottom: 20px;
}

.row-notify .alert {
  border-radius: 0;
  padding: 15px 30px;
}

.alert-emergency {
  /*background: #00bad1;*/
  background: #d9534f;
  border: none;
  color: #ffffff;
}

.alert-emergency .close {
  color: #ffffff;
  opacity: 1;
}

@media(max-width: 767px) {
  .row-notify .alert {
    padding: 15px;
  }
}


/* サイドバー */
#sidebar {
  word-break: break-all;
}

.panel {
  border-radius: 0px;
  box-shadow: none;
  margin-bottom: 30px;
}

.panel-default > .panel-heading {
  background: #fff;
  border-bottom: none;
  border-radius: 0;
  padding: 5px 15px 15px;
}

.panel-heading h4 {
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.5;
}

.panel-heading h4 i {
  vertical-align: middle;
  background: #ff6666;
  color: #ffffff;
  padding: 3px 5px;
  border-radius: 5px;
  font-weight: bold;
}

.panel-heading h4 span {
vertical-align: middle;
margin-left: 5px;
}

.instagram-id {
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
  padding-left: 30px;
  margin-bottom: 5px;
}

.panel-heading .status-licensed {
  color: #81cf5d;
  margin-left: 0px;
}

.panel-heading .status-trial {
  margin-left: 0px;
  margin-top: 5px;
  display: block;
  padding: 10px 10px 8px;
}

.panel-heading .status-stopped {
  color: #aaa;
  margin-left: 0px;
}

.panel-heading small {
  color: #aaa;
}

.panel-body {
  padding-top: 0;
  padding-bottom: 20px;
}

.panel-body .img-account {
  padding-top: 15px;
  margin-bottom: 20px;
}

.panel-body .img-account .img-circle {
  max-width: 150px;
  max-height: 150px;
  width: 100%;
  height: 100%;
}

.data-number {
  font-size: 128.58%;
  margin-bottom: 20px;
  padding: 0;
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
  justify-content:space-between;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
}

.data-number span {
  display: block;
  font-size: 77.78%;
  color: #aaaaaa;
}

.data-number > div {
  width: 33%;
}

.btn-status {
  padding-left: 15px;
  padding-right: 5px;
}

.btn-status strong {
  margin-left: -2px;
}

.btn-update {
  padding: 0 5px;
}

.btn-insta { 
  padding-left: 5px;
  padding-right: 15px;
}

.btn-insta i {
  font-size: 128.58%;
  font-weight: bold;
}

.btn-status a, .btn-update a, .btn-insta a {
  width: 100%;
  padding: 6px 3px;
}

.btn-insta a {
  padding: 7px 12px;
  line-height: 1;
}

/* 管理者情報 */
.info-manager {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

.info-manager p {
  margin-top: 0;
}

.info-manager > p {
  font-weight: bold;
  font-size: 114.29%;
  margin-bottom: 5px;
}

@media(min-width: 992px) and (max-width: 1199px) {
  .panel-default > .panel-heading {
    padding-bottom: 5px;
  }

  .data-number {
    padding: 0 15px;
    display: block;
  }

  .data-number > div {
    width: 100%;
  }
  
  .data-number > div:nth-child(2) {
    margin: 10px auto;
    padding: 0;
  }

  .btn-status, .btn-update, .btn-insta {
    padding: 0px 15px;
  }
  
  .btn-update {
    margin: 5px auto;
  }
}

@media(max-width: 991px) {
  #sidebar {
    padding: 0;
  }
  
  .panel-default {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 0px 15px;
  }

  .panel-default > .panel-heading {
    padding: 0px 15px 10px;
  }

  .panel-heading h4 {
    margin-top: 0;
    padding-bottom: 5px;
    font-size: 130%;
  }
  
  .panel-body .img-account {
    padding-top: 10px;
    margin: 0 auto;
    float: left;
    width: 180px;
  }

  .col-r-sm {
    padding-top: 10px;
    width: calc(100% - 180px - 3%);
    float: left;
    margin-left: 3%;
  }
}

@media(max-width: 767px) {
  .panel-default {
    padding: 0px;
  }
  
  .panel-body .img-account {
    width: 25%;
  }
  
  .panel-body .img-account .col-md-12 {
    padding: 0px;
  }
  
  .col-r-sm {
    width: 72%;
  }

  .col-r-sm .row {
    margin: auto;
  }
  
  .data-number {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    font-size: 100%;
    margin-bottom: 5%;
  }
  
  .data-number > div {
    width: 31%;
  }
  
  .data-number > div:nth-child(2) {
    padding: 0;
  }
  
  .data-number p strong {
    font-size: 125%;
  }

  .data-number span {
    font-size: 100%;
  }
  
  .btn-status a, .btn-update a, .btn-insta a {
    padding: 5px 3px;
    font-size: 100%;
  }
  
  .btn-insta a {
    padding: 6px 3px;
  }

  .btn-status, .btn-insta {
    padding: 0;
  }

  .info-manager .row {
    margin: 0 -15px;
  }
}


/* アカウントリスト */
.list-account {
  list-style: none;
  padding: 0;
}

.list-account li a {
  color: #333;
  width: 100%;
  line-height: 1;
  padding: 18px 20px 17px;
  border: 1px solid #ddd;
  border-top: none;
  position: relative;
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  font-size: 114.29%;
}

.list-account li:first-child a {
  border-top: 1px solid #ddd;
}

.list-account li:last-child a {
  color: #aaa;
  text-align: left;
  padding: 17px 20px;
  font-size: inherit;
}

.list-account li a.select {
  background: #ff6666;
  border-color: #ff6666;
  border-top-color: #ff6666;
  color: #ffffff;
}

.list-account li a:hover, .list-account li a:focus, .list-account li:last-child a:hover {
  opacity: 1;
  text-decoration: none;
  border-color: #ff6666;
  border-top-color: #ff6666;
}

.list-account li a:hover img {
  opacity: 1;
}

.list-account li a:hover:after, .list-account li a.select:after {
  position: absolute;
  content: "";
  border-left: 4px solid #fff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  width: 0;
  height: 0;
}

.list-account li img, .list-account li:last-child a span {
  margin-right: 10px;
}

.list-account p small {
  margin-top: 5px;
  display: block;
  font-size: 75%;
}

@media(min-width: 992px) and (max-width: 1199px) {
  .list-account li a {
    padding: 18px 10px 17px;
  }
}

@media(max-width: 991px) {
  .list-account li a {
    border-right: none;
    border-left: none;
  }

  .dropdown {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 50px;
    width: 100%;
    z-index: 1;
  }

  .dropdown .btn {
    width: 50%;
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    -webkit-justify-content:center;/*--- safari（PC）用 ---*/
    justify-content:center;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    border: none;
    margin: auto;
    padding: 10px 12px;
  }

  .dropdown .btn-default:hover, .dropdown .btn-default:focus, .dropdown .btn-default.focus, .dropdown .btn-default:active, .dropdown .btn-default.active, .open > .dropdown-toggle.btn-default .open > .dropdown-toggle.btn-default {
    background: #f9f9f9;
  }

  .dropdown .btn small {
    margin-left: 10px;
    padding-right: 10px;
    border-right: 1px solid #333;
  }

  .dropdown .btn p {
    margin: 0 10px;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    min-width: auto;
    border: none;
  }

  .dropdown-menu > li > a {
    /*padding: 10px;*/
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
  }
}

@media(max-width: 767px) {
  .dropdown {
    height: auto;
    top: 0;
  }

  .dropdown .btn {
    background: transparent;
    height: calc(100 / 640 * 100vw);
    padding: 6px 12px;
  }

  .dropdown .btn-default:hover, .dropdown .btn-default:focus, .dropdown .btn-default.focus, .dropdown .btn-default:active, .dropdown .btn-default.active, .open > .dropdown-toggle.btn-default .open > .dropdown-toggle.btn-default {
    background: transparent;
  }

  .open > .dropdown-toggle.btn-default {
    background: transparent;
  }

  .dropdown .btn p {
    font-weight: bold;
  }

  .dropdown .btn small {
    display: none;
  }
  
  .dropdown-menu {
    width: 100%;
    top: calc(100 / 640 * 100vw);
  }
}

/* 管理画面検索フォーム */
.row-search {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
  justify-content:space-between;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.row-search table {
  width: 100%;
}

.row-search .col-sm-10 {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
  justify-content:space-between;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}

.row-search p {
  font-size: 128.57%;
  width: 70px;
}

.row-client p {
  width: 180px;
}

.row-search .flx-r {
  width: calc(100% - 70px);
}

.row-client .flx-r {
  width: calc(100% - 180px);
}

.row-search input {
  height: 40px;
}

.row-search i {
  margin-right: 5px;
}

.search-result {
  width: 100%;
  margin-top: 10px;
  padding: 0 15px;
}

.search-result p {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  width: 100%;
}

.search-result span {
  margin-right: 10px;
}

@media(max-width: 767px) {
  .row-search p {
    width: 100%;
    margin-bottom: 5px;
  }

  .row-search .flx-r, .row-client .flx-r {
    width: 100%;
  }

  .row-search .col-sm-2 {
    margin-top: 5px;
  }
}


/* メイン画面共通 */
.ttl-content {
  border-radius: 5px 5px 0 0;
  margin: 0 auto;
  padding: 11px 10px 10px 15px;
}

.inner-box {
  border: 1px solid #ddd;
  border-top: none;
  padding: 20px 15px;
  display: block;
}

.toggle-content {
  position: absolute;
  top: 0px;
  right: 15px;
  padding: 12px 15px 11px;
}

.toggle-content .caret {
  border-top-color: #fff;
}

.toggle-content:hover {
  cursor: pointer;
}

.toggle-content.active .caret {
  transform: rotate(180deg);
}

.panel-setting {
  background: #f9f9f9;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
  position: relative;
}

 
.panel-setting .toggle-content {
  top: 8px;
}
  
.inner-panel .toggle-content {
  right: 0;
  top: 5px;
}
  
.panel-setting .toggle-content .caret {
  border-top-color: #ff6666;
}
  
.panel-setting .form-control {
  height: auto;
  padding: 9px 12px;
  border: 1px solid #ddd;
}

.inner-panel .form-control {
  width: 48%;
}
  
.panel-setting hr {
  margin: 0px auto 20px;
  border-top: 2px solid #ddd;
}
  
.panel-setting .panel-heading {
  padding: 20px 15px 15px;
  background: inherit;
  position: relative;
}
  
.panel-setting .panel-body {
  padding: 0px 15px 20px;
}
  
.panel-setting h6 {
  font-weight: normal;
  font-size: 114.29%;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  margin: 0px auto 20px;
}

.panel-setting .tooltip-inner {
  max-width: 100%;
}

.inner-panel .form-control {
    width: 48%;
}

@media(max-width: 991px) {
  
}

@media(max-width: 767px) {
  
}

  /* セレクトボタン */
.wrap-select {
  position: relative;
  display: inline-block;
  background: #fff;
  border-radius: 5px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  overflow: hidden;
  z-index: 0;
  width: 100%;
}

.wrap-select:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 10px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  border-top: 4px solid #ff6666;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  z-index: -1;
}

.wrap-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;;
  background: transparent;
  outline: none;
}

.select-period .wrap-select {
  width: calc(100% - 23px);
}

.select-period .wrap-select .form-control {
  width: 100%;
  padding: 6px 10px;
}

  /* IEの下三角非表示 */
.wrap-select select::-ms-expand {
  display: none;
}

  /* Firefoxの点線非表示 */
.wrap-select select::-moz-focus-inner {
  border: 0;
}

/* ヘルプ */
.toggle-help {
  margin-left: 5px;
}

.toggle-help:hover {
  cursor: pointer;
  opacity: .75;
}

.btn-help, .btn-help:hover, .btn-help:focus {
  color: inherit;
}

.box-help {
  display: none;
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 15px 10px;
  margin: 10px auto 10px;
  width: 100%;
}

.box-help p {
  margin: 0 auto;
  line-height: 1.6;
  margin-left: 2em;
  text-indent: -.7em;
  font-weight: normal;
}

.box-help p .glyphicon-question-sign {
  margin-right: 5px;
}

.box-help p .text-red {
  color: #ff6666;
}

.box-help .indent {
  margin-left: 8em;
}


/* 活動グラフ */
.form_graph{
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content:flex-end;/*--- safari（PC）用 ---*/
  justify-content:flex-end;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}

.form_graph > span {
    width: 70px;
    margin-right: 10px;
    margin-top: 15px;
}

.select-period {
  width: calc(100% - 149px);
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
  justify-content:space-between;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  margin: 15px auto 0;
}

.select-period > li {
  padding: 0;
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
  justify-content:space-between;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}

.select-period li .btn_radio {
  margin: auto;
  margin-right: 8px;
}

.select-period .form-control {
  width: calc(100% - 23px);
  padding: 6px 10px;
}

.select-period > li:first-child {
  width: 32%;
}

.select-period > li:last-child {
  width: 65%;
}

.select-period > li:last-child > span {
  margin: 0 10px;
}

.select-period li input.datetimepicker {
  width: calc((100% - 71px) / 2);
}

.form_graph .btn-info {
  width: 54px;
  margin-left: 15px;
  background: #ffb54c;
  border-color: #ffb54c;
  margin-top: 15px;
}

.chart .more-data {
  text-align: right;
}

.chart .more-data a {
  position: relative;
  padding-left: 30px;
  padding-right: 40px;
}

.chart .more-data a:after {
  position: absolute;
  content:"";
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  right: 25px;
  top: 0;
  bottom: 0;
  transform: rotate(-45deg);
}



 .chart-follow {
   position: relative;
   float: left;
 }

@media(min-width: 768px) and (max-width: 991px) {
  .guraph_set {
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    margin: auto;
    text-align: center;
    top: 45%;
    -webkit-transform: translateY(-0%);
    transform: translateY(-50%);
    color: #cc6699; 
 }
}

@media(min-width: 992px) and (max-width: 1199px) {
  .guraph_set {
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    text-align: center;
    top: 48%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    color: #cc6699;
  } 
}

@media(max-width: 767px) {
  .guraph_set {
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    color: #cc6699;
  } 
}

@media(min-width: 1199px) {
  .guraph_set {
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    text-align: center;
    top: 35%;
    -webkit-transform: translateY(110%);
    transform: translateY(110%);
    font-size: 20px;
    color: #cc6699;
  } 
}

.guraph_set p{
  color: #bfbfbf;
  display:inline; 
}

.report-text p{
  font-size: 20px;
  color: #696969;
}
.underline01 {
  display: inline-block;
  background: linear-gradient(transparent 50%, yellow 50%);
}
.underline02 {
  background: linear-gradient(transparent 50%, yellow 50%);
}

@media(max-width: 1199px) {
  .chart {
    margin-bottom: 30px;
  }
}

@media(max-width: 767px) {
  .chart {
    margin-bottom: 5%;
  }

  .form_graph {
    display: block;
    padding: 0;
  }

  .form_graph > span {
    display: none;
  }

  .select-period {
    width: 100%;
    display: block;
    margin-top: 5%;
  }

  .select-period > li {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }

  .select-period > li:first-child, .select-period > li:last-child {
    width: 100%;
  }

  .select-period > li:last-child {
    margin-top: 10px;
    padding-left: 0;
  }

  .select-period > li:last-child > span {
    margin: 0 5px;
  }

  .select-period li .btn_radio {
    margin-left: 0;
    margin-right: 5px;
  }

  .select-period .form-control {
    width: calc(100% - 18px);
  }

  .select-period li input.datetimepicker {
    width: 39%;
    margin-bottom: 5px;
  }

  .form_graph .btn-info {
    margin-left: auto;
    width: 100%;
    margin-top: 5px;
  }

  .height-graph {
    margin-top: 10px;
    height: 250px!important;
  }
  
  .chart .more-data a {
    width: 100%;
  }
}


/* エラーログ */
.box-log {
  min-height: 524px;
  max-height: 524px;
  overflow-y: scroll;
  padding: 0;
  padding-top: 10px;
}

.box-log ul {
  padding: 0;
  margin-bottom: 0;
}

.box-log ul li {
  border-bottom: 1px solid #ddd;
  padding: 10px 15px;
}

.box-log ul li:last-child {
  border-bottom: none;
}

.box-log ul li:nth-child(2n) {
  background: #f9f9f9;
}

@media(min-width: 992px) and (max-width: 1199px) {
  .box-log {
    max-height: 300px;
    min-height: auto;
  }
}

@media(min-width: 768px) and (max-width: 991px) {
  .box-log{
    max-height: 300px;
    min-height: auto;
  }
}

@media(max-width: 767px) {
  .box-log{
    max-height: 200px;
    min-height: auto;
    padding: 5px 0 0;
  }

  .box-log ul li {
    padding: 15px;
  }
}


/* タブ共通 */
.nav-tabs {
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
  border-bottom: none;
}

.nav-tabs > li:after {
  position: absolute;
  content: "";
  width: calc(100% + 4px);
  height: 2px;
  background: #ff6666;
  top: 100%;
  left: -2px;
  z-index: 1;
}

.nav-tabs > li {
  /*width: calc(100% / 3);*/
  width: 25%;
  font-size: 128.58%;
  position: relative;
  color: #ddd;
  margin-right: 0;
  border: 2px solid #ddd;
  border-bottom: 2px solid transparent;
  border-radius: 5px 5px 0px 0px;
  padding: 15px 15px 14px;
  transition: .4s;
  cursor: pointer;
  display: block;
}

.nav-tabs > li i {
  font-size: 22px;
  margin-right: 10px;
  vertical-align: middle;
}

.nav-tabs > li.active, .nav-tabs > li.active:hover, .nav-tabs > li.active:focus, .nav-tabs > li:hover, .nav-tabs > li.cli-tab > a.tab-link:hover {
  color: #fff;
  background: #ff6666;
  border-color: #ff6666;
  transition: .4s;
}

.tab-content {
  padding: 0 15px;
}

.tab-content label {
  margin-bottom: 0;
}

.ttl-setting {
  font-weight: bold;
  font-size: 114.29%;
  margin: 0;
}

.ttl-setting i {
  margin: 0 5px;
}

.count-hashtag {
  position: absolute;
  right: 60px;
  top: calc(50% - 5px);
}

.btn-add {
  width: 100%;
  background: #ffb54c;
  color: #ffffff;
  border: none;
  border-radius: 5px!important;
  line-height: 1;
  padding: 13px 10px;
}

.btn-add:hover {
  background: #ffb54c;
  color: #ffffff;
  opacity: .75;
}

.tab-content .no-click .panel-body div, .tab-content .no-click .panel-body ul, .tab-content .no-click .panel-body h6 {
  pointer-events: none;
  opacity: .7;
}

.tab-content .no-click .panel-body .box-help {
  opacity: 1;
}

@media(min-width: 768px) and (max-width: 991px) {
  .nav-tabs {
    padding: 0px 15px;
  }

  #content .row-add {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media(max-width: 767px) {
  .nav-tabs > li.tab-follow {
    border-left: none;
  }

  .nav-tabs > li.tab-unfollow {
    border-right: none;
  }

  .nav-tabs > li {
    /*font-size: 100%;*/
    font-size: 120%;
    width: 50%;
    padding: 15px 5px;
    text-align: center;
  }

  .nav-tabs > li i {
    font-size: 120%;
    margin-right: 5px;
  }

  .row-add .col-xs-10 {
    padding: 0;
    padding-right: 10px;
  }

  .row-add .col-xs-2 {
    padding: 0;
  }

  .row-add .input-group-btn {
    font-size: 100%;
  }
}

/* 代理店ホーム画面クライアントタブ追記 */
.nav-tabs > li.cli-tab{
  padding: 0px;
}

.nav-tabs > li.cli-tab > a.tab-link {
  display: block;
  padding: 15px 15px 14px;
  color:#d3d3d3;
  border: 0px;
  opacity: 1.0;
  background: transparent;
}
/* ここまで */

/* フォロー・いいねタブ */
.panel-user .panel-body {
  padding-bottom: 30px;
}

/* アンフォロータブ */
.tab-unfollow .panel-setting {
  margin-top: 10px;
}

@media(min-width: 768px) and (max-width: 991px) {
  .tab-unfollow .panel-setting {
    margin: 10px auto 0;
  }
}


/* スイッチ */
.tab-follow .setting-switch .col-lg-12, .tab-like .setting-switch .col-lg-12 {
  margin-top: 10px;
}

.box-switch {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
  justify-content:space-between;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  background: #f9f9f9;
  font-weight: bold;
  padding: 16px 15px;
  border-radius: 5px;
}

.box-switch > p {
  font-size: 114.29%;
  width: 45%;
}

.box-switch > p.text-long {
  width: 60%;
}

.onoffswitch {
  position: relative;
  width: 70px;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select: none;
}

.onoffswitch-checkbox {
  display: none;
}

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
  margin-bottom: auto;
}

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 28px;
  padding: 0;
  line-height: 28px;
  font-size: 14px;
  color: white;
  font-weight: bold;
  box-sizing: border-box;
}

.onoffswitch-inner:before {
  content: "ON";
  padding-left: 10px;
  background-color: #FFB54C;
  color: #FFFFFF;
}

.onoffswitch-inner:after {
  content: "OFF";
  padding-right: 10px;
  background-color: #ddd;
  color: #FFFFFF;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 5px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 38px;
  border-radius: 20px;
  transition: all 0.3s ease-in 0s; 
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px; 
}

.btn-target {
  position: relative;
  width: 50px;
  -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}

.radiobtn-target {
  display: none;
}

.target-label {
  display: block;
  overflow: hidden; 
  cursor: pointer;
  border: 2px solid #ddd;
  border-radius: 20px;
  text-align: center;
  font-weight: bold;
  color: #ddd;
  margin-bottom: auto;
  padding: 1px;
}

.target-label-off {
    display: block;
    overflow: hidden; 
    background: #eee;
    border: 2px solid #eee;
    border-radius: 20px;
    text-align: center;
    font-weight: bold;
    color: silver;
    margin-bottom: auto;
    padding: 1px;
  }

.radiobtn-target:checked + .target-label {
  background: #FFB54C;
  border-color: #FFB54C;
  color: #fff;
  transition: .3s;
}

.box-switch .box-inner {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
  justify-content:space-between;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
}

.box-inner div:not(:first-child) {
  margin-left: 10px;
}

@media(min-width: 992px) and (max-width: 1199px) {
  .setting-switch > div:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media(max-width: 991px) {
  .setting-switch > div:not(:last-child) {
    margin-bottom: 10px;
  }

  .setting-switch > div {
    padding: 0;
  }
}

@media(max-width: 767px) {
  .setting-switch > div {
    padding: 0;
  }

  .box-inner div:not(:first-child) {
    margin-left: 5px;
  }

  .box-switch > p {
    width: 50%;
  }

  .box-speed > p {
    width: 39%;
  }

  .box-days > p {
    width: 34%;
  }

  .box-switch > p.text-long {
    width: 65%;
  }

  .btn-target {
    width: 45px;
  }
}


/* 保存ボタン */
.btn-save {
  margin: 10px -15px 40px;
}

.btn-primary {
  padding: 12px;
  /*max-width: 100px;*/
  min-width: 100px;
  /*width: 100%;*/
  line-height: 1;
  border-radius: 5px;
}

.btn-primary, .btn-primary:hover {
  background-color: #49c9c9;
  border-color: #49c9c9;
}

.btn-primary:hover {
  opacity: .75;
}

@media(min-width: 768px) and (max-width: 991px) {
  .btn-save .col-md-4 {
    padding: 0;
  }
}

@media(max-width: 767px) {
  .btn-save .col-md-4 {
    padding: 0;
    width: 100%;
  }

  .btn-save .btn-primary {
    min-width: 100%;
  }
}


/* 検索ターゲット */
.caution {
  margin-bottom: 10px;
  color: #ff6666;
}

.tab-like .caution {
  margin-top: 20px;
}

.target-search {
  padding: 15px;
}

.target-search .row {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
  justify-content:space-between;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}

@media(max-width: 991px) {
  .target-search .row .col-xs-6 {
    padding: 0;
  }
}


/* タグ */
.list-tag {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  margin: 10px auto 0;
}

.list-user {
  margin-bottom: 30px;
}

.list-tag li {
  margin-right: 10px;
  margin-bottom: 10px;
}

.onofftag {
  position: relative;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select: none;
  display: inline-block;
}

.onofftag-checkbox {
  display: none;
}
.onofftag-label {
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: auto;
  background: #ddd;
  color: #ffffff;
  padding: 10px;
  padding-right: 50px;
  min-width: 120px;
}

.onofftag-checkbox:checked + .onofftag-label {
  background: #ffb54c;
}

.btn-trash {
  position: absolute;
  right: 1px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  z-index: 50;
  width: 38px;
  height: 32px;
  border-left: 1px solid rgba(255,255,255,0.5);
}

.btn-trash .btn-default {
  background: transparent;
  border: none;
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
  padding: 8px 12px 7px;
}

.panel-user .onofftag-label {
  /*padding-right: 10px;*/
}

.panel-user .btn-trash {
  bottom: auto;
  top: 4px;
}

.data-user {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.5);
  margin-right: -40px;
}

@media(max-width: 767px) {
  .row-user-current .col-md-4 {
    padding: 0;
  }
}


/* フィルター設定*/
.list-option {
  margin-bottom: 40px;
}

.list-option li {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
  justify-content:space-between;
  -webkit-align-items: center;
  align-items: center;
}

.list-option li:not(:last-child) {
  margin-bottom: 10px;
}

.list-option li p {
  margin-bottom: 0;
}

.list-option .onoffswitch {
  margin-left: 20px;
}

.inner-panel {
  position: relative;
  padding-top: 15px;
  margin-top: 25px;
}

.inner-panel .row {
  display: none;
}

.inner-panel .row span {
  margin: 0 5px;
}

.inner-panel .form-group {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
  justify-content:space-between;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}

.inner-panel .form-group div:last-child {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
}

@media(max-width: 767px) {
  .list-option li p {
    width: 65%;
  }

  .inner-panel .form-group {
    display: block;
  }

  .inner-panel .col-sm-6 {
    padding: 0;
  }

  .inner-panel .form-group > div:first-child {
    margin-bottom: 5px;
  }
}


/* フッター */
#footer {
  background-color: #efefef;
  padding: 20px;
  color: 333;
  font-size: 15px;
}

#footer a {
  color: #333333;
  text-decoration: none;
}

#footer .nav{
  margin: 0 auto;
  display: table;
  table-layout: fixed;
  float:none;
}

#footer .nav-foot {
  margin: 10px auto 35px;
}

.nav-foot ul {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
  justify-content:space-between;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
}

.nav-foot ul li a {
  padding: 5px 10px;
  display: block;
}

.inner-footer {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.pagetop {
	position: fixed;
	bottom: 17px;
  right: 80px;
  z-index: 1000;
}

@media(max-width: 991px) {
  #footer {
    padding-bottom: 100px;
  }

  .fix-menu {
    position: fixed;
    background: #ffffff;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    border-top: 1px solid #ddd;
    z-index: 1000;
  }

  .fix-menu .fix-content {
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
    justify-content:space-between;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
  }

  .fix-menu .tab-btm {
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
    justify-content:space-between;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
    margin-bottom: 0;
    -webkit-align-items: center;
    align-items: center;
    width: 80%;
  }

  .fix-menu .sp-tb-menu {
    width: 20%;
    margin-bottom: 0;
  }

  .fix-menu .navbar-toggle {
    display: block;
    float: none;
    margin: auto;
    color: #aaaaaa;
    font-size: 150%;
    padding: 0;
  }

  .fix-menu .navbar-toggle:hover, .fix-menu li.active .navbar-toggle, .fix-menu li.active i {
    color: #ff6666;
  }

  .fix-menu ul li {
    color: #aaa;
    font-size: 150%;
    text-align: center;
    padding: 5px 10px;
    line-height: 1;
  }

  .fix-menu .tab-btm li {
    width: 25%;
  }

  .fix-menu ul li:hover {
    color: #ff6666;
    opacity: 1;
    cursor: pointer;
  }

  .navbar-offcanvas {
    position: fixed;
    background: #ffffff;
    padding: 0;
  }

  #js-bootstrap-offcanvas02 {
    background: #ffffff;
    z-index: 999;
  }

  .navbar-offcanvas ul li a {
    position: relative;
    padding: 15px 30px;
    display: block;
    color: #333333;
  }

  .navbar-offcanvas ul li a:hover {
    text-decoration: none;
  }

  .navbar-offcanvas ul li a:after {
    position: absolute;
    content:"";
    margin: auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid #aaa;
    border-bottom: 2px solid #aaa;
    right: 30px;
    top: 0;
    bottom: 0;
    transform: rotate(-45deg);
  }

  .navbar-offcanvas ul li span {
    margin-right: 5px;
  }

  .navbar-offcanvas ul li.list-heading {
    font-weight: bold;
    padding: 20px 30px 10px;
    border-top: 1px solid #ddd;
  }

  .navbar-offcanvas ul li.list-heading-info {
    color: gray;
    font-weight: normal;
    font-size: 110%;
    padding: 20px 30px 10px;
  }

  .navbar-offcanvas ul li:first-child {
    border-top: none;
  }
}

@media(min-width: 768px) and (max-width: 991px) {
  .nav-foot ul li {
    width: 25%;
  }

  .nav-foot ul li.txt-long {
    width: 32%;
  }

  .pagetop {
		right: 30px;
    width: 60px;
    bottom: 105px;
	}
}

@media(max-width: 767px) {
  #footer {
    font-size: 100%;
    padding: 20px 15px 80px;
  }

  .login-footer #footer {
    padding-bottom: 20px;
  }

  #footer .navbar {
    background: #fff;
  }

  .fix-menu {
    padding: 5px 15px;
  }

  .logo-foot {
    width: calc(274 / 640 * 100vw);
    margin: 0 auto 10px;
    padding: 0;
  }

  #wrap {
    margin-bottom: 15%;
  }

  #footer .nav-foot {
    margin: 0 auto;
  }

  .nav-foot ul {
    width: calc(550 / 640 * 100vw);
    margin: 0 auto 2%;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 88%;
  }

  #footer .nav-foot li a {
    padding: 5px 10px;
  }

  #footer .nav-foot li:not(:last-child) {
    margin-bottom: 2%;
  }

  .navbar-offcanvas ul li.list-heading {
    font-size: 120%;
    padding: 20px 15px 10px;
  }

  .navbar-offcanvas ul li.list-heading-info {
    color: gray;
    font-weight: normal;
    font-size: 110%;
    padding: 20px 15px 10px;
  }


  .navbar-offcanvas ul li {
    font-size: 110%;
  }

  .navbar-offcanvas ul li a {
    padding: 15px;
  }

  .navbar-offcanvas ul li a:after {
    right: 15px;
  }

  .copyright {
    line-height: 2.25;
  }

  .pagetop {
		width: calc(80 / 640 * 100vw);
    right: 3%;
    bottom: 9%;
  }
  
  .login-footer .pagetop {
    bottom: 3%;
  }
}

/* ホーム画面(OEM,Agent)　*/
.auth-info p {
  margin: 0 0 10px 0;
}

.main-contents {
  border-radius: 5px;
  margin: 0 -15px 30px -15px;
  padding: 5px 30px;
  border: 1px solid #ddd;
  background-color: white;
}

#tree li:before {
  content: "";
  display: table;
}

#tree li:after {
  content: "";
  display: table;
  clear: both;
}

.name-oem, .name-agent, .name-product {
  margin-top: 10px;
}

.row-eq-height h3 {
  margin: 0;
  margin-top: 5px;
}

.list-btn-create {
  margin-top: 10px;
}

/* 詳細関連 */
.panel-detail {
  padding-top: 10px;
  padding-bottom: 20px;
}

.panel-detail .name-agent {
  margin-top: 10px;
}

.panel-detail .name-agent h3 {
  margin: 0;
}

.panel-detail .list-btn-create {
  margin-top: 10px;
}

/* ログインユーザー */
.ttl-login-user  {
  margin: 20px auto;
}

.ttl-login-user h3 {
  margin: 0;
  margin-top: 10px;
}


@media(max-width:991px) {
  .list-oem, .list-agent {
    padding: 0 15px;
    margin: 0 auto 10px;
  }

  .auth-info, .product-info {
    border-bottom: none;
  }

  .auth-info .panel-body, .product-info .panel-body {
    padding-bottom: 0;
  }

  .auth-info02, .auth-info03, .product-info:last-child {
    margin-bottom: 60px;
  }

  .auth-info .panel-body .row:last-child p, .product-info .panel-body .row:last-child p {
    margin-bottom: 0;
  }

  .main-contents {
    padding: 10px 15px 0;
    margin: 0 auto 30px;
  }

  .row-eq-height {
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
    justify-content:space-between;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
    align-items: center;
  }

  .row-eq-height:before, .row-eq-height:after {
    content: none;
  }


  /* 新規作成関連 */
  .inner-create {
    padding: 0 15px;
  }

  .inner-create .breadcrumb {
    margin: 0 -15px 20px;
  }

  .ttl-create {
    font-size: 180%;
  }

  /* 詳細関連 */
  .panel-detail {
    border: 1px solid #ddd;
    margin: 0 15px;
    padding: 10px 0px 20px;
  }

  .panel-detail .panel-heading {
    padding-bottom: 20px;
  }

  /* ログインユーザー */
  .table-login-user {
    padding: 0px 15px;
  }

}

@media(max-width:767px) {
  .inner-sp {
    padding: 0 15px;
  }

  .row-eq-height {
    display: block;
  }

  .auth-info, .auth-info03, .product-info {
    margin-bottom: 20px;
  }

  .product-info:last-child {
    margin-bottom: 40px;
  }

  .breadcrumb {
    margin-bottom: 10px;
  }

  .main-contents {
    margin: 0 15px 30px;
  }

  .main-contents .row-eq-height > div {
    padding: 0;
  }

  .name-oem, .name-agent, .name-product {
    margin-bottom: 10px;
  }

  .name-agent02 {
    margin: 0 -15px;
  }

  .name-oem h3, .name-agent h3, .name-product h3 {
    font-size: 120%;
  }

  .list-btn-create {
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    -webkit-justify-content: flex-end; /*--- safari（PC）用 ---*/
    justify-content: flex-end;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
  }

  .list-btn-create > a:not(:first-child), .list-btn-create .client_delete_btn {
    margin-left: 5px;
  }

  .main-contents hr {
    margin: 10px auto;
  }

  /* 新規作成関連 */
  .inner-create {
    padding: 0px 15px;
  }

  .ttl-create {
    margin: 0;
    font-size: 130%;
  }

  .inner-create hr {
    margin: 10px auto;
  }

  .inner-create .form-group label {
    font-size: 110%;
  }

  /* 詳細関連 */
  .inner-sp .breadcrumb {
    margin: 0 -15px 10px;
  }

  .panel-detail {
    margin: auto;
  }

  .panel-detail .panel-heading, .panel-detail .panel-body {
    padding: 0 0 20px;
  }

  .panel-detail .panel-heading {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
  }

  .panel-detail .panel-body .row {
    margin: 0 -15px;
  }

  .panel-detail h4 {
    font-weight: normal;
    font-size: 100%;
  }

  .panel-detail hr {
    margin: 10px auto;
  }

  .manage-client {
    margin: 10px 0;
  }

  /* ログインユーザー */
  .ttl-login-user {
    margin: 0 -15px 10px;
  }

  .table-login-user {
    padding: 0px;  
  }
  
}

/* 管理画面の選択プランでしか使わないもの */
.select-plan {
  padding: 11px 10px 10px 15px;
  background: #FA8072;
  color: #ffffff;
}

/* 以下ユーザー管理画面でおそらく使用していないもの */
/* 設定画面の固定表 */
.table-fixed {
  width: 100%;
  border: 1px solid #ccc;
}
.table-fixed tbody {
  height: 300px;
  overflow-y: auto;
  width: 100%;
}
.table-fixed thead, .table-fixed tbody, .table-fixed tr, .table-fixed td, .table-fixed th {
  display: block;
}
.table-fixed tbody td {
  float: left;
}
.table-fixed thead tr th {
  float: left;
}
.table-fixed tr:after {
  content: ' ';
  display: block;
  visibility: hidden;
  clear: both;
}

.form-group label {
  font-size: 16px;
  /*font-weight: bold;*/
}




/* レポート詳細 */
.report-thumb {
  margin-top: 10px;
  margin-bottom: 30px;
}

.report-thumb .col-md-1 {
  padding: 4px;
}

.report-thumb .col-md-12 .col-md-1:first-child {
  padding-left: 0px;
}

.report-thumb .col-md-12 .col-md-1:last-child {
  padding-right: 0px;
}

.detail-activity {
  margin-top: 10px;
}

.detail-activity tbody td:not(:first-child) {
  text-align: right;
}

.detail-activity thead tr th, .detail-activity tbody tr td {
  padding: 10px 5px;
}

.detail-activity_log {
    margin-top: 10px;
  }
  
.detail-activity_log thead tr th, .detail-activity_log tbody tr td {
padding: 10px 5px;
}

.btn-back {
  padding-left: 15px;
  margin-bottom: 10px;
}

@media(max-width:767px) {
  .text-report {
    padding: 0;
  }

  .report-thumb > .col-md-12 {
    padding: 0;
  }
}

/*
 * アウトラインボタン
 */

/*Bootstrap button outline override*/
.btn-outline {
  background-color: transparent;
  color: inherit;
  transition: all .5s;
}

.btn-primary.btn-outline {
  color: #428bca;
}

.btn-success.btn-outline {
  color: #5cb85c;
}

.btn-info.btn-outline {
  color: #5bc0de;
}

.btn-warning.btn-outline {
  color: #f0ad4e;
}

.btn-danger.btn-outline {
  color: #d9534f;
}

.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
  color: #fff;
}

/* 外枠 */
.outer {
  width: 100%;
  margin: 0 auto;
  /*padding: 0 20px 20px 20px;*/
  background-color: white;
}

/* ボタン */
.bottom-margin-box {
  margin: 0 0 10px 0;
}

/* 数値表示 */
.disp-num {
  font-size: 14px;
  font-weight: bold;
  vertical-align: middle;
}

/* 表 */
th{
  text-align: center;
}
.table {
    border: 1px solid #dddddd;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  vertical-align: middle;
}

/* クライアントの詳細テーブル */
.shopdetail_tbl tr th {
  width: 25%;
  height: 90px;
}

.shopdetail_tbl tr td {
  text-align: left;
}

.client_delete_btn{
  display: inline-block;
}

.client_command_list{
  display: table-cell;
}

.client_command_list li{
    padding-left: 1px;
    padding-right: 1px;
}

/* ログイン画面 */
.login_title{
    margin: 20px 0;
}

.login_btn{
    width: 115px;
    height: 37px;
    letter-spacing: 1px;
    margin: 20px 0;
}

/* ログイン画面用フッター(marginとpaddingの調整) */
#login_wrap{
    min-height: 700px;
    height: auto;
    margin: 0 auto 80px;
    /* フッターの高さ分だけ、ネガティブインデントを指定 */
    /*margin: 0 auto -227px;*/
    /* フッターの高さ分だけ、パディングを指定 */
    /*padding: 0 0 227px;*/
}

@media (max-width:767px) {
  #login_wrap {
    margin-bottom: 15%;
  }
}


.label.label-outlined {
    border-width: 1px;
    border-style: solid;
    background-color: transparent
  }
  
  .label.label-outlined.label-default {
    border-color: #636c72;
    color: #636c72;
  }
  
  .label.label-outlined.label-primary {
    border-color: #0275d8;
    color: #0275d8;
  }
  
  .label.label-outlined.label-secondary {
    border-color: #292b2c;
    color: #292b2c;
  }
  
  .label.label-outlined.label-info {
    border-color: #5bc0de;
    color: #5bc0de;
  }
  
  .label.label-outlined.label-success {
    border-color: #5cb85c;
    color: #5cb85c;
  }
  
  .label.label-outlined.label-warning {
    border-color: #f0ad4e;
    color: #f0ad4e;
  }
  
  .label.label-outlined.label-danger {
    border-color: #d9534f;
    color: #d9534f;
  }

  /* typehead */
  span.twitter-typeahead .tt-menu,
  span.twitter-typeahead .tt-dropdown-menu {
    cursor: pointer;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
  }
  span.twitter-typeahead .tt-suggestion {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333333;
    white-space: nowrap;
  }
  span.twitter-typeahead .tt-suggestion.tt-cursor,
  span.twitter-typeahead .tt-suggestion:hover,
  span.twitter-typeahead .tt-suggestion:focus {
    color: #ffffff;
    text-decoration: none;
    outline: 0;
    background-color: #337ab7;
  }
  .input-group.input-group-lg span.twitter-typeahead .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
  }
  .input-group.input-group-sm span.twitter-typeahead .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
  }
  span.twitter-typeahead {
    width: 100%;
  }
  .input-group span.twitter-typeahead {
    display: block !important;
    height: 34px;
  }
  .input-group span.twitter-typeahead .tt-menu,
  .input-group span.twitter-typeahead .tt-dropdown-menu {
    top: 32px !important;
  }
  .input-group span.twitter-typeahead:not(:first-child):not(:last-child) .form-control {
    border-radius: 0;
  }
  .input-group span.twitter-typeahead:first-child .form-control {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .input-group span.twitter-typeahead:last-child .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  .input-group.input-group-sm span.twitter-typeahead {
    height: 30px;
  }
  .input-group.input-group-sm span.twitter-typeahead .tt-menu,
  .input-group.input-group-sm span.twitter-typeahead .tt-dropdown-menu {
    top: 30px !important;
  }
  .input-group.input-group-lg span.twitter-typeahead {
    height: 46px;
  }
  .input-group.input-group-lg span.twitter-typeahead .tt-menu,
  .input-group.input-group-lg span.twitter-typeahead .tt-dropdown-menu {
    top: 46px !important;
  }

  .list-account > li {
      position: relative;
  }
  .list-account ul {
      position: absolute;
      z-index: 10;
      -webkit-display: flex;
      -moz-display: flex;
      -ms-display: flex;
      -o-display: flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      width: 100px;
      right: 10px;
      top:0px;
      bottom: 0px;
      margin: auto;
      height: 50px;
  }

  .list-account ul li {
      width: 30px;
  }

  .row-edit {
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
    justify-content:space-between;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
  }

  .row-edit ul {
    margin-bottom: 0;
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
  }

  .row-edit li:not(:last-child) {
    margin-right: 5px;
  }

  @media(min-width:992px) and (max-width: 1329px) {
    .row-edit {
      display: block;
    }

    .row-edit ul {
      margin-top: 5px;
      margin-right: 0;
    }
  }

  @media(max-width:991px) {
    .inner-sp02 .text-info, .inner-sp02 .text-danger {
      padding: 0px 30px;
    }
    
    .panel-body .img-account, .col-r-sm {
      padding-top: 0;
    }

    

    
  }
/* ここからmypage変更 */
/* マイページメニュー */
.nav-mypage a {
  color: #333333;
}

.nav-mypage > li > a {
  font-size: 114.28%;
  padding: 19px 15px;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.nav-mypage li > a:hover, .nav-mypage li > a:focus, .nav-mypage li > a.active {
  background: #f9f9f9;
  border-color: #f9f9f9;
}

@media(max-width: 991px) {
  .nav-mypage {
    display: none;
  }
}

#info1, #list-user-login {
  padding: 0px 15px;
}

/* マイページ共通 */
.container-mypage {
  margin-bottom: 150px;
}

.ttl-mypage {
  background: #f9f9f9;
  padding: 21px 20px 20px;
  margin: 0 auto 20px;
  font-size: 128.57%;
}

.flex-ttl-mypage {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
  justify-content:space-between;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  padding: 13px 20px;
}

.container-mypage section, #list-user-login {
  margin-bottom: 80px;
}

.inner-mypage {
  padding: 0px 20px;
}

#info1-3 .inner-mypage {
  margin-bottom: 60px;
}

.tbl-mypage01 {
  width: 100%;
}

.tbl-mypage01 th {
  text-align: left;
  font-size: 114.28%;
  color: #aaaaaa;
  width: 25%;
}

.tbl-mypage01 td {
  font-size: 114.28%;
  border-bottom: 1px solid #ddd;
  padding: 30px 20px;
  width: 75%;
}

.label-plan {
  background: #777;
  display: inline-block;
  color: #ffffff;
  padding: 7px 20px;
  border-radius: 5px;
}

.label-plan.plan-standard {
  background: #3594b3;
}

.label-plan.plan-basic {
    background: #3594b3;
  }

.tbl-mypage01 .label {
  display: inline-block;
}

.link-mypage {
  float: right;
}

.link-mypage a {
  color: #0052cc;
  font-size: 85.71%;
}

.tbl-mypage01 td .link-mypage a {
  font-size: 75%;
}

.label-yellow {
  background: #ffb54c;
  font-weight: normal;
  font-size: 100%;
  line-height: 1;
  padding: 9px 20px;
}

.btn-yellow {
  background: #ffb54c;
  color: #ffffff;
}

.btn-yellow:hover {
  color: #ffffff;
  opacity: .75;
}

.inner-mypage .table-responsive {
  margin-top: 40px;
}

.tbl-mypage02 {
  width: 100%;
}

.tbl-mypage02 tr:nth-child(2n) {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.tbl-mypage02 tr {
  text-align: center;
}

.tbl-mypage02 th, .tbl-mypage02 td {
  padding: 20px 15px;
}

.tbl-mypage02 thead th {
  border-bottom: 2px solid #ddd;
  padding: 15px 5px;
  font-weight: normal;
  background: #f9f9f9;
}

.tbl-mypage02 .manage-name, .tbl-mypage02 .account-ID, .tbl-mypage02 .login-user, .tbl-mypage02 .login-mail, .tbl-mypage02 .product-name, .tbl-mypage02 .card-number, .tbl-mypage02 .expiration-date, .tbl-mypage02 .card-brand, .tbl-mypage02 .status03 {
  width: 25%;
}

.tbl-mypage02 .login-password, .tbl-mypage02 .setting-btn {
  width: 20%;
}

.tbl-mypage02 .billing-date, .tbl-mypage02 .charge, .tbl-mypage02 .settlement-ID, .tbl-mypage02 .status02 {
  width: 18.75%;
}

.tbl-mypage02 .status01, .tbl-mypage02 .registration-date, .tbl-mypage02 .setting-btn01 {
  width: 15%;
}

.tbl-mypage02 .status01 .glyphicon {
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -3px;
}

.tbl-mypage02 .setting-btn, .tbl-mypage02 .status03 {
  white-space: normal;
}

.tbl-mypage02 .setting-btn ul, .tbl-mypage02 .status03 ul {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 0;
}

.tbl-mypage02 .setting-btn ul li, .tbl-mypage02 .status03 ul li {
  margin: 0 5px;
}

.txt-confirm {
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
	margin-bottom: 10px;
}
.paginate-payment {
  text-align: center;
}
.paginate-payment .pagination {
  margin: 30px auto 0;
}
@media(min-width: 768px) and (max-width:991px) {
  .container-mypage section {
    margin-bottom: 60px;
  }

  .tbl-mypage01 td {
    padding: 20px;
  }

  .inner-mypage .table-responsive {
    margin-top: 20px;
  }
}

@media(max-width: 767px) {
  .container-mypage {
    margin-bottom: 120px;
    padding: 0 15px;
  } 

  .container-mypage section {
    margin-bottom: 15%;
  }

  #list-user-login {
    margin-bottom: 20%;
  }

  .ttl-mypage {
    padding: 4%;
    font-size: 120%;
    margin-bottom: 6%;
  }

  .flex-ttl-mypage {
    padding: 4%;
  }

  .inner-mypage {
    padding: 0;
  }

  .tbl-mypage01, .tbl-mypage01 tbody, .tbl-mypage01 tr, .tbl-mypage01 th, .tbl-mypage01 td {
    display: block;
    width: 100%;
  }

  .tbl-mypage01 th, .tbl-mypage01 td {
    padding: 3% 4%;
    line-height: 2;
  }

  .tbl-mypage01 th {
    border-top: 1px solid #ddd;
    border-bottom: 1px dashed #ddd;
  }

  .tbl-mypage01 td {
    border: none;
  }

  .link-mypage a {
    font-size: 90%;
    text-decoration: underline;
  }

  .tbl-mypage01 td .link-mypage a {
    font-size: 80%;
  }

  .btn-yellow, .btn-blue {
    font-size: 83%;
    padding: 6px 8px;
  }

  .inner-mypage .table-responsive {
    margin-top: 6%;
    max-height: 300px;
    overflow-y: auto;
  }

  .tbl-mypage02 .btn-blue, .tbl-mypage02 .btn-yellow {
		font-size: 100%;
	}
}

/* 基本情報 */
.contract-date .label {
  line-height: 1;
  padding: 9px 20px;
  font-size: 100%;
}

.contract-date .date {
	margin-right: 10px;
}

.pause-date {
  background: #f9f9f9;
  font-size: 87.5%;
  margin: 10px -20px 0 -20px;
  padding: 10px 20px;
}

@media(max-width: 767px) {
  .pause-date {
    margin: 10px -4% 0;
    padding: 10px 4%;
  }
}

/* ユーザー情報　*/
.last-update {
  margin-top: -10px;
}

.last-update p {
  padding-right: 20px;
  text-align: right;
}

.name-client th, .name-client td {
  font-weight: normal;
  font-size: 100%;
}

@media (max-width:991px) {
  .last-update {
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-wrap: wrap; /* Safari */
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
  }

  .last-update p {
    margin-top: auto;
    margin-bottom: auto;
  }
}

@media(max-width: 767px) {
  .last-update {
    -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:justify;/*--- IE10 ---*/
    -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
    justify-content:space-between;
    margin-bottom: 3%;
  }

  .last-update p {
    padding-right: 0;
  }
}

/* 登録アカウント */
@media(max-width:767px) {
  #info1-3 .flex-ttl-mypage {
    display: block;
  }

  #info1-3 .flex-ttl-mypage span {
    display: block;
    margin-top: 5px;
    text-align: right;
  }
}


/* プラン情報 */
.info-plan {
  padding-top: 20px;
}

.info-plan .col-l {
  width: 250px;
  float: left;
  margin-right: 30px;
}

.info-plan .col-l .plan-business {
  background: #777;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-size: 142.86%;
  padding: 16px;
  border-radius: 5px;
}

.info-plan .col-l .link-mypage {
  margin-top: 5px;
  float: none;
  text-align: right;
  margin-right: 0;
}
.info-plan .col-l .main-account {
  text-align: right;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 15px auto 0;
}
.info-plan .col-r {
  float: left;
  width: calc(100% - 280px);
}

.info-plan .col-r .date-billing {
  font-size: 128.57%;
  padding: 18px 10px;
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
}

.info-plan .col-r p {
  margin-bottom: 0;
}

.info-plan .col-r .btn-option {
  background: #ff6666;
  color: #ffffff;
  padding: 10px 20px;
  margin-right: 20px;
  border-radius: 5px;
  display: inline-block;
}

.info-plan .col-r li {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
  -ms-flex-pack:justify;/*--- IE10 ---*/
  -webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
  justify-content:space-between;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}

@media(min-width: 992px) and (max-width:1199px) {
  .info-plan .col-r li {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
  }

  .info-plan .col-r li:last-child {
    margin-bottom: 10px;
  }

  .info-plan .col-r li .text-danger {
    margin-top: 5px;
    text-align: right;
  }
}

@media(min-width: 768px) and (max-width:991px) {
  .info-plan {
    padding-top: 0px;
  }

  .info-plan .col-l {
    width: 200px;
    margin-right: 3%;
  }

  .info-plan .col-l .plan-business {
    font-size: 125%;
    padding: 10px;
  }

  .info-plan .col-r {
    width: calc(100% - 200px - 3%);
  }

  .info-plan .col-r .date-billing {
    font-size: 120%;
    padding: 10px;
  }

  .info-plan .col-r li {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
  }

  .info-plan .col-r li:last-child {
    margin-bottom: 10px;
  }

  .info-plan .col-r li .text-danger {
    margin-top: 5px;
    text-align: right;
  }
}

@media(max-width: 767px) {
  .info-plan {
    padding-top: 0;
  }

  .info-plan .col-l {
    float: none;
    width: 100%;
  }

  .info-plan .col-r {
    float: none;
    width: 100%;
  }

  .info-plan .col-l .plan-business {
    padding: 4%;
    font-size: 130%;
  }

  .info-plan .col-l .link-mypage {
    float: none;
    text-align: right;
    margin: 3% auto 0;
  }

  .info-plan .col-r .date-billing {
    padding: 0 0 4%;
    text-align: right;
    font-size: 120%;
    margin-bottom: 4%;
  }

  .info-plan .col-r li {
    display: block;
    border-bottom: 1px solid #ddd;
    padding-bottom: 4%;
    margin-bottom: 4%;
  }

  .info-plan .col-r .btn-option {
    padding: 6px 8px;
    margin-right: 5px;
  }

  .info-plan .col-r .text-danger {
    text-align: right;
    margin-top: 2%;
  }
}

/* 決済履歴 */
.status02 .label-danger {
  color: #ffffff;
  border-radius: 4px;
  padding: 7px 12px;
}

/* クレジットカード情報 */
.selected-card {
  font-size: 114.29%;
  padding: 15px 20px;
  margin-top: 40px;
  border: 5px double #ddd;
}

#info2-3 .table-responsive {
  margin-top: 20px;
  margin-bottom: 10px;
}

.registration-card {
  margin-top: 20px;
}

.registration-card .btn {
  margin-right: 10px;
}

.status03 .btn-yellow, .status03 .btn-yellow:hover, .status03 .btn-yellow:focus, .status03 .btn-yellow.focus {
  background: #ffb54c;
  color: #ffffff;
  border: none;
}

.status03 .btn-blue, .status03 .btn-blue:hover, .status03 .btn-blue:focus, .status03 .btn-blue.focus {
  background: #49c9c9;
  color: #ffffff;
  border: none;
}

.btn-yellow:hover, .btn-blue:hover {
  opacity: .75;
}

/* クレジット登録 */
.tbl-credit01 {
	width: 100%;
}

.tbl-credit01 th {
	width: 15%;
	text-align: left;
	font-weight: normal;
}

.tbl-credit01 td {
	padding: 10px 20px;
	width: 85%;
}

.tbl-credit01 td input {
	width: 50%;
	border: 2px solid #ddd;
	border-radius: 10px;
	padding: 5px;
}

.tbl-credit01 td select {
	width: 15%;
	margin-right: 10px;
	border: 2px solid #ddd;
	border-radius: 10px;
	padding: 5px;
}

.list-credit {
	display:-webkit-box;/*--- Androidブラウザ用 ---*/
	display:-ms-flexbox;/*--- IE10 ---*/
	display: -webkit-flex;/*--- safari（PC）用 ---*/
	display:flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
	padding: 0;
	border-top: 2px solid #ddd;
	padding-top: 20px;
	margin-top: 10px;
}

.list-credit li:first-child {
	margin-right: 10px;
}

.list-credit li {
	max-width: 160px;
	width: 100%;
}

.list-credit li .btn {
	width: 100%;
	display: block;
	text-align: center;
	color: #fff;
}

.list-credit .btn-gray {
	background: #aaa;
}

.list-credit .btn-blue {
	background: #49c9c9;
}

.list-credit .btn:hover, .list-credit .btn:focus, .list-credit .btn.focus {
	color: #fff;
}

@media(min-width: 768px) and (max-width:991px) {
  .selected-card {
    margin-top: 20px;
  }
}

@media(max-width: 767px){
  .selected-card {
    margin-top: 6%;
    padding: 4%;
  }

  .selected-card strong {
    display: inline-block;
    margin-top: 10px;
  }

  #info2-3 .table-responsive {
    margin: 4% auto 2%;
  }

  .tbl-credit01 th {
		width: 25%;
	}
	
	.tbl-credit01 td {
		width: 75%;
	}
	
	.tbl-credit01 td input {
		width: 100%;
	}
	
	.tbl-credit01 td select {
		width: 50%;
	}
	
	.tbl-credit01 td select:first-child {
		margin-bottom: 10px;
	}
	
	.list-credit li:first-child {
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	.list-credit li {
		max-width: 100%;
	}
	
	.list-credit .btn-blue, .list-credit .btn-yellow {
		font-size: 100%;
	}
}

/* プラン変更　*/
.list-plan, .list-option {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  margin: 40px auto 20px;
}

.list-option {
  margin: 20px auto;
}

.box-plan {
  width: 32%;
  border: 2px solid #ddd;
  border-radius: 5px;
  text-align: center;
  padding: 20px 15px;
  margin-bottom: 2%;
}

.box-plan:nth-child(3n+2) {
  margin: 0 2% 2% 2%;
}

.box-plan dt {
  font-weight: bold;
  font-size: 128.57%;
  margin-bottom: 10px;
}

.box-plan dd strong {
  font-size: 114.29%;
}

.box-plan dd strong span {
  font-size: 175%;
  margin: 0 5px;
}

.box-plan .btn {
  max-width: 200px;
  width: 100%;
  padding: 7px 12px;
  font-size: 100%;
}

.box-plan .btn:hover {
  opacity: .75;
}

.plan-standard {
  border-color: #3594b3;
}

.plan-standard dd strong {
  color: #3594b3;
}

.plan-standard .btn, .plan-standard .btn:hover, .plan-standard .btn:focus, .plan-standard .btn.focus {
  background: #3594b3;
  color: #ffffff;
  border: none;
}

.plan-basic {
    border-color: #3594b3;
  }
  
  .plan-basic dd strong {
    color: #3594b3;
  }

  .plan-basic .btn, .plan-basic .btn:hover, .plan-basic .btn:focus, .plan-basic .btn.focus {
    background: #3594b3;
    color: #ffffff;
    border: none;
  }


.btn-more {
  padding: 7px 20px;
  float: right;
}

.btn-more span {
  position: relative;
  padding-right: 15px;
}

.btn-more span:after {
  position: absolute;
  content:"";
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  right: 0;
  top: 0;
  bottom: 0;
  transform: rotate(-45deg);
}

.plan-business {
  border-color: #777;
}

.plan-business dd strong {
  color: #777;
}

.plan-business .btn, .plan-business .btn:hover, .plan-business .btn:focus, .plan-business .btn.focus {
  background: #777;
  color: #ffffff;
  border: none;
}


@media(min-width: 768px) and (max-width:991px) {
  .list-plan, .list-option {
    margin-top: 20px;
  }

  .box-plan {
    padding: 15px 10px;
  }
}

@media(max-width: 767px) {
  .list-plan, .list-option {
    display: block;
  }

  .list-plan {
    margin: 6% auto 4%;
  }

  .box-plan {
    width: 100%;
    padding: 5% 4%;
  }

  .box-plan:nth-child(2n) {
    margin: 5% auto;
  }

  .box-plan:nth-child(3n+2) {
    margin: 5% auto;
  }

  .box-plan dl {
    margin-bottom: 5%;
  }

  .box-plan dt {
    margin-bottom: 2%;
  }

  .btn-more {
    width: 100%;
    font-size: 100%;
  }
}


/* 追加オプション */
.ttl-option {
  padding: 16px 20px 15px;
  background: #f9f9f9;
  margin: 40px auto 20px;
  font-size: 128.57%;
}

.plan-option {
  border-color: #ff6666;
}

.plan-option dd strong {
  color: #ff6666;
}

.plan-option ul {
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display: -webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  -webkit-justify-content:center;/*--- safari（PC）用 ---*/
  justify-content:center;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  margin-bottom: 0;
}

.plan-option li {
  width: 48%;
  margin: 0 1%;
}

.plan-option .btn {
  max-width: 100%;
}

.plan-option .btn, .plan-option .btn:hover, .plan-option .btn:focus, .plan-option .btn.focus {
  background: #ff6666;
  color: #ffffff;
  border: none;
}

.plan-option .btn-cancell, .plan-option .btn-cancell:hover, .plan-option .btn-cancell:focus, .plan-option .btn-cancell.focus {
  background: #ddd;
  color: #333333;
  border: none;
}

@media(max-width: 767px) {
  .ttl-option {
    padding: 3% 4%;
    margin: 10% auto 4%;
    font-size: 110%;
  }

  .list-option {
    margin: 4% auto;
  }

  .box-plan dt br {
    display: none;
  }
}

/* 退会手続き */
.btn-unsubscribe {
	margin-top: 20px;
}

.container-delete {
	max-width: 1200px;
	width: 100%;
	margin: 20px auto 0;
	padding: 0 15px;
}

/* ここから下はマージで追加しない */
@media(min-width: 1200px) {
  .sp-only {
    display: none;
  }

  .sp-tb {
    display: none;
  }

  .tb-pc {
    display: inherit;
  }
  
  .tb-only {
    display: none;
  }
}

@media(min-width: 992px) and (max-width:1199px) {
  .sp-only {
    display: none;
  }

  .sp-tb {
    display: none;
  }

  .tb-pc {
    display: inherit;
  }

  .tb-only {
    display: none;
  }
}

@media(min-width: 768px) and (max-width:991px) {
  .sp-only {
    display: none;
  }

  .sp-tb {
    display: inherit;
  }

  .tb-pc {
    display: none;
  }

  .tb-only {
    display: inherit;
  }
}

@media(max-width: 767px) {
  .sp-only {
    display: inherit;
  }

  .sp-tb {
    display: inherit;
  }

  .tb-pc {
    display: none;
  }

  .tb-only {
    display: none;
  }

  .container-fluid {
    padding: 0;
  }

  body {
    font-size: 3.73vw;
  }
}


/* 初回インスタグラム登録画面 */
.container-register {
    max-width: 1200px;
    width: 100%;
    margin: 20px auto 120px;
    padding: 0 15px;
  }
  
.box-register {
  background: #f9f9f9;
  padding: 55px 30px 60px;
}

.box-register h3 {
  text-align: center;
  font-size: 171.43%;
  font-weight: bold;
  margin-bottom: 20px;
}

.box-register h3 span {
  border-bottom: 5px solid #333;
  padding: 0px 10px 5px;
  display: inline-block;
}

.box-register p {
  font-size: 114.29%;
  line-height: 2;
}

.box-register small a {
  text-decoration: underline;
  color: #333333;
}

.box-register small a:hover {
  opacity: .75;
}

.btn-plan-business {
  margin-top: 10px;
}

.btn-plan-business a {
  background: #666;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
  display: block;
  max-width: 250px;
  margin: 0 auto;
  line-height: 1;
  text-align: center;
}

.btn-plan-business a:hover {
  text-decoration: none;
}

.box-caution {
  max-width: 1000px;
  width: 100%;
  margin: 30px auto 0;
  padding: 30px;
  background: #fff;
  border: 2px solid #f66;
}

.box-caution h3 {
	margin: 0 auto 10px;
}

.box-caution p {
	margin: 0;
}

.tbl-register {
  width: 100%;
  max-width: 700px;
  margin: 60px auto 45px;
  display: block;
}

.tbl-register tbody, .tbl-register tr, .tbl-register th, .tbl-register td {
  display: block;
}

.tbl-register tr:not(:last-child) {
  margin-bottom: 5%;
}

.tbl-register th {
  font-size: 128.57%;
  font-weight: bold;
  border-left: 10px solid #f66;
  padding-left: 12px;
  text-align: left;
  margin-bottom: 10px;
}

.tbl-register td {
  margin-bottom: 40px;
}

.tbl-register td input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 19px 20px;
}

.accept {
  margin-bottom: 20px;
}

.btn-register {
  text-align: center;
}

.btn-register input {
  background: #f66;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  border: none;
  font-size: 142.86%;
  padding: 16px;
}

.btn-register input:hover {
  opacity: .75;
  cursor: pointer;
}

/* クレジットカード登録 */
.box-pay {
	max-width: 900px;
	width: 100%;
	margin: 20px auto 40px;
	background: #fff;
	border: 2px solid #ddd;
	padding: 15px 20px;
}

.box-pay .txt-pay01 {
	font-weight: bold;
	font-size: 142.86%;
  border-bottom: 1px solid #ddd;
  margin: 0 auto 10px;
}

.box-pay .txt-pay02 {
	margin-bottom: 0;
	line-height: 1.6;
}

.inbox-pay {
	padding: 5px 15px;
}

.inbox-pay .row {
	margin-bottom: 10px;
	font-size: 128.57%;
}

.box-pay01 {
	margin-bottom: 0;
	padding: 20px;
}

.box-pay01 .row {
	margin-bottom: 20px;
}

.box-pay input {
	padding: 7px 10px;
	border-radius: 5px;
	border: 1px solid #999;
	width: 60%;
}

.box-pay select {
	padding: 7px 10px;
	border-radius: 5px;
	border: 1px solid #999;
}

.box-pay .btn-register {
	border-top: 1px solid #ddd;
	text-align: left;
	padding-top: 20px;
}

.btn-register .btn {
	max-width: 160px;
	width: 100%;
}

.btn-register01 {
	margin-top: 20px;
}

.btn-register02 {
	margin-top: 20px;
}

.btn-register02 .btn {
	max-width: 180px;
}

#btn_card_del {
    color: #a94442;
}

/* 登録関係step */
.step {
	margin-bottom: 40px;
	display:-webkit-box;/*--- Androidブラウザ用 ---*/
	display:-ms-flexbox;/*--- IE10 ---*/
	display: -webkit-flex;/*--- safari（PC）用 ---*/
	display:flex;
	position: relative;
}

.step:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 5px;
	background: url(../../img/line_ttl.png)repeat-x;
	left: 0;
	bottom: -8px;
}

.step li {
	color: #fff;
	font-size: 112.5%;
	line-height: 1.67;
	padding: 14px;
	position: relative;
}

.step li span {
	font-weight: bold;
	display: block;
}

.step .step01 {
	background: #fe8080;
	width: 33.6%;
	max-width: 430px;
}

.step01:after {
	content: "";
	position: absolute;
	right: -40px;
	top: 0;
	height: 80px;
	width:40px;
	background: url(../../img/arw_step01.png)no-repeat;
	z-index: 1;
}

.step .step02 {
	background: #f66;
	width: 33.6%;
	max-width: 430px;
}

.step02:after {
	content: "";
	position: absolute;
	right: -38px;
	top: 0;
	height: 80px;
	width:44px;
	background: url(../../img/arw_step02.png)no-repeat;
	z-index: 1;
}

.step .step03 {
	background: #f33;
	width: 32.8%;
}

.txt_step {
	max-width: 70px;
	width: 100%;
	margin: 0 auto;
}

.step02 .txt_step {
	max-width: 160px;
}

.step03 .txt_step {
	max-width: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 960px) {
	.step {
		margin-bottom: 40px;
	}
}
  
@media(max-width: 767px) {  
  .box-register {
    padding: 8% 4% 10%;
  }

  .box-register h3 {
    margin: 0 auto 6%;
    font-size: 140%;
  }

  .box-register h3 span {
    border-bottom-width: 3px;
  }

  .box-register .btn {
    font-size: 100%;
  }

  .box-register p {
    text-align: left;
    line-height: 1.8;
  }
  
  .tbl-register {
    margin: 10% auto;
  }

  .tbl-register th {
    padding-left: 5px;
    border-left-width: 6px;
    margin-bottom: 3%;
    line-height: 1.5;
  }

  .tbl-register td {
    margin-bottom: 4%;
  }

  .tbl-register td input {
    padding: 3%;
  }

  .btn-register input {
    font-size: 130%;
    padding: 3%;
  }

  .box-pay {
    padding: 4%;
    margin: 20px auto;
  }

  .box-pay .txt-pay01 {
    font-size: 120%;
    padding-bottom: 5px;
  }

  .box-pay h4 {
    font-size: 120%;
  }

  .box-pay input {
    width: 100%;
  }

  .box-pay .btn-register {
    text-align: center;
  }

  .inbox-pay {
    padding: 0;
  }

  .inbox-pay .row {
    font-size: 100%;
  }

  .step {
		-webkit-flex-direction: column;
		flex-direction: column;
		margin: 0 auto 10%;
	}
	
	.step .step01, .step .step02, .step .step03 {
		width: 100%;
		max-width: 100%;
		padding: 9px 4%;
		text-align: left;
		font-size: 120%;
	}
	
	.txt_step, .step02 .txt_step, .step03 .txt_step {
		max-width: 100%;
	}
	
	.step li span {
		display: inline-block;
		margin-right: 1em;
	}
	
	.step01:after, .step02:after {
		position: relative;
		top: auto;
		height: auto;
		width: auto;
		right: auto;
	}
}
  
/* サイドバーのページネーション */
.sidebar_paginate {
  text-align: right;
}

.sidebar_paginate .pagination{
    margin: 0 0 13px 0;
}

.sidebar_paginate .pagination > .disabled > span, .sidebar_paginate .pagination > .disabled > span:hover, .sidebar_paginate .pagination > .disabled > span:focus, .sidebar_paginate .pagination > .disabled > a, .sidebar_paginate .pagination > .disabled > a:hover, .sidebar_paginate .pagination > .disabled > a:focus, .sidebar_paginate .pagination > li > a, .sidebar_paginate, .pagination > li > span {
  border: none;
  background: transparent;
}

.sidebar_paginate .pagination > .disabled > span:hover {
  color: #ddd;
}

.sidebar_paginate .pagination > li > a {
  color: #ffb54c;
}

.sidebar_paginate .pagination > li > span {
  color: #ddd;
}

/* モーダル背景修正 */
.modal-backdrop {
    position: fixed;
    bottom: 0;
    z-index: 1000;
}

/* 初回稼働のお知らせ */
#first-operation .modal-dialog {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  margin: -5% auto auto;
  pointer-events: none;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
#first-operation .modal-content {
  background: transparent;
  box-shadow: none;
  border: none;
  pointer-events: all;
}
#first-operation .modal-header {
  background: #ff6666;
  color: #fff;
  border-radius: 5px 5px 0px 0px;
  padding: 15px 30px;
}
#first-operation .modal-header h4 {
  font-weight: bold;
}
#first-operation .modal-body {
  background: #fff;
  border-radius: 0px 0px 5px 5px;
  padding: 20px 30px 40px;
  line-height: 1.8;
  color: #666666;
}
#first-operation .modal-body span {
  background: linear-gradient(transparent 60%, rgba(255,181,76,.5) 0%);
  font-weight: bold;
  padding: 0 5px;
  margin-right: 5px;
  line-height: 1.8;
}
#first-operation .modal-footer {
  text-align: center;
  border: none;
}
#first-operation .modal-footer button {
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.5);
  background-color: #ff6666;
  border-color: #ff6666;
}
@media(max-width: 767px) {
  #first-operation {
    width: 90%;
    margin: auto;
    padding-right: 0;
  }
}
/* ログインフッター追加 */
.foot-aim {
  height: 50px;
}