@import url(https://fonts.googleapis.com/css?family=Lato);

.u-ml125em{
  margin-left:1.25em;
}

.cp2-font {
  font-family: 'Lato', sans-serif;
}
.vartical-nav a.logo-font {
  text-decoration: none;
  color:  white;
}
body#login div.maintitle {
  font-family: 'Lato', sans-serif;
  color:  black;
  font-size: 60px;
  text-align: center;
}
body#login div.subtitle {
  color:  black;
  font-size: 18px;
  text-align: center;
}
.login-user-info {
  padding: 10px;
}

body#login {
  background:url("/cmn//img/bg/login_admin.jpg") center center;
  background-size: 2400px;
    -webkit-transition: all 10000ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-title {
  font-size: 16px;
  font-weight: bold;
  display: block;
}
.step-count {
  display: block;
  font-size: 20px;
  margin-top: 18px;
}

.status-green {
  color: green;
}

/* ************************************** 管理画面共通 */

/* バリデートエラー */
.validateErr {
	color: #e45e42;
}

.validateOk {
	color: green;
}


/* 必須表記 */
.inputRequired {
	color: #e45e42;
}

.alert-color {
  color: #e45e42;
}
/* フラッシュメッセージ */
.message-flash {
	font-size: 13px;
	margin-left:50px;
	color:  #e45e42;
	font-weight: bold;
	position: relative;
  -webkit-animation: show 0.5s ease-out 1;
/*  background: #ffecb5;*/
  display: inline-block;
  padding: 0 20px;
}
@-webkit-keyframes show {
  from {opacity: 0.0; left: -30px;}
  50%{opacity: 0.3;}
  to {opacity: 1.0; left: 0px;}
}

.block {
	-webkit-animation: showFade 0.1s linear 1;
}
@-webkit-keyframes showFade {
  from {opacity: 0.2;}
  to {opacity: 1.0;}
}

.btn-area {
	margin: 10px;
}

.btn.sw {
  padding: 3px 10px;
}
.btn.sw:focus {
  border: 0px solid red;
  background-color: #733;
}


.btn {
  border: none;
  background-color: #73b7ca;
  padding: 10px 20px;
}
.btn:hover {
  color: white;
  border: none;
  background-color: #A1D2E0;
}
.btn:focus {
  color: white;
  border: none;
  padding: 10px 20px;
  background-color: #73b7ca;
}


.btn-danger {
  background-color: #733;
}
.btn-danger:hover {
  background-color: #d9534f;
}
.btn-danger:focus {
  background-color: #733;
}

.btn-store {
  background-color: #00A4A3;
}
.btn-store:hover {
  background-color: #19C7C6;
}
.btn-store:focus {
  background-color: #00A4A3;
}

.btn-warning {
  background-color: #D2800C;
}
.btn-warning:hover {
  background-color: #F5B965;
}
.btn-warning:focus {
  background-color: #EFA43B;
}

.btn-cancel {
  background-color: #888;
}
.btn-cancel:hover {
  background-color: #ccc;
}
.btn-cancel:focus {
  background-color: #888;
}




/* テーブル */
table th {
	text-align: center;
}
table td.c {
	text-align: center;
}
table td.r {
	text-align: right;
}
table td.l {
  text-align: left;
}

.banner-block{
  padding: 10px;
}
.banner{
  background-repeat: no-repeat;
  background-size:contain;
  background-position: center;
}
.banner.credit{
  background-image: url(/img/more_credit.png);
}
.banner.mmu{
  background-image: url(/img/bnr_mmu.png);
}
.banner.guide{
  background-image: url(/img/total_guide.png);
}






/* ステータス表示 */

div.status {
  text-align: center;
  width: 100px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  display: inline-block;
  margin-left: 10px;
}



div.status.red {
  background-color: #d2322d;
  color: #eee;
}
div.status.pink {
  background-color: #F56E53;
  color: #eee;
}
div.status.blue {
	background-color: #6391CC;
  color: white;
}
div.status.orange {
  background-color: #F4D313;
}
div.status.green {
	background-color: #00A4A3;
  color: #eee;
}
div.status.gray {
	background-color: #ccc;
  color: #666;
}
div.status.gray.s,
div.status.red.s,
div.status.green.s{
  width: 55px;
}

.member-icon {
  color: white;
  background-color: #dA5C45;
  border-radius: 2px;
  padding: 0 2px 0 2px;
}

.brick a figcaption h4 span.member-icon {
  font-size: 10px;
}


/* -------------------- カートアニメ */
.dotBox {
  position: fixed;
  opacity: 0.0;
}
.box1 {
  width :30px;
  height: 30px;
  -webkit-animation: cartInAnim1 1.0s cubic-bezier(0.215, 0.61, 0.355, 1) 2;
}
.box2 {
  width :30px;
  height: 30px;
  -webkit-animation: cartInAnim2 1.0s linear 1;
}
.box3 {
  width :50px;
  height: 50px;
  -webkit-animation: cartInAnim3 1.0s linear 1;
}
.dot {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background-color: white;
  position: fixed;
}
.size1 {
  width: 3px;
  height: 3px;
}
.size2 {
  width: 5px;
  height: 5px;
}

@-webkit-keyframes cartInAnim1 {
    0% {-webkit-transform: rotate(-90deg); opacity: 0.0;}
  100% {-webkit-transform: rotate(90deg); opacity: 1.0;}
}
@-webkit-keyframes cartInAnim2 {
    0% {-webkit-transform: rotate(-90deg) scale(1.5,1.5); height: 50px; opacity: 0.3;}
  100% {-webkit-transform: rotate(90deg) scale(1,1); height: 20px; opacity: 1.0;}
}
@-webkit-keyframes cartInAnim3 {
    0% {-webkit-transform: rotate(200deg) scale(2,2); opacity: 0.0;}
   50% {opacity: 0.0; height: 100px;}
  100% {-webkit-transform: rotate(-80deg) scale(1,1);opacity: 1.0;}
}

.attention-back {
  -webkit-animation: attention-back 600ms ease-out infinite alternate;
}
@-webkit-keyframes attention-back {
  from {background-color: #e45e42;}
  to {background-color: white;}
}

.attention {
  -webkit-animation: anime1 600ms ease-out infinite alternate;
}
@-webkit-keyframes anime1 {
  from {color: #e45e42;}
  to {color: white;}
}
/* -------------------- LIKE anim */
.like-flash {
  position: absolute;
  display: block;
  z-index: 1000;
  top: 60px;
  width: 110%;
  height: 30%;
  text-align: center;
  font-size: 50px;
  background-color: rgba(234,124,101,0.8);
  color: white;
  -webkit-animation: likeFlashAnim 1.3s linear 1;
  -webkit-animation-fill-mode: forwards;
  animation: likeFlashAnim 1.3s linear 1;
  animation-fill-mode: forwards;
}
@-webkit-keyframes likeFlashAnim {
    0% {-webkit-transform: translate(200px,0px) rotate(30deg) rotateY(90deg); opacity: 1.0;}
   20% {-webkit-transform: translate(0px,0px) rotate(0deg) rotateY(0deg); opacity: 1.0; }
   40% {-webkit-filter:brightness(100%);}
   50% {-webkit-filter:brightness(250%);}
   60% {-webkit-filter:brightness(100%);}
   80% {-webkit-transform: translate(-20px,0px) rotate(0deg) rotateY(0deg); opacity: 1.0; }
  100% {-webkit-transform: translate(-200px,0px) rotate(-30deg) rotateY(-90deg); opacity: 0.0;}
}
@keyframes likeFlashAnim {
    0% {transform: translate(200px,0px) rotate(30deg) rotateY(90deg); opacity: 1.0;}
   20% {transform: translate(0px,0px) rotate(0deg) rotateY(0deg); opacity: 1.0; }
   40% {filter:brightness(100%);}
   50% {filter:brightness(250%);}
   60% {filter:brightness(100%);}
   80% {transform: translate(-20px,0px) rotate(0deg) rotateY(0deg); opacity: 1.0;}
  100% {transform: translate(-200px,0px) rotate(-30deg) rotateY(-90deg); opacity: 0.0;}
}
.add-like {
  -webkit-animation: likeAddAnim 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1 500ms;
  animation: likeAddAnim 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1 500ms;
}
@-webkit-keyframes likeAddAnim {
    0% {-webkit-transform: scale(1.0,1.0); opacity: 1.0;}
   50% {-webkit-transform: scale(3.0,3.0); opacity: 0.0;}
   51% {-webkit-transform: scale(0.0,0.0); opacity: 0.0;}
  100% {-webkit-transform: scale(1.0,1.0); opacity: 1.0;}
}
@keyframes likeAddAnim {
    0% {transform: scale(1.0,1.0); opacity: 1.0;}
   50% {transform: scale(3.0,3.0); opacity: 0.0;}
   51% {transform: scale(0.0,0.0); opacity: 0.0;}
  100% {transform: scale(1.0,1.0); opacity: 1.0;}
}
.remove-like {
  -webkit-animation: likeRemoveAnim 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1;
  animation: likeRemoveAnim 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1;
}
@-webkit-keyframes likeRemoveAnim {
    0% {-webkit-transform: translate(0px,0px) rotate(0deg) rotateY(0deg); opacity: 1.0;}
   50% {-webkit-transform: translate(0px,150px) rotate(190deg) rotateY(130deg); opacity: 0.0;}
   51% {-webkit-transform: translate(0px,0px) rotate(0deg) rotateY(0deg); opacity: 0.0;}
  100% {-webkit-transform: opacity: 1.0;}
}
@keyframes likeRemoveAnim {
    0% {transform: translate(0px,0px) rotate(0deg) rotateY(0deg); opacity: 1.0;}
   50% {transform: translate(0px,100px) rotate(90deg) rotateY(90deg); opacity: 0.0;}
   51% {transform: translate(0px,0px) rotate(0deg) rotateY(0deg); opacity: 0.0;}
  100% {transform: opacity: 1.0;}
}

/* 決済方法選択　カード説明 */
.card-info {
  font-size: 12px;
  margin-left: 50px;
  margin-top: 5px;
}

/* タイムセール表示 */
.timesale-label {
    font-size: 11px;
    vertical-align: middle;
    color: #fa6355;
    border: solid 1px #f94c3c;
    border-radius: 3px;
    padding: 1px 0.5em 0;
    margin-left: 0.5em;
    white-space: nowrap;
}

.modal-header,
.modal-footer {
  background-color: #22373C;
  color: #eee;
}


section.form>section.submit .btn.btn-cancel{background:#eee;color:gray}
section.form>section.submit .btn.btn-cancel:hover{background:gray;color:white;-webkit-transition:all 0.5s ease-out;-moz-transition:all 0.5s ease-out}


section.form>section>div:first-child {
  width: 20%;
}
section.form > section > div {
  display:table-cell;vertical-align:middle;position:relative;padding:10px;
}

/* ************************************** 管理画面検索セクション */
.form-control.search {
  display: inline-block;
  width: 110px;
}
section.form > section > div:nth-child(1) {
  width: 120px;
}
section.form.search {
  padding: 10px;
  margin-bottom: 10px;
}
section.form.search > section > div {
  padding: 3px 5px;
}
section.form > section > div.search-btn-area {
  text-align: right;
  vertical-align: bottom;
}

/* ************************************** 画像アップロード */

/* ドロップゾーン */
.image-file-upload-area{
  height: 232px;
  border-radius: 10px;
  border: dotted #ddd 3px;
  background-image: url(/cmn/img/image_drag.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fafafa;
}
/* ソートエリア */
.gridly {
  position: relative;
  width: 100%;
}
/* ドラッグ移動エリア */
.brick.small {
  height: 180px;
  width: 180px;
  box-shadow: 1px 1px 1px 1px rgba(23, 37, 40, 0.1);
  cursor: move;
  position: absolute; left: 0px; top: 0px;
}
/* 画像 */
.brick img {
  height: 180px;
  width: 180px;
  -webkit-animation: showImg 0.3s linear 1;
}
/* ドラッグ中 */
.brick.dragging {
  opacity: 0.8;
}
/* 削除ボタン */
.delete-btn {
  display: block;
  color: white;
  background: rgba(23, 37, 40, 0.3);
  width: 30px;
  height: 30px;
  top: 0;
  right: 0;
  position: absolute;
  text-align: center;
  line-height: 30px;
  font-size:16px;
}
.delete-btn:hover {
  color: #e45e42;
  background: rgba(0, 0, 0, 0.7);
}
/* 画像フェードイン */
@-webkit-keyframes showImg {
  from {opacity: 0.0;}
  to {opacity: 1.0;}
}
/* 画像ギャラリー */
.garally-img {
  width: 180px;
  margin: 2px;
  border: 3px solid white;
  cursor: pointer;
}
.garally-img:hover {
  border: 3px solid #ccc;
}
.garally-img.selected {
  border: 3px solid #e45e42;
}

.modal-dialog.garally {
  width: 800px;
}
.image-area.garally {
  overflow: auto;
  height: 380px;
}
section.form>section.garally {
  border: 0px;
}
section.form>section.garally-title {
  border: none;
}
section.form>section>div.deleteImages {
  display: none;
}
.dummy {
  display: none;
}















.form-control.update {
  animation: update 0.15s linear 0s 4 alternate;
}
@keyframes update {
  0%    {background-color: white;}
  100%  {background-color: #FFa;}
}

input[type="number"].form-control {
  display: inline;
  width: 100px;
  margin-left: 3px;
  margin-right: 3px;
  text-align: right;
}

input[type="number"].form-control.mini {
  display: inline;
  width: 70px;
  margin-left: 3px;
  margin-right: 3px;
  text-align: right;
}

.btn-small {
  height: 30px;
  line-height: 12px;
  font-size: 13px;
}

.btn-mini:active,
.btn-mini:focus,
.btn-mini {
  height: 22px;
  line-height: 12px;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 3px;
}

.btn-tiny:active,
.btn-tiny:focus,
.btn-tiny {
  height: 22px;
  line-height: 14px;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
}

.btn-form-size {
  height: 34px;
  line-height: 13px;
}


.section-form-table {
  width: 100%;
}
.section-form-table td {
  vertical-align: top;
}

.input-group-addon.add-on-btn {
  cursor: auto;
}

.input_styled.inlinelist {
  display: inline-block;
  margin-left: 10px;
}





.form-control.datepicker {
  width: 120px;
  text-align: center;
}
.form-control.datepicker-month {
  width: 100px;
  text-align: center;
}
.input-group.bootstrap-datepicker {
  display: inline-table;
  width: 120px;
}

.form-control.timepicker {
  width: 80px;
  text-align: center;
}
.input-group.bootstrap-timepicker {
  display: inline-table;
  width: 80px;
}
.toggle {
  display: inline-block;
  margin-left: 10px;
}
.switch-label {
  background-color: #bbb;
}


.input-label {

  display: inline-block;
  width: 100px;
  text-align: right;
}


/* プラン作成 */

.base-price-copy-btn {
  display: inline-table;
  width: 100px;
}
.input-group-addon.add-on-btn.right-copy-btn {
  cursor: pointer;
}


.table>thead>tr>th {
  border-bottom-width: 1px;
}
.placeholder>td {
  height: 47px;
}
.list-table>tbody>tr {
  background-color: white;
}
.handle>img {
  height: 20px;
  margin-top: 6px;
  cursor: pointer;
}
.handle-annotation-img{
  width: 24px;
  padding-bottom: 4px;
}
.room-img {
  width: 100px;
}

.room-img>img {
  height: 50px;
  cursor: pointer;
}

.switch.small {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 60px;
  height: 20px;
  /* background-color: white; */
  background: rgba(0,0,0,0.1);
  border-radius: 15px;
  box-shadow: inset 0 -1px #fff, inset 0 1px 1px rgba(0,0,0,0.05);
  cursor: pointer;
  margin-bottom: 0;
  color:red;
}

.switch-label.small {
  position: relative;
  display: block;
  height: inherit;
  font-size: 11px;
  color:red;
  font-weight: normal;
  text-transform: uppercase;
  background: #ea7c65;
  /* background: #bbb; */
  border-radius: inherit;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.12), inset 0 0 2px rgba(0,0,0,0.15);
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transition-property: opacity background;
  -moz-transition-property: opacity background;
  -o-transition-property: opacity background;
  transition-property: opacity background;
}
.switch-handle.small {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 15px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}
.switch-input.small:checked ~ .switch-handle {
  left: 41px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.switch-input.small:checked ~ .switch-label {
  /* background: #73b7ca; */
  /* background: #ccc; */
  background-color: transparent;
}

.switch-label.small:before {
  color: #fff;
}
.switch-label.small:after {
  color: #555;
}

.switch.large {
  width: 105px;
}

.switch-input.large:checked ~ .switch-handle {
  left: 80px;
}

.mail-text-insert {
  position: fixed;
  width: calc(100% - 200px);
  bottom: 0;
  z-index: 999999;
  background: #fff;
}
.mail-text-insert .label-block {
  display: flex;
  width: 750px;
  margin: 0 auto;
  padding: 10px;
  align-items: center;
}
.mail-text-insert .label-block p{
  margin: 0;
}
.mail-text-insert .label-block .arrow{
  margin-right: 20px;
  font-size: 18px;
}
.mail-text-insert .label-block p:last-of-type{
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #fff;
}
.mail-text-insert ul {
  text-align: center;
  width: 750px;
  padding: 20px 0 10px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.mail-text-insert li {
  width: 180px;
  font-size: 13px;
  margin-bottom: 10px;
  margin-right: 10px;
}
.mail-text-insert li:nth-of-type(4n) {
  margin-right: 0;
}
.mail-text-insert .btn {
  color: #555;
  background: #fff;
}
.mail-text-insert .btn span{
  font-size: 11px;
}
.mail-text-insert .label-bg {
  background-color: #257d96;
  color: #fff;
  cursor: pointer;
  transition: background-color .2s;
}
.mail-text-insert .label-bg:hover {
  background-color: #226b80;
}
.mail-text-insert .btn-group-bg {
  background-color: #73b7ca;
  overflow: hidden;
  height: 0;
  transition: height .3s;
}
.mail-text-insert .btn-group-bg.is-open {
  height: 126px;
  transition: height .3s;
}

.mail-text-insert .btn-group-bg.btn-group-large.is-open {
  height: 174px;
}

.input-select .add-on-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 34px;
  width: 45px;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.input-select select {
  padding-right: 57px;
}

/* 20190719_manaGement_eDit@56625
----------------------------------*/
/*----coMMon----*/
body{
  color:#333;
  background-color:#f1f2f3;
}
.font-exl{
  color:#2db0b9;
}
.table,
.list-table-scroll,
section.form,
.dashboard .row>div>div{
  border-radius:0 !important;
  box-shadow:none !important;
}
.room-block-top td{
  border-top:none !important;
}
a{
  color:#2db0b9;
}
a:hover, a:focus{
  color:#2db0b9;
}
/*----naVi----*/
header nav>a.active{
  color:#2db0b9;
  box-shadow:inset 0 5px 0 -1px #2db0b9;
}
/*----tiTle----*/
.block-news h3{
  background-color:#2db0b9;
  border-radius:0px;
}
.change-arrow{
  color:#2db0b9 !important;
}
/*----button----*/
.btn{
  background-color:#2db0b9;
}
.btn:hover{
  background-color:#73bfc6 !important;
}
.submit div button{
  background-color:#0c0;
}
section.form>section.submit .btn.btn-save{
  background-color:#2db0b9;
}
/*----moDal----*/
.modal-header, .modal-footer{
  background-color:#3b444b;
}
/*----formParts----*/
.custom-checkbox label.checked:after,
.custom-radio label.checked:after{
  background-color:#2db0b9;
}
.switch-input:checked ~ .switch-label{
  background-color:#2db0b9;
}
.input-group-addon.add-on-btn{
  background-color:#2db0b9;
}
.input-group-addon.add-on-btn:hover,
.input-group:hover .input-group-addon.add-on-btn{
  background-color:#245b74 !important;
  border-color:#245b74 !important;
}
.datepicker.dropdown-menu{
  background-color:#2db0b9;
}
.bootstrap-timepicker-widget.dropdown-menu{
  background-color:#2db0b9;
}
/*----pageNation----*/
.pagination{
  box-shadow:none;
}
.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus{
  border-color:#2db0b9;
  background-color:#2db0b9;
}
/*----leftNavi----*/
.vartical-nav{
  background-color: #4f565c;
  box-shadow: none;
}
.vartical-nav a{
  color:#fff;
}
.vartical-nav a.vartical-nav-brand{
  background-color:#2db0b9 !important;
}
.vartical-nav .vartical-nav-user{
  background-color: #3b444b;
}
.vartical-nav ul li.active a,
.vartical-nav ul li:hover a{
  background-color:#2db0b9;
  color:#fff;
}
#langSelector{
  background-color:#4f565c !important;
  color:#fff !important;
}
.vartical-nav .vartical-nav-bottom>a{
  background-color:#3b444b;
}
.vartical-nav ul li ul {
  border-left: 2px solid #e5e6e7;
  margin-left: 15px;
}
.vartical-nav ul li.active>a:before{
  content: none;
}
.vartical-nav ul li.active a.active:before{
  position: absolute;
  content: '\e86a';
  font-family: 'entypo';
  border: 8px solid transparent;
  top: 0;
  right: 10px;
}
.vartical-nav ul li.active ul li a:before {
  position: absolute;
  content: '\e86a';
  font-family: 'entypo';
  right: 18px;
}

/* 64989renEwal
----------------------------------*/
header{
  max-height:fit-content;
}
.c-belt{
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  width:100%;
  height:48px;
  position:fixed;
  top:0;
  background:#227b90;
  z-index:999;
}
.c-belt-list{
  list-style:none;
  margin:0;
  display:flex;
}
.c-belt-list li{
  padding:0 1em;
  font-size:12px;
  color:#fff;
  line-height:1;
  position:relative;
}
.c-belt-list li.last{
  padding-right:0;
}
.c-belt-list li span{
  margin-left:.5em;
}
.c-belt-list li a{
  margin-left:.5em;
  padding:3px .75em;
  font-size:10px;
  color:#302641;
  background:#fff;
  border-radius:5px;
}
.c-belt-list li::before{
  content:'';
  width:1px;
  height:100%;
  position:absolute;
  left:0;
  background:#fff;
}
.c-belt-list li.first::before{
  display:none;
}
.c-header{
  margin:0;
  padding:0 20px;
  display:flex;
  width:100%;
  height:50px;
  justify-content:flex-start;
  align-items:center;
  position:fixed;
  top:48px;
  background:#fff;
  border:solid #f1f2f3;
  border-width:0 0 1px;
  z-index:999;
}
.c-header h1{
  font-size:0;
}
.c-header-title{
  margin:0 20px 0 20px;
  font-size:14px;
  font-weight:700;
  color:#333;
}
.c-header-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  margin-left: auto;
}
.c-header-list li{
  margin-left:20px;
  position:relative;
}
.c-header-list li a{
  padding:.95em 1em;
  font-size:10px;
  font-weight:400;
  color:#333;
  background:#f5f6f8;
  border-radius:5px;
}
.c-header-list li a:hover{
  font-weight:700;
  text-decoration:none;
}
.c-header-list li a span{
  margin-right:.5em;
  font-size:10px;
  color:#fff;
  background:#333;
  border-radius:50%;
}
.c-header-list li #langSelector{
  padding:0;
  font-size:10px;
  color:#333 !important;
  text-align:center;
  width:8em;
  height:31px !important;
  position:relative;
  top:14px;
  background:#f5f6f8 !important;
  border:none;
  border-radius:5px;
  appearance:none;
  cursor:pointer;
}
.c-header-list li.langSelector::before{
  content:'';
  width:6px;
  height:6px;
  position:absolute;
  border:solid #333;
  border-width:0 0 1px 1px;
  left:10px;
  top:48%;
  transform:translateY(-50%) rotate(-45deg);
  z-index:1;
}
.c-header-list li #langSelector option{
  background:#f5f6f8 !important;
}
.c-header-list li #langSelector:hover{
  font-weight:700;
}
.c-header-list li #langSelector::-ms-expand{
  display:none;
}


#menu {
  padding-left: 20px;
  width: 288px !important;
  height: calc(100vh - 98px);
  position: fixed;
  top: 98px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #f1f2f3;

  /* Firefox用: デフォルト非表示 */
  scrollbar-width: none;
}
/* Chrome / Edge 用 */
#menu::-webkit-scrollbar {
  width: 8px;
}
#menu::-webkit-scrollbar-track {
  background: transparent;
}
#menu::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
}
#menu:hover {
  scrollbar-width: auto; /* Firefox: ホバー時にスクロールバー */
}
#menu:hover::-webkit-scrollbar-track {
  background: #f1f2f3;
}
#menu:hover::-webkit-scrollbar-thumb {
  background: #aaa;
}
#menu .side-navi{
  padding-top:40px !important;
  width:240px;
}
#menu .side-navi a{
  padding:0 5px;
  line-height:40px !important;
  height:40px !important;
}
#menu .side-navi>li{
  padding:0;
  border:none;
}
#menu .side-navi li a{
  margin-bottom:5px;
  font-size:13px;
  color:#333;
  text-shadow:none;
  background:none;
  border-radius:20px;
  padding:0 20px 0 20px;
}
#menu .side-navi li a:hover{
  background:#e5e6e7;
  font-weight: normal;
}
#menu .side-navi li a.active{
  font-weight: bold;
  background: #C7ECEE;
}
#menu .side-navi>li.active>a{
  color:#333;
  font-weight:700;
  background: #e5e6e7;
}
#menu .side-navi li a span.icon-l{
  position: absolute;
  top: 11px;
  right: 10px;
}
#menu .side-navi li ul li {
  line-height: 40px;
  padding-left: 5px;
}
#menu .side-navi li ul li a.entypo-right-open::before {
  position: absolute;
  top: 13px;
  right: 11px;
}

#layout{
  padding-top:98px !important;
  padding-left:288px !important;
}

header.c-page-title{
  margin:0;
  padding:40px 20px;
  font-size:22px;
  line-height:1;
  background:none;
  border:none;
}

.c-box-tit_link{
  width:50%;
  display:flex;
  justify-content:flex-end;
}
.c-box-tit_link ul{
  list-style:none;
  display:flex;
}
.c-box-tit_link ul li{
  margin:0 5px;
}
.c-box-tit_link ul li button{
  font-size:13px;
  color:#333;
  text-align:center;
  text-decoration:none;
  line-height:30px;
  display:block;
  width:6em;
  background:#e5e6e7;
  border:none;
  border-radius:5px;
  transition: all 0.4s ease;

}
.c-box-tit_link ul li .c-btn-none{
  color:#ccc;
  pointer-events:none;
}
.c-box-tit_link ul li button:hover{
  background:#ddd;
}

 .accordion-contents{
  position:relative;
  align-items: center;
  padding-block-start: 0px;

}
.accordion-contents>p{
  font-size:11px;
  position:absolute;
  top:-2em;
  right:0;
}
.accordion-contents>ol{
  list-style:none;
  border:1px solid rgba(102,102,102,.1);
  padding-inline-start: 0px;
}
.accordion-contents>ol li{
  padding:.6em 1em;
  background:#fafafa;
  height: 30px;

}
.accordion-contents>ol li:nth-child(2n){
  background:#fff;
}
.accordion-contents>ol li dl{
  display:flex;
  width:100%;
}
.accordion-contents>ol li dl dt{
  font-size:12px;
  width:40%;
  text-align:left;
}
.accordion-contents>ol li dl dd{
  font-size:12px;
  text-align:right;
  width:30%;
}
.accordion-contents>ol li dl dd span{
  font-size:10px;
}
.c-btn-eee:hover{
  background:#ddd;
}
.c-btn-eee{
  position:absolute;
  padding:.25em 2em;
  color:#333;
  background:#eee;
  font-size: 13px;
  height: 30px;
  width: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-30%);
  line-height:20px;
  border-radius:5px;
  transition: all 0.4s ease;
  cursor: pointer;

}
.js-accordion{
	position:relative;
	height: 40px;
}
.js-accordion .closed,
.js-accordion.open .open{
  display:block;
}
.js-accordion .open,
.js-accordion.open .closed{
  display:none;
}

/*--OPTIMA管理画面 UI調整対応
-------------------------------*/
.c-belt.demo{
  background:#333333;
}
.c-header.demo{
  background:#000;
  border:solid #000;
}
.c-header-title.demo{
  color:#fff;
}
